diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9584326..8ee22b0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -155,12 +155,8 @@ jobs: ### Available Reports - [๐ Dashboard](${previewUrl}) - Main benchmark overview - - [โก Solver Comparison](${previewUrl}solver_comparison.html) - Performance comparison - - [๐ Problem Analysis](${previewUrl}problem_analysis.html) - Problem insights - [๐ Results Matrix](${previewUrl}results_matrix.html) - Problems ร Solvers matrix - - [๐ Statistical Analysis](${previewUrl}statistical_analysis.html) - Advanced analytics - - [โก Performance Profiling](${previewUrl}performance_profiling.html) - Performance metrics - - [๐ฅ๏ธ Environment Info](${previewUrl}environment_info.html) - System specifications + - [๐ Raw Data](${previewUrl}raw_data.html) - Detailed benchmark data ### Notes - Preview uses the pre-built reports from your branch diff --git a/.gitignore b/.gitignore index f27dca6..5455fdc 100644 --- a/.gitignore +++ b/.gitignore @@ -198,8 +198,14 @@ database/*.backup database/*.db.backup database/*_backup +# Database files - results.db is large binary file, manage via JSON exports instead +database/results.db + # Note: Database files are now sanitized and safe for public sharing +# Generated report files (prevent accidental generation from test functions) +docs/pages/data/summary.json + # macOS .DS_Store .AppleDouble diff --git a/.gitmodules b/.gitmodules index 3eb3f7f..3eb51e3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,9 +4,9 @@ [submodule "problems/SDPLIB"] path = problems/SDPLIB url = https://github.com/vsdp/SDPLIB.git -[submodule "scripts/solvers/matlab_octave/sedumi"] - path = scripts/solvers/matlab_octave/sedumi +[submodule "scripts/solvers/matlab/sedumi"] + path = scripts/solvers/matlab/sedumi url = https://github.com/sqlp/sedumi -[submodule "scripts/solvers/matlab_octave/sdpt3"] - path = scripts/solvers/matlab_octave/sdpt3 +[submodule "scripts/solvers/matlab/sdpt3"] + path = scripts/solvers/matlab/sdpt3 url = https://github.com/sqlp/sdpt3 diff --git a/CLAUDE.md b/CLAUDE.md index ed59759..7a1176a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -19,27 +19,31 @@ This is an automated benchmark system for optimization solvers (LP, QP, SOCP, SD ## ๐ Essential Documentation Links +> **โ ๏ธ DISPATCH HUB NOTICE:** +> **CLAUDE.md serves as a navigation hub. All detailed design content is in dedicated documents below.** + ### **REQUIRED READING** (Read these documents carefully before any development): -1. **[๐ Basic Design](docs/development/basic_design.md)** - High-level concepts, project vision, and development roadmap -2. **[๐๏ธ Detailed Design](docs/development/detail_design.md)** - Complete technical architecture and implementation specifications @docs/development/detail_design.md -3. **[๐ Development Conventions](docs/development/conventions.md)** - Coding standards, git protocols, and engineering guidelines @docs/development/conventions.md +1. **[๐ Basic Design](docs/development/basic_design.md)** - Project vision, design philosophy, and system overview +2. **[๐๏ธ Detailed Design](docs/development/detail_design.md)** - Complete technical architecture, implementation specifications, and code examples +3. **[๐ Development Conventions](docs/development/conventions.md)** - Coding standards, git protocols, and engineering guidelines 4. **[โ Current Tasks](docs/development/tasks.md)** - Active development tasks for current phase -5. **[๐ Development History](docs/development/history.md)** - Complete record of completed development phases ### **Quick Reference**: - **[๐ Setup Guides](docs/guides/)** - Installation and configuration guides - **[๐ README.md](README.md)** - Project overview and quick start +> **๐ For system architecture, solver configurations, and implementation details, always refer to the dedicated design documents above rather than this file.** + --- ## ๐ฏ Current Development Status -**Phase**: Production Ready โ | All Sprints Completed Successfully -**Achievement**: Meaningful Public Reporting System Complete -**Status**: 139 problems (DIMACS + SDPLIB + Internal) with 5 major solvers +**Phase**: Research Tool Complete โ +**Achievement**: Comprehensive Benchmark System with External Libraries +**Status**: 139 problems (DIMACS + SDPLIB) with 11 solvers (9 Python + 2 MATLAB) -**Key Achievement**: Complete transformation from basic benchmark tool to production-ready public reporting platform with external problem libraries, comprehensive solver version tracking, and professional-grade HTML reports suitable for research publication. +**Key Achievement**: Comprehensive optimization solver benchmarking platform with external problem libraries, complete version tracking, and research-grade HTML reports with data export capabilities. --- @@ -47,7 +51,7 @@ This is an automated benchmark system for optimization solvers (LP, QP, SOCP, SD ### Core Architecture - **Platform**: GitHub Actions CI/CD with GitHub Pages deployment -- **Languages**: Python 3.12+, Octave (MATLAB-compatible) +- **Languages**: Python 3.12+, MATLAB R2024+ - **Storage**: SQLite database with structured schema - **Reporting**: Bootstrap 5 + Chart.js interactive dashboards @@ -56,34 +60,28 @@ This is an automated benchmark system for optimization solvers (LP, QP, SOCP, SD โโโ config/ # YAML configuration files โโโ scripts/ # Core system implementation โ โโโ benchmark/ # Benchmark execution engine -โ โโโ solvers/ # Solver implementations (Python) -โ โโโ external/ # External library loaders (DIMACS, SDPLIB) +โ โโโ solvers/ # Solver implementations +โ โ โโโ python/ # Python solver interfaces +โ โ โโโ matlab/ # MATLAB interfaces +โ โโโ data_loaders/ # Problem format loaders +โ โ โโโ python/ # Python loaders (MAT/DAT) +โ โ โโโ matlab/ # MATLAB loaders โ โโโ utils/ # Problem structure analysis, version detection โ โโโ database/ # Data models and storage โ โโโ reporting/ # HTML generation and data publishing โโโ problems/ # Benchmark problem files โ โโโ DIMACS/ # External DIMACS library (47 problems) โ โโโ SDPLIB/ # External SDPLIB library (92 problems) +โโโ database/ # SQLite database files +โ โโโ results.db # Benchmark results storage โโโ docs/ # Generated reports (GitHub Pages) โโโ requirements.txt # Python dependencies (single file) ``` -### Current System Capabilities -``` -Problem Type | Total Results | Success Rate | Solver Coverage -LP | 12 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -QP | 6 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -SOCP | 31 results | ~43% | CLARABEL + SCS + ECOS -SDP | 38 results | ~29% | CLARABEL + SCS -``` +### Current Capabilities +**System Status**: Research Tool Complete with **11 solvers** (9 Python + 2 MATLAB) across **139 problems** (DIMACS + SDPLIB) -### External Problem Libraries -``` -Library | Problems | Format | Source -DIMACS | 47 | SeDuMi .mat | Optimization challenges -SDPLIB | 92 | SDPA .dat-s | Semidefinite programming -Total | 139 | Mixed | Complete coverage -``` +**For detailed solver coverage and problem statistics, see [basic_design.md](docs/development/basic_design.md).** --- @@ -111,6 +109,9 @@ python main.py --report # Install dependencies pip install -r requirements.txt + +# Setup MATLAB solvers (optional) +matlab -batch "setup_matlab_solvers" ``` --- @@ -130,21 +131,20 @@ pip install -r requirements.txt - **Documentation-First**: Update docs for all features - **User Review**: Stop and wait for approval after each task +### MVP Development Principles +- **Minimal Viable Product**: Always implement the simplest solution that meets the requirement +- **No Extra Features**: Do not add functionality beyond what is explicitly requested +- **User Confirmation Required**: Before implementing any feature that seems necessary but wasn't explicitly requested, ask the user for confirmation +- **YAGNI Principle**: "You Aren't Gonna Need It" - implement only what is needed right now +- **Incremental Development**: Build the core functionality first, then iterate based on user feedback + --- ## ๐ฏ Design Philosophy -### Fair Baseline Benchmarking -- **Minimal Configuration**: Use solver defaults to avoid optimization bias -- **Transparent Comparison**: Prevent parameter tuning favoring specific solvers -- **Open Data**: Publish results as accessible JSON/CSV for research use -- **Reproducible Results**: Standardized environments ensure consistency +**For complete design principles and technical philosophy, see [basic_design.md](docs/development/basic_design.md).** -### Technical Principles -- **Modular Design**: Independent solver/problem additions -- **Configuration-Driven**: YAML-based management -- **Error Resilience**: Continue despite individual failures -- **Automated Operation**: GitHub Actions enables hands-off execution +Core principles: Fair baseline benchmarking with minimal configuration, reproducible results, and modular architecture for research applications. --- @@ -184,31 +184,23 @@ pip install -r requirements.txt ## ๐ ๏ธ Extension Points -### Adding New Solvers -1. Implement `SolverInterface` abstract base class -2. Add configuration to `config/solvers.yaml` -3. Add dependencies to appropriate requirements file -4. Test with validation framework +**For complete implementation guidance on adding new solvers and problems, see [detail_design.md](docs/development/detail_design.md).** -### Adding New Problems -1. **Problem Extension**: Extend existing DIMACS/SDPLIB collections or add new external libraries -2. **External Libraries**: Add git submodule or extend existing DIMACS/SDPLIB -3. Update `problems/problem_registry.yaml` with problem metadata -4. Implement loader in `scripts/external/` if new format required -5. Validate with `python main.py --validate` +Quick reference: Python solvers via `python_interface.py`, MATLAB solvers via `{solver}_runner.m`, new problems via `problem_registry.yaml`. --- ## ๐ For LLM Agents: Pre-Development Checklist +> **๐จ CRITICAL: CLAUDE.md is a dispatch hub only. All design content is in dedicated documents.** + **BEFORE starting any coding task, confirm you have:** -- [ ] Read [basic_design.md](docs/development/basic_design.md) for project vision and goals -- [ ] Read [detail_design.md](docs/development/detail_design.md) for technical architecture -- [ ] Read [conventions.md](docs/development/conventions.md) for coding standards and protocols +- [ ] Read [@docs/development/basic_design.md](docs/development/basic_design.md) for project vision, design philosophy, and system overview +- [ ] Read [@docs/development/detail_design.md](docs/development/detail_design.md) for complete technical architecture and implementation details +- [ ] Read [@docs/development/conventions.md](docs/development/conventions.md) for coding standards and protocols - [ ] Reviewed [tasks.md](docs/development/tasks.md) for current development context -- [ ] Understood the fair benchmarking philosophy and minimal configuration approach -- [ ] Familiarized yourself with the modular architecture and extension points +- [ ] Understood that all design decisions and technical details are documented in the linked design files, not in CLAUDE.md **๐จ CRITICAL CONSTRAINTS CHECKLIST (MUST VERIFY):** @@ -222,18 +214,6 @@ pip install -r requirements.txt --- -## ๐ค Integration Context - -This system prioritizes: -- **Fair, unbiased solver comparison** through minimal configuration and real-world problems -- **Meaningful public reporting** suitable for research publication and external evaluation -- **External library integration** with DIMACS and SDPLIB optimization problem sets -- **Comprehensive metadata tracking** including solver versions and Git commit recording -- **Professional-grade reporting** with problem structure analysis and library attribution -- **Open data publishing** with complete JSON/CSV exports for research community use -- **Production reliability** with comprehensive testing across 139 problems - ---- ## ๐ Development Memories @@ -242,4 +222,4 @@ This system prioritizes: *This dispatch document provides entry point context only. All implementation details, coding standards, and development protocols are documented in the linked files above.* -*Last Updated: June 2025 - Production Ready Implementation Complete* \ No newline at end of file +*Last Updated: July 2025* \ No newline at end of file diff --git a/README.md b/README.md index 44c9326..fd47e74 100644 --- a/README.md +++ b/README.md @@ -1,327 +1,147 @@ # Optimization Solver Benchmark System -A comprehensive open-source platform for benchmarking optimization solvers across multiple problem types (LP, QP, SOCP, SDP). Automated execution via GitHub Actions with interactive HTML reports published to GitHub Pages. +A research tool for benchmarking optimization solvers across LP, QP, SOCP, and SDP problems using external problem libraries (DIMACS, SDPLIB) with automated execution and HTML report generation. -**Project Vision**: Create the leading open-source platform for benchmarking optimization solvers across multiple problem types, providing researchers and practitioners with comprehensive performance insights through automated execution, transparent reporting, and fair baseline comparisons. +Benchmark results are continuously published at: https://napinoco.github.io/optimization-solver-benchmark/ -**Core Mission**: "Regularly benchmark publicly available solvers and publish the results as data" +> **โ ๏ธ Development Status**: This system is currently under active development. Some solvers and problem classes have not yet been properly measured, and comprehensive benchmarking coverage across all problem types is still being completed. -## External Problem Libraries +## Overview -This benchmark system uses the following external problem libraries: +**Purpose**: Compare optimization solver performance using standardized problem sets and minimal solver configuration for unbiased evaluation. -### DIMACS Library -- **Repository**: [https://github.com/vsdp/DIMACS.git](https://github.com/vsdp/DIMACS.git) -- **Current Commit**: `a1a14d1` - FILTER/filtinf1.mat.gz: Fix problem vector 'c'. -- **Problems**: 47 optimization challenge problems in SeDuMi .mat format +**Problem Libraries**: +- **DIMACS**: 47 problems in SeDuMi .mat format +- **SDPLIB**: 92+ problems in SDPA .dat-s format +- **Total**: 139+ optimization problems -### SDPLIB Library -- **Repository**: [https://github.com/vsdp/SDPLIB.git](https://github.com/vsdp/SDPLIB.git) -- **Current Commit**: `2e568e1` - README.md: Remove dead link. -- **Problems**: 92+ semidefinite programming problems in SDPA .dat-s format +**Supported Solvers**: +- **Python (9)**: SciPy, CVXPY backends (CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HIGHS) +- **MATLAB (2)**: SeDuMi, SDPT3 -Both libraries are included as fixed snapshots (committed on June 25, 2025) for reproducibility and automatically loaded by the benchmark system. This ensures consistent benchmarking results over time. - -## ๐ฏ Current Status: Production Ready - -- โ **Complete External Library Integration**: 139+ problems (DIMACS + SDPLIB) -- โ **Multi-Language Solver Support**: 11 solvers (9 Python + 2 MATLAB solvers) -- โ **Python Solvers**: SciPy, CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HiGHS via CVXPY -- โ **MATLAB/Octave Solvers**: SeDuMi, SDPT3 with unified interface architecture -- โ **Unified ProblemData Architecture**: SeDuMi-like format for all problem types -- โ **Professional Reporting**: Interactive HTML dashboards with problem structure analysis -- โ **GitHub Actions CI/CD**: Automated benchmarking and report publishing - -## ๐ Quick Start - -### Prerequisites -- Python 3.12+ -- Git and GitHub account -- Virtual environment recommended +## Quick Start ### Installation ```bash git clone --recursive https://github.com/napinoco/optimization-solver-benchmark.git cd optimization-solver-benchmark python -m venv venv -source venv/bin/activate # On Windows: venv\Scripts\activate +source venv/bin/activate # Windows: venv\Scripts\activate pip install -r requirements.txt -# For MATLAB/Octave solver support (optional) -# Install Octave (MATLAB-compatible environment) -# Ubuntu/Debian: sudo apt-get install octave -# macOS: brew install octave -# Windows: Download from https://octave.org/download +# For MATLAB solvers (optional) +# Install MATLAB R2020a or later + +# Setup MATLAB solvers - compiles MEX files for SeDuMi and SDPT3 +matlab -batch "setup_matlab_solvers" ``` -### Run Benchmarks +### Usage ```bash -# Validate environment and external libraries +# Validate environment python main.py --validate -# Complete benchmark with all libraries +# Run all benchmarks python main.py --all -# Benchmark specific libraries +# Specific libraries python main.py --benchmark --problem-set dimacs python main.py --benchmark --problem-set sdplib -# Generate reports only +# Generate reports only python main.py --report -# Dry-run mode for testing -python main.py --benchmark --problems nb --dry-run +# Test mode (no database changes) +python main.py --benchmark --dry-run -# Test MATLAB/Octave solvers specifically -python main.py --benchmark --problems nb --solvers matlab_sedumi,matlab_sdpt3 +# Timeout configuration +python main.py --all --timeout 300 # 5-minute timeout +python main.py --benchmark --timeout 60 # Quick tests with 1-minute limit +python main.py --benchmark --library_names SDPLIB --timeout 1800 # 30-minute timeout for difficult SDP problems ``` -## ๐ฏ Design Philosophy: Fair Baseline Benchmarking - -This system prioritizes **unbiased solver comparison** through minimal configuration: - -- **Solver Defaults**: Uses each solver's default parameters to avoid optimization bias -- **Baseline Performance**: Establishes genuine "out of the box" capabilities -- **Transparent Comparison**: Prevents inadvertent parameter tuning favoring specific solvers -- **Reproducible Results**: Standardized environments ensure consistent benchmarking -- **Open Data**: Results published as accessible JSON/CSV for research use - -## ๐ Current System Capabilities - -### Supported Solvers โ -#### Python Solvers (9 total) -- **SciPy**: Linear programming solver -- **CVXPY Multi-Backend**: - - CLARABEL (modern Rust-based solver) - - SCS (Splitting Conic Solver) - - ECOS (Embedded Conic Solver) - - OSQP (Operator Splitting QP) - - CVXOPT (Convex optimization) - - SDPA (Semidefinite programming) - - SCIP (Mixed-integer programming) - - HiGHS (Linear/mixed-integer programming) - -#### MATLAB/Octave Solvers (2 total) -- **SeDuMi**: Interior-point method for conic optimization -- **SDPT3**: Semidefinite-quadratic-linear programming solver - -### Problem Type Coverage โ -- **LP**: Linear Programming (12+ results, 100% success rate) -- **QP**: Quadratic Programming (6+ results, 100% success rate) -- **SOCP**: Second-Order Cone Programming (31+ results, ~43% success rate) -- **SDP**: Semidefinite Programming (38+ results, ~29% success rate) - -### Multi-Language Architecture โ -- **Unified Interface Design**: Symmetrical Python/MATLAB solver interfaces -- **Seamless Integration**: Python-MATLAB bridge via JSON data exchange -- **Fair Comparison**: Standardized metrics calculation across all solvers -- **Dynamic Solver Selection**: Runtime solver selection via configuration - -### Key Features โ -- **External Library Integration**: DIMACS (47 problems) + SDPLIB (92+ problems) -- **Unified Problem Format**: SeDuMi-like architecture for all problem types -- **Comprehensive Version Tracking**: Solver backend versions and Git commit recording -- **Interactive Reports**: Bootstrap 5 dashboards with Chart.js visualizations -- **Problem Structure Analysis**: Automatic variable/constraint counting and classification -- **GitHub Pages Deployment**: Automatic report publishing with data exports -- **Validation Framework**: Data quality checks and error detection -- **Dry-Run Mode**: Testing without database pollution - -## ๐ Project Structure +## Database Management -``` -optimization-solver-benchmark/ -โโโ ๐ Documentation -โ โโโ README.md # This file -โ โโโ CLAUDE.md # AI development context -โ โโโ docs/ -โ โโโ guides/ # Setup and usage guides -โ โโโ development/ # Development documentation -โ -โโโ โ๏ธ Configuration -โ โโโ config/ -โ โโโ site_config.yaml # Site and overview settings -โ โโโ solver_registry.yaml # Solver display names -โ โโโ problem_registry.yaml # Problem metadata -โ -โโโ ๐งช Core System -โ โโโ main.py # Main entry point -โ โโโ scripts/ -โ โโโ benchmark/ # Benchmark execution engine -โ โโโ solvers/ -โ โ โโโ python/ # Python solver implementations -โ โ โโโ matlab_octave/ # MATLAB/Octave solver integration -โ โโโ data_loaders/ # Problem loading (MAT/DAT) -โ โ โโโ problem_loader.py # Unified ProblemData class -โ โ โโโ python/ # Python format loaders -โ โ โโโ matlab_octave/ # MATLAB format loaders -โ โโโ external/ # External library loaders -โ โโโ utils/ # Problem structure analysis -โ โโโ database/ # SQLite data models -โ โโโ reporting/ # HTML report generation -โ -โโโ ๐ Problems & Results -โ โโโ problems/ -โ โ โโโ DIMACS/ # External DIMACS library (47 problems) -โ โ โโโ SDPLIB/ # External SDPLIB library (92+ problems) -โ โโโ database/ # SQLite results with version tracking -โ โโโ docs/ # Generated reports and data exports -โ -โโโ ๐ง Dependencies -โ โโโ requirements.txt -โ -โโโ ๐ CI/CD - โโโ .github/ - โโโ workflows/ # GitHub Actions and documentation -``` +### Database Restoration +The system maintains results in both SQLite database format and JSON/CSV exports. The database can be restored from JSON exports using the table restoration tool: -## ๐ Performance Results +```bash +# Restore database from default JSON export +python scripts/database/table_restorer.py -### Current Success Rates -``` -Problem Type | Total Results | Success Rate | Top Performers -LP | 12 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -QP | 6 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -SOCP | 31 results | ~43% | CLARABEL + SCS + ECOS + SeDuMi + SDPT3 -SDP | 38 results | ~29% | CLARABEL + SCS + SeDuMi + SDPT3 -``` +# Restore from specific JSON file +python scripts/database/table_restorer.py --input-json /path/to/data.json --output-db database/results.db -### External Library Performance -``` -Library | Problems | Format | Success Rate | Notes -DIMACS | 47 | SeDuMi .mat | Variable | Mixed problem types -SDPLIB | 92+ | SDPA .dat-s | ~30% | Challenging SDP problems -Total | 139+ | Mixed | ~37% | System average +# Run restoration tests +python scripts/database/table_restorer.py --test + +# Compare restored database with original +python scripts/database/table_restorer.py --compare-with database/original_results.db ``` -## ๐ง GitHub Actions Integration +**Why JSON-based Management?** +- **Repository Size**: Binary database files (results.db ~5MB) are excluded from git tracking to keep repository lightweight +- **Version Control**: JSON/CSV exports provide meaningful diffs and change tracking +- **Data Portability**: Published JSON data can recreate the complete database for analysis +- **Recovery**: Simple restoration process from published benchmark results -### Automatic Execution -- **Push to main**: Triggers comprehensive benchmarking -- **Pull requests**: Validation and testing -- **Manual triggers**: Custom solver/problem selection +## Design Philosophy -### Manual Trigger Options -Access via GitHub Actions tab โ "Run workflow": -- **Problem Set**: Choose from external, dimacs, or sdplib -- **Solvers**: Select specific solvers to benchmark -- **Library Names**: Filter by library (DIMACS, SDPLIB) -- **Dry Run**: Test without database updates +**Fair Baseline Benchmarking**: Uses solver default parameters to avoid optimization bias and provide genuine "out of the box" performance comparison. -## ๐ ๏ธ Configuration +**Reproducible Results**: Problem libraries are pinned to specific commit hashes via git submodules, and solver versions are fixed in requirements.txt to ensure identical benchmarking environments across all executions. -### Core Configuration Files -- **`config/site_config.yaml`**: Site metadata and overview content -- **`config/solver_registry.yaml`**: Solver display names for reports -- **`config/problem_registry.yaml`**: Problem metadata and classification +**Complete Version Tracking**: All benchmark results are stored in a SQLite database with complete version information (solver versions, Git commit hashes, environment details) to enable historical analysis and ensure full reproducibility of any reported result. -### Main Entry Point Options -```bash -# Validation -python main.py --validate # Verify environment and libraries +## Project Structure + +``` +โโโ main.py # Entry point +โโโ config/ # YAML configuration files +โโโ scripts/ +โ โโโ benchmark/ # Execution engine +โ โโโ solvers/ # Python/MATLAB solver interfaces +โ โโโ data_loaders/ # Problem format loaders (MAT/DAT) +โ โโโ database/ # SQLite storage +โ โโโ reporting/ # HTML generation +โโโ problems/ +โ โโโ DIMACS/ # External library (git submodule) +โ โโโ SDPLIB/ # External library (git submodule) +โโโ database/ # SQLite database files +โ โโโ results.db # Benchmark results storage +โโโ docs/ # Generated reports and documentation +``` -# Benchmarking -python main.py --all # Complete benchmark -python main.py --benchmark --problem-set external # External libraries only -python main.py --benchmark --library_names DIMACS # DIMACS problems only -python main.py --benchmark --problems nb,arch0 # Specific problems +## Architecture -# Reporting -python main.py --report # Generate HTML reports +**Modular Design**: +- **Loaders**: Convert problem files โ standardized ProblemData +- **Runners**: Execute solvers on ProblemData โ SolverResult +- **Interfaces**: Coordinate problem loading and solver execution -# Testing -python main.py --benchmark --dry-run # Test without database changes -``` +**Multi-Language Support**: Unified Python/MATLAB integration via JSON data exchange and standardized result format. -## ๐งช Development - -### Architecture Highlights -- **Unified ProblemData**: SeDuMi-like format with first-class cone structure support -- **Multi-Language Support**: Symmetrical Python/MATLAB solver interfaces with unified result format -- **Modular Component Design**: - - **Loaders**: Convert problem_name โ ProblemData (format-specific parsing) - - **Runners**: Convert ProblemData โ SolverResult (solver-specific execution) - - **Interfaces**: Orchestrate problem_name โ SolverResult (loader + runner coordination) -- **CVXPY Integration**: Unified solver interface supporting multiple backends -- **Version Tracking**: Complete solver backend and Git commit recording -- **Error Resilience**: Continues benchmarking despite individual solver failures - -### Adding New Solvers -#### Python Solvers -1. Extend the CVXPY runner with new backend -2. Add solver configuration to `config/solver_registry.yaml` -3. Test with validation framework -4. Update documentation - -#### MATLAB/Octave Solvers -1. Create solver-specific runner: `{solver}_runner.m` (ProblemData โ SolverResult) -2. Add solver configuration to MATLAB_SOLVER_CONFIGS in `matlab_interface.py` -3. Test with validation framework -4. Update documentation - -### Adding New Problems -1. **External Libraries**: Add as Git submodules in `problems/` -2. **Format Support**: Extend loaders in `scripts/data_loaders/python/` -3. **Validation**: Test with `python main.py --validate` - -## ๐ System Achievements - -### Technical Accomplishments โ -- **Unified Architecture**: Single ProblemData format for all optimization types -- **Multi-Language Integration**: 11 solvers (9 Python + 2 MATLAB) with symmetrical interfaces -- **External Library Integration**: Professional-grade problem sets (DIMACS + SDPLIB) -- **Production-Ready Reporting**: Interactive dashboards suitable for research publication -- **Fair Baseline Benchmarking**: Minimal configuration for unbiased comparison - -### Real-World Impact -- **Research-Ready Data**: Complete JSON/CSV exports for external analysis -- **Reproducible Results**: Version tracking and standardized environments -- **Open Science**: Public reporting with comprehensive problem attribution -- **Community Resource**: Accessible benchmarking platform for optimization research - -## ๐ Documentation - -### User Guides -- **[CLAUDE.md](CLAUDE.md)**: AI development context and project instructions -- **[docs/guides/](docs/guides/)**: Setup, usage, and integration guides - -### Development Documentation -- **[docs/development/basic_design.md](docs/development/basic_design.md)**: Project vision and architecture -- **[docs/development/detail_design.md](docs/development/detail_design.md)**: Technical implementation details -- **[docs/development/conventions.md](docs/development/conventions.md)**: Development standards and protocols -- **[docs/development/tasks.md](docs/development/tasks.md)**: Current development tasks -- **[docs/development/history.md](docs/development/history.md)**: Complete development history - -## ๐ Production Ready Status - -### System Completeness โ -- **139+ External Problems**: Real-world optimization challenges -- **11 Major Solvers**: Multi-language coverage (9 Python + 2 MATLAB) across optimization types -- **Professional Reporting**: Publication-ready HTML dashboards -- **CI/CD Integration**: Automated benchmarking and deployment -- **Fair Benchmarking Philosophy**: Unbiased solver comparison using defaults - -### Quality Assurance -- **Validation Framework**: Data quality checks and error detection -- **Version Tracking**: Complete reproducibility with Git commit recording -- **Testing Infrastructure**: Dry-run mode and comprehensive validation -- **Documentation**: Complete development history and usage guides - -## ๐ License - -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. - -## ๐ Acknowledgments +## Adding Components -- **External Problem Libraries**: VSDP team for DIMACS and SDPLIB repositories -- **Open-Source Solvers**: SciPy, CVXPY, CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HiGHS, SeDuMi, SDPT3 -- **Web Technologies**: Bootstrap 5, Chart.js for interactive visualizations -- **CI/CD Platform**: GitHub Actions for automated benchmarking and deployment +### New Solvers +**Python**: Add configuration to `PYTHON_SOLVER_CONFIGS` in `python_interface.py` +**MATLAB**: Create `{solver}_runner.m` and add to `MATLAB_SOLVER_CONFIGS` in `matlab_interface.py` ---- +### New Problems +Add external libraries as git submodules in `problems/` and extend loaders in `scripts/data_loaders/` -**Status**: Production Ready โ | Fair Baseline Benchmarking System Complete โ -**Last Updated**: June 2025 -**Achievement**: Comprehensive optimization solver benchmarking platform with unified architecture +## Documentation -For questions, issues, or contributions, please visit our [GitHub repository](https://github.com/napinoco/optimization-solver-benchmark) or check the documentation links above. \ No newline at end of file +- **[CLAUDE.md](CLAUDE.md)**: Development context and instructions +- **[docs/development/](docs/development/)**: Technical design and implementation details + +## License + +MIT License - see [LICENSE](LICENSE) file. + +## Acknowledgments + +- **External Problem Libraries**: VSDP team for DIMACS and SDPLIB repositories +- **MATLAB Solvers**: SQLP team for maintaining Git repositories of SeDuMi and SDPT3 solvers +- **Open-Source Solvers**: SciPy, CVXPY, CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HIGHS communities +- **Development Support**: Claude Code for coding assistance and development guidance diff --git a/config/problem_registry.yaml b/config/problem_registry.yaml index f1b85ed..4e4922b 100644 --- a/config/problem_registry.yaml +++ b/config/problem_registry.yaml @@ -46,21 +46,23 @@ problem_libraries: for_test_flag: false known_objective_value: 23.4434 - biomedP: - display_name: "Biomed P (DIMACS)" - file_path: "problems/DIMACS/data/BISECT/biomedP.dat.gz" - file_type: "dat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 33.6 + # biomedP: Commented out - unsupported .dat format (not .dat-s) + # biomedP: + # display_name: "Biomed P (DIMACS)" + # file_path: "problems/DIMACS/data/BISECT/biomedP.dat.gz" + # file_type: "dat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 33.6 - industry2: - display_name: "Industry2 (DIMACS)" - file_path: "problems/DIMACS/data/BISECT/industry2.dat.gz" - file_type: "dat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 65.6 + # industry2: Commented out - unsupported .dat format (not .dat-s) + # industry2: + # display_name: "Industry2 (DIMACS)" + # file_path: "problems/DIMACS/data/BISECT/industry2.dat.gz" + # file_type: "dat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 65.6 # COPOS Set copo14: @@ -79,13 +81,13 @@ problem_libraries: for_test_flag: false known_objective_value: 0 - copo68: - display_name: "Copo 68 (DIMACS)" - file_path: "problems/DIMACS/data/COPOS/copo68.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 0 + # copo68: + # display_name: "Copo 68 (DIMACS)" + # file_path: "problems/DIMACS/data/COPOS/copo68.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 0 # FAP Set fap09: @@ -103,12 +105,13 @@ problem_libraries: library_name: "DIMACS" for_test_flag: false - fap36: - display_name: "FAP 36 (DIMACS)" - file_path: "problems/DIMACS/data/FAP/fap36.dat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false + # fap36: Commented out - causes ERROR status in MATLAB solvers + # fap36: + # display_name: "FAP 36 (DIMACS)" + # file_path: "problems/DIMACS/data/FAP/fap36.dat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false # FILTER Set filter48: @@ -119,12 +122,13 @@ problem_libraries: for_test_flag: true known_objective_value: 1.41612901 - filtinf1: - display_name: "Filter Inf 1 (DIMACS)" - file_path: "problems/DIMACS/data/FILTER/filtinf1.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false + # filtinf1: Commented out - infeasible problem with inconsistent solver results + # filtinf1: + # display_name: "Filter Inf 1 (DIMACS)" + # file_path: "problems/DIMACS/data/FILTER/filtinf1.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false minphase: display_name: "Min Phase (DIMACS)" @@ -141,7 +145,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 224 + known_objective_value: -224 hamming_10_2: display_name: "Hamming 10-2 (DIMACS)" @@ -149,15 +153,16 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 102.4 + known_objective_value: -102.4 - hamming_11_2: - display_name: "Hamming 11-2 (DIMACS)" - file_path: "problems/DIMACS/data/HAMMING/hamming_11_2.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 170.666667 + # hamming_11_2: Commented out - too large for MATLAB solvers (4.2M vars, requires ~7TB memory) + # hamming_11_2: + # display_name: "Hamming 11-2 (DIMACS)" + # file_path: "problems/DIMACS/data/HAMMING/hamming_11_2.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 170.666667 hamming_7_5_6: display_name: "Hamming 7-5-6 (DIMACS)" @@ -165,7 +170,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 42.666667 + known_objective_value: -42.666667 hamming_8_3_4: display_name: "Hamming 8-3-4 (DIMACS)" @@ -173,15 +178,16 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 25.6 + known_objective_value: -25.6 - hamming_9_5_6: - display_name: "Hamming 9-5-6 (DIMACS)" - file_path: "problems/DIMACS/data/HAMMING/hamming_9_5_6.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 85.333333 + # hamming_9_5_6: Commented out - too large for MATLAB solvers (262K vars, requires ~31.5GB memory) + # hamming_9_5_6: + # display_name: "Hamming 9-5-6 (DIMACS)" + # file_path: "problems/DIMACS/data/HAMMING/hamming_9_5_6.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 85.333333 # HINF Set hinf12: @@ -224,28 +230,31 @@ problem_libraries: library_name: "DIMACS" for_test_flag: false - nql30old: - display_name: "NQL 30 Old (DIMACS)" - file_path: "problems/DIMACS/data/NQL/nql30old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 0.9460 + # nql30old: Commented out - superseded by newer version nql30 + # nql30old: + # display_name: "NQL 30 Old (DIMACS)" + # file_path: "problems/DIMACS/data/NQL/nql30old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 0.9460 - nql60old: - display_name: "NQL 60 Old (DIMACS)" - file_path: "problems/DIMACS/data/NQL/nql60old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 0.935 + # nql60old: Commented out - superseded by newer version nql60 + # nql60old: + # display_name: "NQL 60 Old (DIMACS)" + # file_path: "problems/DIMACS/data/NQL/nql60old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 0.935 - nql180old: - display_name: "NQL 180 Old (DIMACS)" - file_path: "problems/DIMACS/data/NQL/nql180old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false + # nql180old: Commented out - superseded by newer version nql180 + # nql180old: + # display_name: "NQL 180 Old (DIMACS)" + # file_path: "problems/DIMACS/data/NQL/nql180old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false # QSSP Set qssp30: @@ -271,29 +280,32 @@ problem_libraries: library_name: "DIMACS" for_test_flag: false - qssp30old: - display_name: "QSSP 30 Old (DIMACS)" - file_path: "problems/DIMACS/data/QSSP/qssp30old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 6.4966749 + # qssp30old: Commented out - superseded by newer version qssp30 + # qssp30old: + # display_name: "QSSP 30 Old (DIMACS)" + # file_path: "problems/DIMACS/data/QSSP/qssp30old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 6.4966749 - qssp60old: - display_name: "QSSP 60 Old (DIMACS)" - file_path: "problems/DIMACS/data/QSSP/qssp60old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 6.5627049 + # qssp60old: Commented out - superseded by newer version qssp60 + # qssp60old: + # display_name: "QSSP 60 Old (DIMACS)" + # file_path: "problems/DIMACS/data/QSSP/qssp60old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 6.5627049 - qssp180old: - display_name: "QSSP 180 Old (DIMACS)" - file_path: "problems/DIMACS/data/QSSP/qssp180old.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: false - known_objective_value: 6.54613 + # qssp180old: Commented out - superseded by newer version qssp180 + # qssp180old: + # display_name: "QSSP 180 Old (DIMACS)" + # file_path: "problems/DIMACS/data/QSSP/qssp180old.mat.gz" + # file_type: "mat" + # library_name: "DIMACS" + # for_test_flag: false + # known_objective_value: 6.54613 # SCHED Set sched_50_50_orig: @@ -367,7 +379,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 527.808663 + known_objective_value: -527.808663 toruspm3-15-50: display_name: "Torus PM3 15-50 (DIMACS)" @@ -375,7 +387,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 3474.4 + known_objective_value: -3474.4 torusg3-8: display_name: "Torus G3-8 (DIMACS)" @@ -383,7 +395,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 457.358179 + known_objective_value: -457.358179 torusg3-15: display_name: "Torus G3-15 (DIMACS)" @@ -391,7 +403,7 @@ problem_libraries: file_type: "mat" library_name: "DIMACS" for_test_flag: false - known_objective_value: 3134.6 + known_objective_value: -3134.6 # TRUSS Set truss5: @@ -778,33 +790,37 @@ problem_libraries: known_objective_value: -2.50000e+01 # INF Set - Infeasibility problems - infd1: - display_name: "Infeasible Dual 1 (SDPLIB)" - file_path: "problems/SDPLIB/data/infd1.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false - - infd2: - display_name: "Infeasible Dual 2 (SDPLIB)" - file_path: "problems/SDPLIB/data/infd2.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false - - infp1: - display_name: "Infeasible Primal 1 (SDPLIB)" - file_path: "problems/SDPLIB/data/infp1.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false - - infp2: - display_name: "Infeasible Primal 2 (SDPLIB)" - file_path: "problems/SDPLIB/data/infp2.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false + # infd1: Commented out - solver disagreement (Python: UNBOUNDED, MATLAB: INFEASIBLE) + # infd1: + # display_name: "Infeasible Dual 1 (SDPLIB)" + # file_path: "problems/SDPLIB/data/infd1.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false + + # infd2: Commented out - solver disagreement (Python: UNBOUNDED, MATLAB: INFEASIBLE) + # infd2: + # display_name: "Infeasible Dual 2 (SDPLIB)" + # file_path: "problems/SDPLIB/data/infd2.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false + + # infp1: Commented out - solver disagreement (Python: INFEASIBLE, MATLAB: UNBOUNDED) + # infp1: + # display_name: "Infeasible Primal 1 (SDPLIB)" + # file_path: "problems/SDPLIB/data/infp1.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false + + # infp2: Commented out - solver disagreement (Python: INFEASIBLE, MATLAB: UNBOUNDED) + # infp2: + # display_name: "Infeasible Primal 2 (SDPLIB)" + # file_path: "problems/SDPLIB/data/infp2.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false # MAX Set - Maximum cut problems maxG11: @@ -831,21 +847,23 @@ problem_libraries: for_test_flag: false known_objective_value: -4.00381e+03 - maxG55: - display_name: "Max Cut G55 (SDPLIB)" - file_path: "problems/SDPLIB/data/maxG55.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false - known_objective_value: -9.99921e+03 - - maxG60: - display_name: "Max Cut G60 (SDPLIB)" - file_path: "problems/SDPLIB/data/maxG60.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: false - known_objective_value: -1.52223e+04 + # maxG55: Commented out - too large for MATLAB solvers (25M vars, requires ~3.7TB memory) + # maxG55: + # display_name: "Max Cut G55 (SDPLIB)" + # file_path: "problems/SDPLIB/data/maxG55.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false + # known_objective_value: -9.99921e+03 + + # maxG60: Commented out - too large for MATLAB solvers (49M vars, requires ~10TB memory) + # maxG60: + # display_name: "Max Cut G60 (SDPLIB)" + # file_path: "problems/SDPLIB/data/maxG60.dat-s" + # file_type: "dat-s" + # library_name: "SDPLIB" + # for_test_flag: false + # known_objective_value: -1.52223e+04 # MCP Set - Maximum clique problems mcp100: diff --git a/config/site_config.yaml b/config/site_config.yaml index b177b7b..dbeefff 100644 --- a/config/site_config.yaml +++ b/config/site_config.yaml @@ -4,13 +4,9 @@ site: description: "Benchmarking optimization solvers with fair comparison" url: "https://napinoco.github.io/optimization-solver-benchmark" overview: | - Project Vision - Create the leading open-source platform for benchmarking optimization solvers across multiple problem types, providing researchers and practitioners with comprehensive performance insights through automated execution, transparent reporting, and fair baseline comparisons. + A reproducible benchmarking framework for optimization solvers across LP, QP, SOCP, and SDP problems using standardized libraries (DIMACS, SDPLIB). The system conducts systematic performance evaluation establishing "out of the box" performance baselines rather than optimized configurations, and publishes transparent results for research community use. - Core Mission - "Regularly benchmark publicly available solvers and publish the results as data" - - This system prioritizes unbiased solver comparison through minimal configuration, establishing "out of the box" performance baselines rather than optimized configurations. + The benchmarking code is available at https://github.com/napinoco/optimization-solver-benchmark results_matrix_note: | โ ๏ธ CLARABEL has SIGKILL issue due to excessive memory consumption on large SDP problems, e.g. bm1. diff --git a/current_design.md b/current_design.md deleted file mode 100644 index 0fa7ebf..0000000 --- a/current_design.md +++ /dev/null @@ -1,384 +0,0 @@ -# MATLAB Integration Current Design Documentation - -> **Document Purpose**: This document explains the current functionalities and data-process-flow of MATLAB-related code components in the optimization solver benchmark system. - ---- - -## Table of Contents - -1. [Architecture Overview](#architecture-overview) -2. [Core Components](#core-components) -3. [Data Flow Pipeline](#data-flow-pipeline) -4. [Integration Mechanisms](#integration-mechanisms) -5. [Problem Resolution System](#problem-resolution-system) -6. [Result Processing Chain](#result-processing-chain) -7. [Error Handling Strategy](#error-handling-strategy) -8. [Performance Considerations](#performance-considerations) - ---- - -## Architecture Overview - -The MATLAB integration provides a complete bridge between MATLAB optimization solvers (SeDuMi, SDPT3) and the Python-based benchmark system. The architecture follows a **pipeline design** with clear separation of concerns: - -``` -Python System โ matlab_solver.py โ MATLAB Scripts โ Solver Backends -``` - -### Key Design Principles - -- **SolverInterface Compliance**: Full adherence to the Python `SolverInterface` specification -- **Problem Registry Integration**: Seamless resolution of DIMACS/SDPLIB problems via YAML configuration -- **Fault Tolerance**: Comprehensive error handling with meaningful fallbacks at every layer -- **Data Standardization**: Consistent JSON interchange format between Python and MATLAB -- **Temporary File Management**: Safe handling of intermediate files with automatic cleanup - ---- - -## Core Components - -### 1. Python Layer: `matlab_solver.py` - -**Purpose**: Primary Python interface implementing `SolverInterface` for MATLAB solvers. - -**Key Classes**: -- `MatlabSolver`: Base class with full SolverInterface compliance -- `SeDuMiSolver`: Convenience wrapper for SeDuMi -- `SDPT3Solver`: Convenience wrapper for SDPT3 - -**Core Functionality**: -- **Environment Verification**: Validates MATLAB/Octave availability and startup performance -- **Version Detection**: Dynamic detection and caching of MATLAB and solver versions -- **Problem Validation**: Registry-based problem compatibility checking -- **Subprocess Management**: Safe MATLAB execution with timeout handling -- **Temporary File Management**: UUID-based temporary files with automatic cleanup - -### 2. MATLAB Orchestrator: `matlab_runner.m` - -**Purpose**: Consolidated MATLAB entry point containing all utility functions and coordinating problem loading, solver execution, and result saving. - -**Execution Flow**: -1. **Configuration Loading**: Uses integrated YAML reader for problem metadata -2. **Problem Loading**: Dispatches to appropriate loader based on file type -3. **Solver Execution**: Calls specific solver runner (SeDuMi/SDPT3) -4. **Metrics Calculation**: Uses integrated metrics calculator for objective values and feasibility measures -5. **Result Serialization**: Uses integrated JSON formatter and file saver - -**Integrated Architecture**: All utility functions are embedded as nested functions within the main orchestrator, eliminating external dependencies and simplifying deployment to a single 1,035-line file. - -### 3. Solver Implementations - -#### `sedumi_runner.m` -- **Configuration**: Minimal solver options for fair benchmarking (`fid=0` for silent mode) -- **Validation**: Comprehensive input validation and cone structure normalization -- **Error Handling**: Graceful failure with structured error result creation -- **Version Detection**: Multi-stage SeDuMi version identification - -#### `sdpt3_runner.m` -- **Configuration**: Default SDPT3 parameters with verbose output disabled -- **Preprocessing**: Input validation and problem structure verification -- **Result Mapping**: Translation of SDPT3 status codes to standard format -- **Performance Monitoring**: Solve time measurement and iteration counting - -### 4. Integrated Utility Functions - -All utility functions have been consolidated into `matlab_runner.m` as nested functions for simplified deployment and reduced dependencies: - -#### Core Utilities (Integrated) -- **`calculate_solver_metrics()`**: Objective computation and feasibility measures -- **`read_problem_registry()`**: YAML parsing for problem configuration -- **`format_result_to_json()`**: MATLAB-to-JSON conversion with type safety -- **`save_json_safely()`**: Robust file I/O with error recovery -- **`save_solutions_if_needed()`**: Optional solution vector persistence -- **`detect_versions()`**: Comprehensive environment and solver version detection - -#### Supporting Functions (Integrated) -- **`calculate_dual_cone_violation()`**: Cone-specific dual infeasibility calculation -- **`proj_onto_soc()`**: Second-order cone projection -- **`convert_to_json_compatible()`**: Data type conversion for JSON serialization -- **`get_field_safe()`**: Safe struct field access with defaults -- **`detect_sedumi_version()`** / **`detect_sdpt3_version()`**: Solver-specific version detection - -**Benefits of Consolidation**: -- **Single File Deployment**: All MATLAB functionality in one file -- **Reduced Path Dependencies**: No need to manage multiple script paths -- **Atomic Operations**: All functionality accessible without external dependencies -- **Simplified Maintenance**: Single file to update and version control - ---- - -## Data Flow Pipeline - -### Phase 1: Initialization and Validation - -``` -Python Request โ Problem Data Validation โ Registry Lookup โ Solver Compatibility Check -``` - -1. **Python Layer**: Validates `ProblemData` structure and required fields -2. **Registry Resolution**: Looks up problem in `problem_registry.yaml` to get file path and type -3. **Compatibility Check**: Verifies solver supports problem type (MAT/DAT-S files) -4. **Environment Check**: Confirms MATLAB availability and solver installation - -### Phase 2: MATLAB Execution - -``` -Temporary File Creation โ MATLAB Command Construction โ Subprocess Execution -``` - -1. **Temp File Management**: Creates UUID-based JSON result file -2. **Command Construction**: Builds safe MATLAB command with proper path handling: - ```matlab - addpath('matlab_script_dir'); matlab_runner('problem_name', 'solver_name', 'result_file') - ``` -3. **Subprocess Execution**: Runs MATLAB with timeout and captures stdout/stderr - -### Phase 3: Problem Resolution and Loading - -``` -Problem Registry โ File Path Resolution โ Format-Specific Loading -``` - -1. **Registry Parsing**: Integrated `read_problem_registry()` extracts problem metadata -2. **Path Resolution**: Converts relative paths to absolute paths -3. **Format Dispatch**: Routes to `mat_loader()` or `dat_loader()` based on file type -4. **Data Extraction**: Returns matrices `A`, `b`, `c` and cone structure `K` - -### Phase 4: Solver Execution - -``` -Input Validation โ Solver Configuration โ Problem Solving โ Status Mapping -``` - -1. **Input Validation**: Checks matrix dimensions and cone structure consistency -2. **Solver Setup**: Applies minimal configuration for fair benchmarking -3. **Solve Process**: Executes optimization with timing measurement -4. **Result Processing**: Maps solver-specific status codes to standard format - -### Phase 5: Metrics Calculation - -``` -Solution Vectors โ Objective Calculation โ Feasibility Assessment โ Gap Computation -``` - -1. **Objective Values** (via integrated `calculate_solver_metrics()`): - - Primal: `c' * x` - - Dual: `b' * y` -2. **Infeasibility Measures**: - - Primal: `||A*x - b|| / (1 + ||b||)` - - Dual: `sqrt(cone_violation(c - A'*y)) / (1 + ||c||^2)` -3. **Duality Gap**: `|primal_objective - dual_objective|` - -### Phase 6: Result Serialization and Return - -``` -MATLAB Result โ JSON Conversion โ File Writing โ Python Reading โ SolverResult Creation -``` - -1. **JSON Formatting**: Integrated `format_result_to_json()` converts MATLAB struct to JSON string -2. **File Writing**: Integrated `save_json_safely()` writes JSON with error recovery -3. **Python Reading**: `json.load()` parses result file -4. **Result Conversion**: Maps to `SolverResult` object with metadata enhancement - ---- - -## Integration Mechanisms - -### Problem Registry Integration - -The system uses a centralized YAML configuration to map problem names to file locations: - -```yaml -problem_libraries: - nb: - display_name: "Network Design" - file_path: "problems/DIMACS/data/ANTENNA/nb.mat.gz" - file_type: "mat" - library_name: "DIMACS" - - arch0: - display_name: "Architecture 0" - file_path: "problems/SDPLIB/data/arch0.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" -``` - -**Resolution Process**: -1. Python `ProblemData.name` โ Registry lookup -2. Extract `file_path` and `file_type` -3. Pass to MATLAB for format-specific loading -4. Load problem data using appropriate loader - -### Temporary File Management - -**UUID-Based Naming**: Each solver execution creates unique temporary files: -``` -/tmp/matlab_sedumi_result_.json -``` - -**Automatic Cleanup**: Context managers ensure cleanup even on exceptions: -```python -with temp_file_context(".json") as result_file: - # Execute MATLAB solver - # File automatically cleaned up -``` - -**Orphan Detection**: Periodic cleanup of abandoned temporary files older than 1 hour. - -### Version Detection and Caching - -**Multi-Stage Detection**: -1. **Function Existence**: Check if solver functions are available -2. **Version Functions**: Call solver-specific version functions -3. **File Parsing**: Parse version from installation files -4. **Functionality Test**: Verify solver works with minimal problem - -**Caching Strategy**: Version information cached during initialization to avoid repeated detection overhead. - ---- - -## Result Processing Chain - -### MATLAB Result Structure - -```matlab -result = struct(); -result.solver_name = 'SeDuMi'; -result.solver_version = 'SeDuMi-1.3.7'; -result.status = 'optimal'; -result.solve_time = 0.245; -result.primal_objective = -4.567; -result.dual_objective = -4.567; -result.gap = 1.234e-10; -result.primal_infeasibility = 2.345e-12; -result.dual_infeasibility = 3.456e-11; -result.iterations = 15; -``` - -### JSON Conversion Process - -**Type Safety**: Integrated `format_result_to_json()` handles MATLAB-specific types: -- `NaN` โ `null` (empty array in JSON) -- `ยฑInf` โ `ยฑ1e308` -- Empty arrays โ `null` -- Ensure numeric precision preservation - -### Python SolverResult Mapping - -```python -SolverResult( - solve_time=matlab_result['solve_time'], - status=matlab_result['status'].upper(), - primal_objective_value=safe_float(matlab_result['primal_objective_value']), - dual_objective_value=safe_float(matlab_result['dual_objective_value']), - duality_gap=safe_float(matlab_result['duality_gap']), - primal_infeasibility=safe_float(matlab_result['primal_infeasibility']), - dual_infeasibility=safe_float(matlab_result['dual_infeasibility']), - iterations=safe_int(matlab_result['iterations']), - solver_name='matlab_sedumi', - solver_version='SeDuMi-1.3.7 (MATLAB R2023b)', - additional_info={ - 'matlab_output': matlab_result, - 'solver_backend': 'sedumi', - 'execution_environment': 'matlab' - } -) -``` - ---- - -## Error Handling Strategy - -### Multi-Layer Error Recovery - -#### 1. Python Layer -- **Subprocess Failures**: Capture stderr/stdout for diagnostic information -- **Timeout Handling**: Return structured timeout result -- **File I/O Errors**: Handle missing/corrupt result files -- **JSON Parsing**: Graceful handling of malformed JSON - -#### 2. MATLAB Layer -- **Solver Errors**: Create error result structure with diagnostic info -- **Problem Loading**: Handle missing files or format errors -- **Metrics Calculation**: Safe handling of NaN/Inf in calculations -- **File Writing**: Atomic operations with rollback on failure - -### Error Result Structure - -```python -SolverResult.create_error_result( - error_message="MATLAB execution failed: solver not found", - solve_time=actual_time_spent, - solver_name=self.solver_name, - solver_version=self.get_version() -) -``` - -### Diagnostic Information - -All error results include: -- **Error Classification**: Timeout, solver error, I/O error, etc. -- **Execution Context**: MATLAB version, solver availability, file paths -- **Timing Information**: Time spent before failure -- **Raw Output**: MATLAB stdout/stderr for debugging - ---- - -## Performance Considerations - -### Startup Optimization - -**MATLAB Initialization**: Cold MATLAB startup can take 5-15 seconds -- **Timeout Adjustment**: Add 15s buffer to solve timeout for startup -- **Startup Warning**: Alert when MATLAB startup > 10s -- **Pre-warming**: Consider pre-warmed MATLAB sessions for production - -### Memory Management - -**Temporary Files**: -- UUID-based naming prevents conflicts -- Automatic cleanup prevents disk space issues -- Orphan detection handles interrupted executions - -**MATLAB Memory**: -- Release large matrices after use -- Clear temporary variables in MATLAB workspace -- Monitor memory usage in long-running sessions - -### Execution Efficiency - -**Path Management**: -- Add MATLAB script paths once per session -- Use absolute paths to avoid working directory issues -- Cache problem registry to avoid repeated YAML parsing - -**Subprocess Optimization**: -- Single MATLAB command per solve (no multiple calls) -- Batch multiple problems when possible -- Minimize data serialization overhead - ---- - -## Integration Points Summary - -### With Python Benchmark System - -1. **SolverInterface Compliance**: Drop-in replacement for other solvers -2. **Problem Registry**: Seamless DIMACS/SDPLIB problem resolution -3. **Database Integration**: Standard SolverResult format for storage -4. **Report Generation**: Consistent metadata for reporting pipeline - -### With External Libraries - -1. **DIMACS Problems**: Native MAT file support via `mat_loader.m` -2. **SDPLIB Problems**: DAT-S file support via `dat_loader.m` -3. **Problem Metadata**: Registry-driven problem classification and metadata - -### With MATLAB Ecosystem - -1. **Solver Detection**: Dynamic discovery of installed solvers -2. **Version Tracking**: Comprehensive version metadata collection -3. **Error Propagation**: Meaningful error messages from MATLAB to Python -4. **Solution Storage**: Optional MAT file output for detailed analysis - -This design provides a robust, production-ready integration that maintains the fair benchmarking philosophy while delivering comprehensive MATLAB solver support within the existing Python architecture. \ No newline at end of file diff --git a/current_design_ja.md b/current_design_ja.md deleted file mode 100644 index 4540d8e..0000000 --- a/current_design_ja.md +++ /dev/null @@ -1,384 +0,0 @@ -# MATLAB็ตฑๅ ็พ่ก่จญ่จๆธ - -> **ๆๆธใฎ็ฎ็**: ใใฎๆๆธใฏใๆ้ฉๅใฝใซใใผใใณใใใผใฏใทในใใ ใซใใใMATLAB้ข้ฃใณใผใใณใณใใผใใณใใฎ็พๅจใฎๆฉ่ฝใจใใผใฟๅฆ็ใใญใผใ่ชฌๆใใพใใ - ---- - -## ็ฎๆฌก - -1. [ใขใผใญใใฏใใฃๆฆ่ฆ](#ใขใผใญใใฏใใฃๆฆ่ฆ) -2. [ใณใขใณใณใใผใใณใ](#ใณใขใณใณใใผใใณใ) -3. [ใใผใฟใใญใผใใคใใฉใคใณ](#ใใผใฟใใญใผใใคใใฉใคใณ) -4. [็ตฑๅใกใซใใบใ ](#็ตฑๅใกใซใใบใ ) -5. [ๅ้ก่งฃๆฑบใทในใใ ](#ๅ้ก่งฃๆฑบใทในใใ ) -6. [็ตๆๅฆ็ใใงใผใณ](#็ตๆๅฆ็ใใงใผใณ) -7. [ใจใฉใผใใณใใชใณใฐๆฆ็ฅ](#ใจใฉใผใใณใใชใณใฐๆฆ็ฅ) -8. [ใใใฉใผใใณใน่ๆ ฎไบ้ ](#ใใใฉใผใใณใน่ๆ ฎไบ้ ) - ---- - -## ใขใผใญใใฏใใฃๆฆ่ฆ - -MATLAB็ตฑๅใฏใMATLABใฎๆ้ฉๅใฝใซใใผ๏ผSeDuMiใSDPT3๏ผใจPythonใใผในใฎใใณใใใผใฏใทในใใ ้ใฎๅฎๅ จใชใใชใใธใๆไพใใพใใใขใผใญใใฏใใฃใฏๆ็ขบใช้ขๅฟใฎๅ้ขใๆใค**ใใคใใฉใคใณ่จญ่จ**ใซๅพใฃใฆใใพใ๏ผ - -``` -Pythonใทในใใ โ matlab_solver.py โ MATLABในใฏใชใใ โ ใฝใซใใผใใใฏใจใณใ -``` - -### ไธป่ฆ่จญ่จๅๅ - -- **SolverInterfaceๆบๆ **: Python `SolverInterface`ไปๆงใธใฎๅฎๅ จใชๆบๆ -- **ๅ้กใฌใธในใใช็ตฑๅ**: YAML่จญๅฎใซใใDIMACS/SDPLIBๅ้กใฎใทใผใ ใฌในใช่งฃๆฑบ -- **ใใฉใซใใใฌใฉใณใน**: ใในใฆใฎใฌใคใคใผใงๆๅณใฎใใใใฉใผใซใใใฏใๆใคๅ ๆฌ็ใชใจใฉใผใใณใใชใณใฐ -- **ใใผใฟๆจๆบๅ**: PythonใจMATLAB้ใฎไธ่ฒซใใJSONไบคๆใใฉใผใใใ -- **ไธๆใใกใคใซ็ฎก็**: ่ชๅใฏใชใผใณใขใใใซใใไธญ้ใใกใคใซใฎๅฎๅ จใชๅฆ็ - ---- - -## ใณใขใณใณใใผใใณใ - -### 1. Pythonใฌใคใคใผ: `matlab_solver.py` - -**็ฎ็**: MATLABใฝใซใใผ็จใฎ`SolverInterface`ใๅฎ่ฃ ใใไธป่ฆใชPythonใคใณใฟใผใใงใผในใ - -**ไธป่ฆใฏใฉใน**: -- `MatlabSolver`: ๅฎๅ จใชSolverInterfaceๆบๆ ใๆใคใใผในใฏใฉใน -- `SeDuMiSolver`: SeDuMi็จใฎไพฟๅฉใฉใใใผ -- `SDPT3Solver`: SDPT3็จใฎไพฟๅฉใฉใใใผ - -**ใณใขๆฉ่ฝ**: -- **็ฐๅขๆค่จผ**: MATLAB/Octaveใฎๅฏ็จๆงใจ่ตทๅใใใฉใผใใณในใๆค่จผ -- **ใใผใธใงใณๆคๅบ**: MATLABใจใฝใซใใผใใผใธใงใณใฎๅ็ๆคๅบใจใญใฃใใทใฅ -- **ๅ้กๆค่จผ**: ใฌใธในใใชใใผในใฎๅ้กไบๆๆงใใงใใฏ -- **ใตใใใญใปใน็ฎก็**: ใฟใคใ ใขใฆใๅฆ็ใๆใคๅฎๅ จใชMATLABๅฎ่ก -- **ไธๆใใกใคใซ็ฎก็**: ่ชๅใฏใชใผใณใขใใไปใใฎUUIDใใผในไธๆใใกใคใซ - -### 2. MATLABใชใผใฑในใใฌใผใฟใผ: `matlab_runner.m` - -**็ฎ็**: ใในใฆใฎใฆใผใใฃใชใใฃ้ขๆฐใๅซใ็ตฑๅMATLABใจใณใใชใผใใคใณใใงใๅ้ก่ชญใฟ่พผใฟใใฝใซใใผๅฎ่กใ็ตๆไฟๅญใ่ชฟๆดใ - -**ๅฎ่กใใญใผ**: -1. **่จญๅฎ่ชญใฟ่พผใฟ**: ็ตฑๅใใใYAMLใชใผใใผใไฝฟ็จใใฆๅ้กใกใฟใใผใฟใๅๅพ -2. **ๅ้ก่ชญใฟ่พผใฟ**: ใใกใคใซใฟใคใใซๅบใฅใใฆ้ฉๅใชใญใผใใผใซใใฃในใใใ -3. **ใฝใซใใผๅฎ่ก**: ็นๅฎใฎใฝใซใใผใฉใณใใผ๏ผSeDuMi/SDPT3๏ผใๅผใณๅบใ -4. **ใกใใชใฏใน่จ็ฎ**: ็ตฑๅใใใใกใใชใฏใน่จ็ฎๆฉใไฝฟ็จใใฆ็ฎ็ๅคใจๅฎ่กๅฏ่ฝๆงๆธฌๅฎๅคใ่จ็ฎ -5. **็ตๆใทใชใขใฉใคใผใผใทใงใณ**: ็ตฑๅใใใJSONใใฉใผใใใฟใผใจใใกใคใซไฟๅญๆฉ่ฝใไฝฟ็จ - -**็ตฑๅใขใผใญใใฏใใฃ**: ใในใฆใฎใฆใผใใฃใชใใฃ้ขๆฐใใกใคใณใชใผใฑในใใฌใผใฟใผๅ ใซใในใใใใ้ขๆฐใจใใฆๅใ่พผใพใใๅค้จไพๅญ้ขไฟใๆ้คใใ1,035่กใฎๅไธใใกใคใซใธใฎใใใญใคใกใณใใ็ฐก็ด ๅใ - -### 3. ใฝใซใใผๅฎ่ฃ - -#### `sedumi_runner.m` -- **่จญๅฎ**: ๅ ฌๆญฃใชใใณใใใผใฏใฎใใใฎๆๅฐ้ใฎใฝใซใใผใชใใทใงใณ๏ผใตใคใฌใณใใขใผใ็จ`fid=0`๏ผ -- **ๆค่จผ**: ๅ ๆฌ็ใชๅ ฅๅๆค่จผใจ้ๆง้ ๆญฃ่ฆๅ -- **ใจใฉใผใใณใใชใณใฐ**: ๆง้ ๅใใใใจใฉใผ็ตๆไฝๆใซใใๅช้ ใชๅคฑๆ -- **ใใผใธใงใณๆคๅบ**: ๅคๆฎต้SeDuMiใใผใธใงใณ่ญๅฅ - -#### `sdpt3_runner.m` -- **่จญๅฎ**: ่ฉณ็ดฐๅบๅ็กๅนๅใซใใใใใฉใซใSDPT3ใใฉใกใผใฟ -- **ๅๅฆ็**: ๅ ฅๅๆค่จผใจๅ้กๆง้ ๆค่จผ -- **็ตๆใใใใณใฐ**: SDPT3ในใใผใฟในใณใผใใฎๆจๆบๅฝขๅผใธใฎๅคๆ -- **ใใใฉใผใใณใน็ฃ่ฆ**: ่งฃๆ้ๆธฌๅฎใจๅๅพฉๅๆฐใซใฆใณใ - -### 4. ็ตฑๅใฆใผใใฃใชใใฃ้ขๆฐ - -ใในใฆใฎใฆใผใใฃใชใใฃ้ขๆฐใฏใใใใญใคใกใณใใฎ็ฐก็ด ๅใจไพๅญ้ขไฟใฎๅๆธใฎใใใ`matlab_runner.m`ๅ ใซใในใใใใ้ขๆฐใจใใฆ็ตฑๅใใใพใใ๏ผ - -#### ใณใขใฆใผใใฃใชใใฃ๏ผ็ตฑๅๆธใฟ๏ผ -- **`calculate_solver_metrics()`**: ็ฎ็่จ็ฎใจๅฎ่กๅฏ่ฝๆงๆธฌๅฎ -- **`read_problem_registry()`**: ๅ้ก่จญๅฎ็จใฎYAML่งฃๆ -- **`format_result_to_json()`**: ๅๅฎๅ จๆงใๆใคMATLAB-JSONๅคๆ -- **`save_json_safely()`**: ใจใฉใผๅๅพฉใๆใคๅ ็ขใชใใกใคใซI/O -- **`save_solutions_if_needed()`**: ใชใใทใงใณใฎ่งฃใใฏใใซๆฐธ็ถๅ -- **`detect_versions()`**: ๅ ๆฌ็ใช็ฐๅขใจใฝใซใใผใใผใธใงใณๆคๅบ - -#### ใตใใผใ้ขๆฐ๏ผ็ตฑๅๆธใฟ๏ผ -- **`calculate_dual_cone_violation()`**: ้ๅบๆใฎๅๅฏพ้ๅฎ่กๅฏ่ฝๆง่จ็ฎ -- **`proj_onto_soc()`**: ไบๆฌก้ๅฐๅฝฑ -- **`convert_to_json_compatible()`**: JSONใทใชใขใฉใคใผใผใทใงใณ็จใใผใฟๅๅคๆ -- **`get_field_safe()`**: ใใใฉใซใไปใๅฎๅ จใชๆง้ ไฝใใฃใผใซใใขใฏใปใน -- **`detect_sedumi_version()`** / **`detect_sdpt3_version()`**: ใฝใซใใผๅบๆใใผใธใงใณๆคๅบ - -**็ตฑๅใฎๅฉ็น**: -- **ๅไธใใกใคใซใใใญใคใกใณใ**: ใในใฆใฎMATLABๆฉ่ฝใไธใคใฎใใกใคใซใซ -- **ใในไพๅญ้ขไฟใฎๅๆธ**: ่คๆฐใฎในใฏใชใใใใน็ฎก็ใไธ่ฆ -- **ใขใใใใฏๆไฝ**: ๅค้จไพๅญ้ขไฟใชใใงใขใฏใปในๅฏ่ฝใชใในใฆใฎๆฉ่ฝ -- **็ฐก็ด ๅใใใใกใณใใใณใน**: ๆดๆฐใจใใผใธใงใณ็ฎก็ใๅไธใใกใคใซใงๅฎ็ต - ---- - -## ใใผใฟใใญใผใใคใใฉใคใณ - -### ใใงใผใบ1: ๅๆๅใจๆค่จผ - -``` -Pythonใชใฏใจในใ โ ๅ้กใใผใฟๆค่จผ โ ใฌใธในใใชๆค็ดข โ ใฝใซใใผไบๆๆงใใงใใฏ -``` - -1. **Pythonใฌใคใคใผ**: `ProblemData`ๆง้ ใจๅฟ ่ฆใใฃใผใซใใๆค่จผ -2. **ใฌใธในใใช่งฃๆฑบ**: `problem_registry.yaml`ใงๅ้กใๆค็ดขใใฆใใกใคใซใในใจใฟใคใใๅๅพ -3. **ไบๆๆงใใงใใฏ**: ใฝใซใใผใๅ้กใฟใคใ๏ผMAT/DAT-Sใใกใคใซ๏ผใใตใใผใใใใใจใๆค่จผ -4. **็ฐๅขใใงใใฏ**: MATLABใฎๅฏ็จๆงใจใฝใซใใผใคใณในใใผใซใ็ขบ่ช - -### ใใงใผใบ2: MATLABๅฎ่ก - -``` -ไธๆใใกใคใซไฝๆ โ MATLABใณใใณใๆง็ฏ โ ใตใใใญใปในๅฎ่ก -``` - -1. **ไธๆใใกใคใซ็ฎก็**: UUIDใใผในใฎJSON็ตๆใใกใคใซใไฝๆ -2. **ใณใใณใๆง็ฏ**: ้ฉๅใชใในๅฆ็ใงๅฎๅ จใชMATLABใณใใณใใๆง็ฏ: - ```matlab - addpath('matlab_script_dir'); matlab_runner('problem_name', 'solver_name', 'result_file') - ``` -3. **ใตใใใญใปในๅฎ่ก**: ใฟใคใ ใขใฆใไปใใงMATLABใๅฎ่กใใstdout/stderrใใญใฃใใใฃ - -### ใใงใผใบ3: ๅ้ก่งฃๆฑบใจ่ชญใฟ่พผใฟ - -``` -ๅ้กใฌใธในใใช โ ใใกใคใซใใน่งฃๆฑบ โ ๅฝขๅผๅบๆ่ชญใฟ่พผใฟ -``` - -1. **ใฌใธในใใช่งฃๆ**: ็ตฑๅใใใ`read_problem_registry()`ใๅ้กใกใฟใใผใฟใๆฝๅบ -2. **ใใน่งฃๆฑบ**: ็ธๅฏพใในใ็ตถๅฏพใในใซๅคๆ -3. **ๅฝขๅผใใฃในใใใ**: ใใกใคใซใฟใคใใซๅบใฅใใฆ`mat_loader()`ใพใใฏ`dat_loader()`ใซใซใผใใฃใณใฐ -4. **ใใผใฟๆฝๅบ**: ่กๅ`A`ใ`b`ใ`c`ใจ้ๆง้ `K`ใ่ฟใ - -### ใใงใผใบ4: ใฝใซใใผๅฎ่ก - -``` -ๅ ฅๅๆค่จผ โ ใฝใซใใผ่จญๅฎ โ ๅ้ก่งฃๆฑบ โ ในใใผใฟในใใใใณใฐ -``` - -1. **ๅ ฅๅๆค่จผ**: ่กๅๆฌกๅ ใจ้ๆง้ ใฎไธ่ฒซๆงใใใงใใฏ -2. **ใฝใซใใผ่จญๅฎ**: ๅ ฌๆญฃใชใใณใใใผใฏใฎใใใฎๆๅฐ้ใฎ่จญๅฎใ้ฉ็จ -3. **่งฃๆฑบใใญใปใน**: ใฟใคใใณใฐๆธฌๅฎไปใใงๆ้ฉๅใๅฎ่ก -4. **็ตๆๅฆ็**: ใฝใซใใผๅบๆใฎในใใผใฟในใณใผใใๆจๆบๅฝขๅผใซใใใ - -### ใใงใผใบ5: ใกใใชใฏใน่จ็ฎ - -``` -่งฃใใฏใใซ โ ็ฎ็่จ็ฎ โ ๅฎ่กๅฏ่ฝๆง่ฉไพก โ ใฎใฃใใ่จ็ฎ -``` - -1. **็ฎ็ๅค**๏ผ็ตฑๅใใใ`calculate_solver_metrics()`็ต็ฑ๏ผ: - - ไธปๅ้ก: `c' * x` - - ๅๅฏพๅ้ก: `b' * y` -2. **้ๅฎ่กๅฏ่ฝๆงๆธฌๅฎ**: - - ไธปๅ้ก: `||A*x - b|| / (1 + ||b||)` - - ๅๅฏพๅ้ก: `sqrt(cone_violation(c - A'*y)) / (1 + ||c||^2)` -3. **ๅๅฏพๆงใฎใฃใใ**: `|primal_objective - dual_objective|` - -### ใใงใผใบ6: ็ตๆใทใชใขใฉใคใผใผใทใงใณใจ่ฟๅด - -``` -MATLAB็ตๆ โ JSONๅคๆ โ ใใกใคใซๆธใ่พผใฟ โ Python่ชญใฟๅใ โ SolverResultไฝๆ -``` - -1. **JSONๅฝขๅผๅ**: ็ตฑๅใใใ`format_result_to_json()`ใMATLABๆง้ ไฝใJSONๆๅญๅใซๅคๆ -2. **ใใกใคใซๆธใ่พผใฟ**: ็ตฑๅใใใ`save_json_safely()`ใใจใฉใผๅๅพฉไปใใงJSONใๆธใ่พผใฟ -3. **Python่ชญใฟๅใ**: `json.load()`ใ็ตๆใใกใคใซใ่งฃๆ -4. **็ตๆๅคๆ**: ใกใฟใใผใฟๆกๅผตไปใใง`SolverResult`ใชใใธใงใฏใใซใใใ - ---- - -## ็ตฑๅใกใซใใบใ - -### ๅ้กใฌใธในใใช็ตฑๅ - -ใทในใใ ใฏๅ้กๅใใใกใคใซใฎๅ ดๆใซใใใใใใใใซ้ไธญๅใใใYAML่จญๅฎใไฝฟ็จ๏ผ - -```yaml -problem_libraries: - nb: - display_name: "Network Design" - file_path: "problems/DIMACS/data/ANTENNA/nb.mat.gz" - file_type: "mat" - library_name: "DIMACS" - - arch0: - display_name: "Architecture 0" - file_path: "problems/SDPLIB/data/arch0.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" -``` - -**่งฃๆฑบใใญใปใน**: -1. Python `ProblemData.name` โ ใฌใธในใใชๆค็ดข -2. `file_path`ใจ`file_type`ใๆฝๅบ -3. ๅฝขๅผๅบๆ่ชญใฟ่พผใฟใฎใใใซMATLABใซๆธกใ -4. ้ฉๅใชใญใผใใผใไฝฟ็จใใฆๅ้กใใผใฟใ่ชญใฟ่พผใฟ - -### ไธๆใใกใคใซ็ฎก็ - -**UUIDใใผในใใผใใณใฐ**: ๅใฝใซใใผๅฎ่กใฏไธๆใฎไธๆใใกใคใซใไฝๆ๏ผ -``` -/tmp/matlab_sedumi_result_.json -``` - -**่ชๅใฏใชใผใณใขใใ**: ใณใณใใญในใใใใผใธใฃใผใไพๅคๆใงใใฏใชใผใณใขใใใไฟ่จผ๏ผ -```python -with temp_file_context(".json") as result_file: - # MATLABใฝใซใใผใๅฎ่ก - # ใใกใคใซใฏ่ชๅ็ใซใฏใชใผใณใขใใใใใ -``` - -**ๅญคๅ ๆคๅบ**: 1ๆ้ไปฅไธๅคใๆพ็ฝฎใใใไธๆใใกใคใซใฎๅฎๆ็ใชใฏใชใผใณใขใใใ - -### ใใผใธใงใณๆคๅบใจใญใฃใใทใฅ - -**ๅคๆฎต้ๆคๅบ**: -1. **้ขๆฐๅญๅจ**: ใฝใซใใผ้ขๆฐใๅฉ็จๅฏ่ฝใใใงใใฏ -2. **ใใผใธใงใณ้ขๆฐ**: ใฝใซใใผๅบๆใฎใใผใธใงใณ้ขๆฐใๅผใณๅบใ -3. **ใใกใคใซ่งฃๆ**: ใคใณในใใผใซใใกใคใซใใใใผใธใงใณใ่งฃๆ -4. **ๆฉ่ฝใในใ**: ๆๅฐๅ้กใงใฝใซใใผใๅไฝใใใใจใๆค่จผ - -**ใญใฃใใทใฅๆฆ็ฅ**: ็นฐใ่ฟใๆคๅบใชใผใใผใใใใ้ฟใใใใใซๅๆๅๆใซใใผใธใงใณๆ ๅ ฑใใญใฃใใทใฅใ - ---- - -## ็ตๆๅฆ็ใใงใผใณ - -### MATLAB็ตๆๆง้ - -```matlab -result = struct(); -result.solver_name = 'SeDuMi'; -result.solver_version = 'SeDuMi-1.3.7'; -result.status = 'optimal'; -result.solve_time = 0.245; -result.primal_objective = -4.567; -result.dual_objective = -4.567; -result.gap = 1.234e-10; -result.primal_infeasibility = 2.345e-12; -result.dual_infeasibility = 3.456e-11; -result.iterations = 15; -``` - -### JSONๅคๆใใญใปใน - -**ๅๅฎๅ จๆง**: ็ตฑๅใใใ`format_result_to_json()`ใMATLABๅบๆๅใๅฆ็๏ผ -- `NaN` โ `null`๏ผJSONใง็ฉบ้ ๅ๏ผ -- `ยฑInf` โ `ยฑ1e308` -- ็ฉบ้ ๅ โ `null` -- ๆฐๅค็ฒพๅบฆไฟๆใไฟ่จผ - -### Python SolverResultใใใใณใฐ - -```python -SolverResult( - solve_time=matlab_result['solve_time'], - status=matlab_result['status'].upper(), - primal_objective_value=safe_float(matlab_result['primal_objective_value']), - dual_objective_value=safe_float(matlab_result['dual_objective_value']), - duality_gap=safe_float(matlab_result['duality_gap']), - primal_infeasibility=safe_float(matlab_result['primal_infeasibility']), - dual_infeasibility=safe_float(matlab_result['dual_infeasibility']), - iterations=safe_int(matlab_result['iterations']), - solver_name='matlab_sedumi', - solver_version='SeDuMi-1.3.7 (MATLAB R2023b)', - additional_info={ - 'matlab_output': matlab_result, - 'solver_backend': 'sedumi', - 'execution_environment': 'matlab' - } -) -``` - ---- - -## ใจใฉใผใใณใใชใณใฐๆฆ็ฅ - -### ๅคๅฑคใจใฉใผๅๅพฉ - -#### 1. Pythonใฌใคใคใผ -- **ใตใใใญใปในๅคฑๆ**: ่จบๆญๆ ๅ ฑใฎใใใซstderr/stdoutใใญใฃใใใฃ -- **ใฟใคใ ใขใฆใๅฆ็**: ๆง้ ๅใใใใฟใคใ ใขใฆใ็ตๆใ่ฟใ -- **ใใกใคใซI/Oใจใฉใผ**: ๆฌ ๆ/็ ดๆ็ตๆใใกใคใซใๅฆ็ -- **JSON่งฃๆ**: ไธๆญฃใชJSONใฎๅช้ ใชๅฆ็ - -#### 2. MATLABใฌใคใคใผ -- **ใฝใซใใผใจใฉใผ**: ่จบๆญๆ ๅ ฑไปใใจใฉใผ็ตๆๆง้ ใไฝๆ -- **ๅ้ก่ชญใฟ่พผใฟ**: ๆฌ ๆใใกใคใซใพใใฏๅฝขๅผใจใฉใผใๅฆ็ -- **ใกใใชใฏใน่จ็ฎ**: ่จ็ฎใงใฎNaN/Infใฎๅฎๅ จใชๅฆ็ -- **ใใกใคใซๆธใ่พผใฟ**: ๅคฑๆๆใฎใญใผใซใใใฏไปใใขใใใใฏๆไฝ - -### ใจใฉใผ็ตๆๆง้ - -```python -SolverResult.create_error_result( - error_message="MATLABๅฎ่กๅคฑๆ: ใฝใซใใผใ่ฆใคใใใพใใ", - solve_time=actual_time_spent, - solver_name=self.solver_name, - solver_version=self.get_version() -) -``` - -### ่จบๆญๆ ๅ ฑ - -ใในใฆใฎใจใฉใผ็ตๆใซใฏไปฅไธใๅซใพใใพใ๏ผ -- **ใจใฉใผๅ้ก**: ใฟใคใ ใขใฆใใใฝใซใใผใจใฉใผใI/Oใจใฉใผใชใฉ -- **ๅฎ่กใณใณใใญในใ**: MATLABใใผใธใงใณใใฝใซใใผๅฏ็จๆงใใใกใคใซใใน -- **ใฟใคใใณใฐๆ ๅ ฑ**: ๅคฑๆๅใซ่ฒปใใใๆ้ -- **็ๅบๅ**: ใใใใฐ็จใฎMATLAB stdout/stderr - ---- - -## ใใใฉใผใใณใน่ๆ ฎไบ้ - -### ่ตทๅๆ้ฉๅ - -**MATLABๅๆๅ**: ใณใผใซใMATLAB่ตทๅใฏ5-15็งใใใๅฏ่ฝๆง -- **ใฟใคใ ใขใฆใ่ชฟๆด**: ่ตทๅ็จใซ่งฃใฟใคใ ใขใฆใใซ15็งใใใใกใ่ฟฝๅ -- **่ตทๅ่ญฆๅ**: MATLAB่ตทๅใ10็งไปฅไธใฎๅ ดๅใซใขใฉใผใ -- **ไบๅใฆใฉใผใใณใฐ**: ๆฌ็ช็ฐๅขใงใฏไบๅใฆใฉใผใใณใฐใใใMATLABใปใใทใงใณใๆค่จ - -### ใกใขใช็ฎก็ - -**ไธๆใใกใคใซ**: -- UUIDใใผในใใผใใณใฐใ็ซถๅใ้ฒๆญข -- ่ชๅใฏใชใผใณใขใใใใใฃในใฏๅฎน้ๅ้กใ้ฒๆญข -- ๅญคๅ ๆคๅบใไธญๆญใใใๅฎ่กใๅฆ็ - -**MATLABใกใขใช**: -- ไฝฟ็จๅพใซๅคงใใช่กๅใ่งฃๆพ -- MATLABใฏใผใฏในใใผในใฎไธๆๅคๆฐใใฏใชใข -- ้ทๆ้ๅฎ่กใปใใทใงใณใงใกใขใชไฝฟ็จ้ใ็ฃ่ฆ - -### ๅฎ่กๅน็ - -**ใใน็ฎก็**: -- ใปใใทใงใณใใจใซไธๅบฆMATLABในใฏใชใใใในใ่ฟฝๅ -- ไฝๆฅญใใฃใฌใฏใใชๅ้กใ้ฟใใใใใซ็ตถๅฏพใในใไฝฟ็จ -- ็นฐใ่ฟใYAML่งฃๆใ้ฟใใใใใซๅ้กใฌใธในใใชใใญใฃใใทใฅ - -**ใตใใใญใปในๆ้ฉๅ**: -- ่งฃๆฑบใใจใซๅไธMATLABใณใใณใ๏ผ่คๆฐๅผใณๅบใใชใ๏ผ -- ๅฏ่ฝใชๅ ดๅใฏ่คๆฐๅ้กใใใใๅฆ็ -- ใใผใฟใทใชใขใฉใคใผใผใทใงใณใชใผใใผใใใใๆๅฐๅ - ---- - -## ็ตฑๅใใคใณใ่ฆ็ด - -### Pythonใใณใใใผใฏใทในใใ ใจใฎ็ตฑๅ - -1. **SolverInterfaceๆบๆ **: ไปใฎใฝใซใใผใฎใใญใใใคใณ็ฝฎๆ -2. **ๅ้กใฌใธในใใช**: ใทใผใ ใฌในใชDIMACS/SDPLIBๅ้ก่งฃๆฑบ -3. **ใใผใฟใใผใน็ตฑๅ**: ในใใฌใผใธ็จใฎๆจๆบSolverResultๅฝขๅผ -4. **ใฌใใผใ็ๆ**: ใฌใใผใใใคใใฉใคใณ็จใฎไธ่ฒซใใใกใฟใใผใฟ - -### ๅค้จใฉใคใใฉใชใจใฎ็ตฑๅ - -1. **DIMACSๅ้ก**: `mat_loader.m`ใซใใใใคใใฃใMATใใกใคใซใตใใผใ -2. **SDPLIBๅ้ก**: `dat_loader.m`ใซใใDAT-Sใใกใคใซใตใใผใ -3. **ๅ้กใกใฟใใผใฟ**: ใฌใธในใใช้งๅใฎๅ้กๅ้กใจใกใฟใใผใฟ - -### MATLABใจใณใทในใใ ใจใฎ็ตฑๅ - -1. **ใฝใซใใผๆคๅบ**: ใคใณในใใผใซใใใใฝใซใใผใฎๅ็็บ่ฆ -2. **ใใผใธใงใณ่ฟฝ่ทก**: ๅ ๆฌ็ใชใใผใธใงใณใกใฟใใผใฟๅ้ -3. **ใจใฉใผไผๆญ**: MATLABใใPythonใธใฎๆๅณใฎใใใจใฉใผใกใใปใผใธ -4. **่งฃในใใฌใผใธ**: ่ฉณ็ดฐๅๆ็จใฎใชใใทใงใณMATใใกใคใซๅบๅ - -ใใฎ่จญ่จใฏใๆขๅญใฎPythonใขใผใญใใฏใใฃๅ ใงๅ ๆฌ็ใชMATLABใฝใซใใผใตใใผใใๆไพใใชใใใๅ ฌๆญฃใชใใณใใใผใฏๅฒๅญฆใ็ถญๆใใๅ ็ขใงๆฌ็ชๅฏพๅฟใฎ็ตฑๅใๆไพใใพใใ \ No newline at end of file diff --git a/database/.gitkeep b/database/.gitkeep new file mode 100644 index 0000000..b94c782 --- /dev/null +++ b/database/.gitkeep @@ -0,0 +1,2 @@ +# This file ensures the database/ directory is preserved in git +# The actual results.db file is managed via JSON exports and excluded from tracking \ No newline at end of file diff --git a/database/results.db b/database/results.db deleted file mode 100644 index 5e418b4..0000000 Binary files a/database/results.db and /dev/null differ diff --git a/docs/development/basic_design.md b/docs/development/basic_design.md index 69aa843..8ed650d 100644 --- a/docs/development/basic_design.md +++ b/docs/development/basic_design.md @@ -1,39 +1,40 @@ # Optimization Solver Benchmark System - Basic Design ## Project Vision -Create the leading open-source platform for benchmarking optimization solvers across multiple problem types, providing researchers and practitioners with comprehensive performance insights through automated execution, transparent reporting, and fair baseline comparisons. + +Research tool for benchmarking optimization solvers across LP, QP, SOCP, and SDP problems using external problem libraries with automated execution and fair comparison methodology. --- ## Core Mission + **"Regularly benchmark publicly available solvers and publish the results as data"** -This system prioritizes unbiased solver comparison through minimal configuration, establishing "out of the box" performance baselines rather than optimized configurations. +This system prioritizes unbiased solver comparison through minimal configuration, establishing "out of the box" performance baselines for research use. --- ## Design Philosophy -### Fair Baseline Benchmarking Principles -- **Solver Defaults**: Uses each solver's default parameters to avoid optimization bias -- **Baseline Performance**: Establishes genuine "out of the box" capabilities -- **Transparent Comparison**: Prevents inadvertent parameter tuning favoring specific solvers -- **Reproducible Results**: Standardized environments ensure consistent benchmarking -- **Open Data**: Results published as accessible JSON/CSV for research use +### Fair Benchmarking Principles +- **Solver Defaults**: Use default parameters to avoid optimization bias +- **Reproducible Results**: Fixed problem libraries and solver versions +- **Open Data**: Results published as accessible JSON/CSV for research +- **Version Tracking**: Complete metadata for result verification ### Technical Principles -1. **Minimal Configuration**: Fair comparison using solver defaults for unbiased benchmarking -2. **Modular Design**: Independent addition of solvers, problems, and environments -3. **Configuration-Driven**: Manage benchmark content via YAML configuration -4. **Result Standardization**: Common data format across different solver environments -5. **Error Resilience**: System continues despite individual solver failures -6. **Automated Operation**: GitHub Actions enables hands-off execution and deployment +1. **Minimal Configuration**: Fair comparison using solver defaults +2. **Modular Design**: Independent addition of solvers and problems +3. **Result Standardization**: Common data format across solver environments +4. **Error Resilience**: System continues despite individual solver failures +5. **Timeout Management**: Configurable time limits prevent hanging on difficult problems +6. **Automated Operation**: GitHub Actions enables hands-off execution --- ## System Overview -### Core Architecture (LOCAL DEVELOPMENT FIRST) +### Core Architecture ``` LOCAL DEVELOPMENT: โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ @@ -52,12 +53,6 @@ LOCAL DEVELOPMENT: โ Report โ โ Generation โ โโโโโโโโโโโโโโโ - โ - โผ - โโโโโโโโโโโโโโโ - โ Commit to โ - โ docs/ โ - โโโโโโโโโโโโโโโ GITHUB ACTIONS (Publishing Only): โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ @@ -66,189 +61,124 @@ GITHUB ACTIONS (Publishing Only): โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ ``` -### Target Environments โ -- **Python**: CVXPY multi-backend (CLARABEL, SCS, ECOS, OSQP), SciPy optimization suite -- **Version Tracking**: Complete solver backend version detection and Git commit recording -- **External Libraries**: DIMACS and SDPLIB integration via git clone approach +### Supported Components +**Problem Libraries**: +- **DIMACS**: 47 problems in SeDuMi .mat format +- **SDPLIB**: 92+ problems in SDPA .dat-s format +- **Total Coverage**: 139+ optimization problems -### Supported Problem Types โ -- **LP**: Linear Programming (DIMACS) -- **QP**: Quadratic Programming (DIMACS) -- **SOCP**: Second-Order Cone Programming (DIMACS) -- **SDP**: Semidefinite Programming (DIMACS + SDPLIB) -- **Total Coverage**: 139+ problems from external libraries only +**Solver Support**: +- **Python (9)**: SciPy, CVXPY backends (CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HIGHS) +- **MATLAB (2)**: SeDuMi, SDPT3 (optional) ---- - -## Infrastructure Constraints & Solutions - -### GitHub Actions Platform -- **Advantages**: Free for public repos, integrated CI/CD, standardized environments -- **Constraints**: 6-hour execution limit, 20 parallel jobs max -- **Solutions**: Staged problem sets, efficient parallel execution - -### Storage Strategy โ IMPLEMENTED -```yaml -โ External Problem Libraries - COMPLETED - - DIMACS library: 47 problems via git submodule - - SDPLIB library: 92+ problems via git submodule - - CVXPY conversion for solver compatibility - -โ Production Ready: External-Only Focus - - 139+ total problems from external libraries - - Professional reporting with structure analysis - - Comprehensive metadata and version tracking - - Simplified architecture with MAT/DAT loaders only -``` +**Problem Types**: +- **LP**: Linear Programming +- **QP**: Quadratic Programming +- **SOCP**: Second-Order Cone Programming +- **SDP**: Semidefinite Programming --- -## Development Roadmap +## Implementation Strategy -### Phase 1: MVP Foundation โ COMPLETED -**Goal**: Verify basic functionality with minimal viable system +### Development Approach +**External Library Focus**: Use established problem libraries (DIMACS, SDPLIB) rather than creating internal problems to ensure research relevance and standardization. -**Achievements**: -- Python solvers (SciPy, CVXPY default backends) -- GitHub Actions CI/CD with manual triggers -- Interactive HTML reports via GitHub Pages -- SQLite storage with structured schema -- Comprehensive validation framework +**Git Submodule Integration**: Pin problem libraries to specific commits for reproducibility while enabling updates when needed. -### Phase 2: Data Publishing Platform โ COMPLETED -**Goal**: Robust data publishing with expanded solver ecosystem +**Multi-Language Support**: Unified interface supporting both Python and MATLAB solvers with standardized result format. -**Achievements**: -- Multi-backend CVXPY (CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HiGHS) -- Complete SOCP/SDP problem support via external libraries -- Clean JSON/CSV data exports for research use -- External library integration (DIMACS + SDPLIB) -- Production-ready benchmark system +### Data Management +**Database Storage**: SQLite with complete version tracking (solver versions, Git commits, environment details) for historical analysis. -**Current Solver Coverage**: -``` -Problem Type | Solver Count | Backends -LP | 9 | SciPy + CLARABEL + SCS + ECOS + OSQP + CVXOPT + SDPA + SCIP + HiGHS -QP | 8 | SciPy + CLARABEL + SCS + ECOS + OSQP + CVXOPT + SCIP + HiGHS -SOCP | 6 | CLARABEL + SCS + ECOS + CVXOPT + SDPA + SCIP -SDP | 5 | CLARABEL + SCS + CVXOPT + SDPA + SCIP -``` +**Result Format**: Standardized SolverResult across all solvers with timing, objective values, status, and metadata. -### Phase 3: Architecture Optimization โ COMPLETED -**Goal**: Simplified architecture and enhanced testing capabilities - -**Achievements**: -- Direct registry iteration (removed helper functions) -- Clean separation of --library_names vs --problems filtering -- Dry-run mode for testing without database pollution -- Memo column for result annotations -- Streamlined codebase focused on external libraries only -- Removed internal synthetic problems for production clarity - -### Phase 4: Advanced Ecosystem โณ PLANNED -**Goal**: Enhanced analysis capabilities and broader solver support - -**Planned Features**: -- MATLAB Optimization Toolbox integration -- Commercial solver support (Gurobi, CPLEX) via user licenses -- Mixed-Integer Programming (MIP) and Nonlinear Programming (NLP) -- Advanced statistical analysis and performance profiling -- Community problem sharing and solver recommendations - -### Phase 5: Production Platform โณ PLANNED -**Goal**: Scalable cloud deployment with enterprise features - -**Planned Features**: -- Cloud-native deployment (AWS/GCP/Azure) -- Auto-scaling based on benchmark workload -- API with authentication and quotas -- Real-time performance monitoring -- Academic institution partnerships +**Report Generation**: Automated HTML dashboards with JSON/CSV data export for research use. --- -## Success Metrics +## Development Status -### Functional Metrics -- **Solver Coverage**: Target 10+ open-source solvers across 4 problem types -- **Execution Reliability**: 99%+ successful benchmark completion rate -- **Data Quality**: Comprehensive validation with error detection -- **Report Generation**: Automated HTML/JSON/CSV output +### Completed Features โ +- **Core Benchmarking**: Python and MATLAB solver execution +- **External Libraries**: DIMACS and SDPLIB integration via git submodules +- **Data Publishing**: Interactive HTML reports with CSV/JSON export +- **Version Tracking**: Complete environment and solver version recording +- **CI/CD Pipeline**: GitHub Actions automation with GitHub Pages deployment +- **Validation Framework**: Problem and solver compatibility testing -### Performance Metrics -- **Execution Speed**: <5 minutes for light problem sets -- **System Throughput**: Efficient parallel solver execution -- **Resource Utilization**: Optimal GitHub Actions usage +### Current Solver Coverage +``` +Problem Type | Solvers Available | Success Rate +LP | 9 solvers | ~100% +QP | 8 solvers | ~100% +SOCP | 6 solvers | ~40-60% +SDP | 5 solvers | ~20-40% +``` -### Adoption Metrics -- **Community Usage**: Active viewers and data consumers -- **Research Impact**: Citations and academic references -- **Contribution Rate**: Community-submitted problems and solvers +### Architecture Benefits +- **Fair Comparison**: Minimal configuration prevents solver bias +- **Research Ready**: Complete metadata for paper publication +- **Extensible**: Easy addition of new solvers and problem formats +- **Automated**: Hands-off operation via GitHub Actions --- -## Quality Assurance +## Usage Scenarios -### Testing Strategy -- **Unit Tests**: Individual component validation -- **Integration Tests**: Complete workflow testing -- **End-to-End Tests**: GitHub Actions simulation -- **Performance Regression**: Continuous performance monitoring +### Research Applications +- **Solver Performance Analysis**: Compare solvers across problem types +- **Algorithm Development**: Benchmark new optimization algorithms +- **Problem Difficulty Assessment**: Analyze which problems are challenging +- **Historical Trends**: Track solver performance improvements over time -### Validation Framework -- **Input Validation**: Problem file format verification -- **Result Validation**: Solver output consistency checks -- **Environment Validation**: System specification recording -- **Configuration Validation**: YAML syntax and semantic validation +### Academic Use Cases +- **Course Materials**: Demonstrate optimization solver capabilities +- **Student Projects**: Provide baseline results for comparison +- **Research Publication**: Reference standardized benchmark results +- **Collaboration**: Share reproducible performance data --- -## Security & Compliance +## System Requirements -### Data Protection -- **Public Data Only**: No sensitive information in benchmark problems -- **Environment Anonymization**: Optional system information privacy -- **Result Transparency**: Open publishing with privacy controls +### Runtime Dependencies +- **Python 3.12+**: Core execution environment +- **Git**: Repository and submodule management +- **Optional MATLAB**: For MATLAB solver support -### License Compliance -- **Open-Source First**: Prioritize freely available solvers -- **Clear Documentation**: License information for all components -- **Commercial Integration**: Support user-provided commercial licenses +### Problem Library Setup +```bash +# Clone with submodules for problem libraries +git clone --recursive ---- +# Validate environment +python main.py --validate -## Future Vision +# Run benchmarks with default timeout (120s) +python main.py --all -### Long-term Goals (2-3 years) -- **Leading Platform**: Recognized standard for optimization solver benchmarking -- **Research Community**: 1000+ active users, 500+ contributed problems -- **Academic Impact**: 100+ citations, integration with research workflows -- **Industry Adoption**: Enterprise use cases and professional references - -### Technology Evolution -- **Multi-language Support**: Python, Julia, MATLAB, C++ solver integration -- **Advanced Analytics**: Machine learning for solver performance prediction -- **Real-time Monitoring**: Live performance tracking and alerting -- **Cloud Deployment**: Scalable infrastructure with global availability +# Run benchmarks with custom timeout for difficult problems +python main.py --all --timeout 600 # 10-minute timeout for large SDP problems +``` --- -## Project Values +## Quality Assurance -### Open Source Commitment -- **Transparent Development**: Public development process -- **Community-Driven**: User feedback shapes feature development -- **Open Data**: All results publicly available for research -- **Free Access**: Core functionality available without cost +### Validation Strategy +- **Environment Validation**: System compatibility checking +- **Problem Validation**: File format and data integrity verification +- **Solver Validation**: Execution capability testing +- **Result Validation**: Output consistency verification +- **Timeout Handling**: Configurable solver execution time limits with graceful termination -### Scientific Rigor -- **Reproducible Results**: Consistent, repeatable benchmarking methodology -- **Fair Comparison**: Unbiased evaluation using solver defaults -- **Statistical Validity**: Proper performance analysis and reporting -- **Documentation**: Comprehensive methodology and implementation details +### Reproducibility Measures +- **Fixed Dependencies**: Pinned solver versions in requirements.txt +- **Consistent Environments**: Standardized execution via GitHub Actions +- **Complete Metadata**: Environment info saved with all results +- **Version Control**: Git commit tracking for all benchmark runs --- -*This basic design document establishes the high-level vision, principles, and roadmap for the optimization solver benchmark system. For detailed implementation specifications, see [detail_design.md](detail_design.md).* - -*Last Updated: December 2025* \ No newline at end of file +*This basic design establishes the conceptual framework and development approach. For implementation details, see [detail_design.md](detail_design.md).* \ No newline at end of file diff --git a/docs/development/detail_design.md b/docs/development/detail_design.md index 0f671cb..5facf84 100644 --- a/docs/development/detail_design.md +++ b/docs/development/detail_design.md @@ -1,351 +1,387 @@ -# Optimization Solver Benchmark System - Technical Design Specification +# Optimization Solver Benchmark System - Technical Design -This document provides comprehensive technical specifications for the optimization solver benchmark system, including the complete MATLAB/Octave integration architecture. The system is designed for simplicity, reliability, and maintainability while supporting both Python and MATLAB solvers. +Detailed technical specifications for the optimization solver benchmark system supporting Python and MATLAB solvers across LP, QP, SOCP, and SDP problems. --- ## System Overview -### Core Mission -"Regularly benchmark publicly available solvers and publish the results as data" +**Purpose**: Benchmark optimization solvers using external problem libraries (DIMACS, SDPLIB) with minimal configuration for unbiased performance evaluation. -### Key Features -- **Fair Baseline Benchmarking**: Minimal configuration using solver defaults -- **Multi-Language Support**: Python (CVXPY, SciPy) and MATLAB/Octave (SeDuMi, SDPT3) solvers -- **External Problem Libraries**: DIMACS (47 problems) and SDPLIB (92 problems) -- **Production Ready**: 139+ problems with comprehensive solver coverage -- **Automated Publishing**: GitHub Actions with GitHub Pages deployment +**Core Components**: +- **Problem Loaders**: Parse MAT/DAT formats โ standardized ProblemData +- **Solver Interfaces**: Execute Python/MATLAB solvers โ standardized SolverResult +- **Database Storage**: SQLite with complete version tracking +- **Report Generation**: HTML dashboards with CSV/JSON export -### Current System Statistics -``` -Problem Type | Total Results | Success Rate | Solver Coverage -LP | 12 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -QP | 6 results | 100% | SciPy + CLARABEL + SCS + ECOS + OSQP -SOCP | 31 results | ~43% | CLARABEL + SCS + ECOS + SeDuMi + SDPT3 -SDP | 38 results | ~29% | CLARABEL + SCS + SeDuMi + SDPT3 - -External Libraries: -DIMACS | 47 problems | SeDuMi .mat format -SDPLIB | 92 problems | SDPA .dat-s format -``` +*For supported solvers, problem libraries, and problem types, see [basic_design.md](basic_design.md).* --- -## System Architecture - -### Unified Data Flow Architecture -``` -LOCAL DEVELOPMENT: -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ -โ Problem โโโโโถโ Solver โโโโโถโ Result โ -โ Interface โ โ Interfaces โ โ Collection โ -โ (Unified) โ โ (Py + MATLAB)โ โ (Standard) โ -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ - โ โ โ - โผ โผ โผ -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ -โ External โ โ Environment โ โ Database โ -โ Libraries โ โ Capture โ โ Storage โ -โ (DIMACS/SDL)โ โ (Unified) โ โ (SQLite) โ -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ - โ - โผ - โโโโโโโโโโโโโโโ - โ Report โ - โ Generation โ - โ (Bootstrap) โ - โโโโโโโโโโโโโโโ - -GITHUB ACTIONS (Publishing Only): -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ -โ Pre-built โโโโโถโ GitHub โ -โ docs/ โ โ Pages โ -โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ -``` - -### Symmetrical Interface Architecture -``` -BenchmarkRunner -โโโ PythonInterface -โ โโโ cvxpy_clarabel, cvxpy_scs, cvxpy_ecos, cvxpy_osqp -โ โโโ scipy_linprog -โโโ MatlabInterface -โ โโโ matlab_sedumi -โ โโโ matlab_sdpt3 -โโโ ProblemInterface - โโโ MATLoader (DIMACS .mat files) - โโโ DATLoader (SDPLIB .dat-s files) - โโโ MPSLoader (LP .mps files) - โโโ QPSLoader (QP .qps files) - โโโ PythonLoader (Python problem definitions) +## Project Structure + +### Directory Layout +``` +optimization-solver-benchmark/ +โโโ main.py # Entry point with argument parsing +โโโ config/ # Configuration files +โ โโโ site_config.yaml # Site metadata and overview +โ โโโ problem_registry.yaml # Problem metadata and file paths +โโโ scripts/ +โ โโโ benchmark/ # Benchmark execution engine +โ โ โโโ __init__.py +โ โ โโโ runner.py # Main BenchmarkRunner class +โ โโโ solvers/ # Solver interface implementations +โ โ โโโ __init__.py +โ โ โโโ solver_interface.py # Abstract base classes and SolverResult +โ โ โโโ python/ # Python solver implementations (subprocess) +โ โ โ โโโ __init__.py +โ โ โ โโโ python_process_interface.py # Python subprocess coordinator +โ โ โ โโโ python_solver_runner.py # Subprocess entry point + solver manager +โ โ โ โโโ cvxpy_runner.py # CVXPY backend handler +โ โ โ โโโ scipy_runner.py # SciPy linprog handler +โ โ โโโ matlab/ # MATLAB integration (subprocess) +โ โ โโโ __init__.py +โ โ โโโ matlab_process_interface.py # Python-MATLAB subprocess bridge +โ โ โโโ matlab_solver_runner.m # MATLAB subprocess entry point +โ โ โโโ sedumi_runner.m # SeDuMi solver wrapper +โ โ โโโ sdpt3_runner.m # SDPT3 solver wrapper +โ โ โโโ setup_matlab_solvers.m # MEX compilation script +โ โ โโโ sedumi/ # SeDuMi solver (git submodule) +โ โ โโโ sdpt3/ # SDPT3 solver (git submodule) +โ โโโ data_loaders/ # Problem format loaders +โ โ โโโ __init__.py +โ โ โโโ problem_loader.py # ProblemData class definition +โ โ โโโ python/ # Python format loaders +โ โ โ โโโ __init__.py +โ โ โ โโโ problem_interface.py # Problem loading coordinator +โ โ โ โโโ mat_loader.py # DIMACS .mat loader +โ โ โ โโโ dat_loader.py # SDPLIB .dat-s loader +โ โ โโโ matlab/ # MATLAB format loaders +โ โ โโโ mat_loader.m # MATLAB .mat loader +โ โ โโโ dat_loader.m # MATLAB .dat-s loader +โ โโโ database/ # Database management +โ โ โโโ __init__.py +โ โ โโโ database_manager.py # Database operations +โ โ โโโ models.py # Data models +โ โ โโโ schema.sql # Database schema +โ โโโ reporting/ # Report generation +โ โ โโโ __init__.py +โ โ โโโ html_generator.py # HTML report creation +โ โ โโโ result_processor.py # Result aggregation +โ โ โโโ data_exporter.py # JSON/CSV export +โ โโโ utils/ # Utility modules +โ โโโ __init__.py +โ โโโ environment_info.py # System information capture +โ โโโ git_utils.py # Git operations +โ โโโ logger.py # Logging configuration +โ โโโ resource_limits.py # Memory/CPU limitation utilities +โ โโโ temp_file_manager.py # Temporary file handling +โโโ problems/ # Problem library files +โ โโโ DIMACS/ # External DIMACS library (git submodule) +โ โโโ SDPLIB/ # External SDPLIB library (git submodule) +โโโ database/ # SQLite database files +โ โโโ results.db # Benchmark results storage +โโโ docs/ # Generated reports and documentation +โ โโโ pages/ # Generated HTML reports +โ โ โโโ index.html # Main dashboard +โ โ โโโ results_matrix.html # Problems ร Solvers matrix +โ โ โโโ raw_data.html # Detailed data view +โ โ โโโ data/ # Exported data files +โ โ โโโ benchmark_results.json +โ โ โโโ benchmark_results.csv +โ โ โโโ summary.json +โ โโโ development/ # Development documentation +โโโ requirements.txt # Python dependencies ``` --- ## Component Architecture -### 1. Problem Interface Module +### System Data Flow -#### Component Role Definitions -The system follows a clear separation of concerns across three key components: +#### High-Level Process Flow with Sequential Steps -- **Loaders**: Convert `problem_name` โ `ProblemData` - - Role: Format-specific parsing and data loading - - Input: Problem name (string identifier) - - Output: Standardized ProblemData object - - Examples: `mat_loader.py`, `dat_loader.py`, `mat_loader.m`, `dat_loader.m` - -- **Runners**: Convert `ProblemData` โ `SolverResult` - - Role: Solver-specific execution and result generation - - Input: ProblemData object with A, b, c, K matrices - - Output: Standardized SolverResult object - - Examples: `cvxpy_runner.py`, `sedumi_runner.m`, `sdpt3_runner.m` +```mermaid +graph TB + %% Parent Process Components + subgraph "Parent Process Environment" + BR["๐ BenchmarkRunnerENTRY POINTSystem Orchestrator"] + PI["Process InterfacePythonProcessInterfaceMatlabProcessInterface"] + end + + %% Report Generator (separate from parent process) + RPT["Report GeneratorHTML/CSV/JSON"] + + %% Isolated Subprocess + subgraph SUB ["Isolated Subprocess Environment"] + subgraph "Problem Loading" + PL["Problem LoadersMATLoader for .matDATLoader for .dat-s"] + PD("ProblemDataUnified Format") + end + + subgraph "Solver Execution" + SR["Solver Runnerpython_solver_runner.py ORmatlab_solver_runner.m"] + SOL["Actual SolversCVXPY backendsSciPySeDuMi/SDPT3"] + end + + subgraph "Result Generation" + RES("SolverResultData Structure") + end + end + + %% File System Storage + subgraph "File System" + PF[["Problem LibrariesDIMACS .mat.gzSDPLIB .dat-s"]] + TJ[["Temp JSON Files/tmp/result_xxx.json"]] + DBF[("Database Filesresults.db")] + HTML[["Generated Reportsdocs/pages/"]] + end + + %% Sequential Execution Flow with Numbers + BR -.->|"(1) solve(problem, solver)"| PI + PI -.->|"(2) subprocess.runulimit + timeout"| SUB + + PF --> PL + PL --> PD + PD --> SR + SR --> SOL + SOL --> RES + RES --> TJ + + TJ -.->|"(3) return SolverResult(JSON IPC)"| PI + PI -.->|"(4) return SolverResult"| BR + BR -->|"(5) insert DB"| DBF + DBF --> RPT + RPT --> HTML + HTML -.->|"restore DB(table_restorer.py)"| DBF + + %% Styling + classDef entryPoint fill:#ffcccc,stroke:#cc0000,stroke-width:4px,font-weight:bold + classDef processBox fill:#e1f5fe,stroke:#01579b,stroke-width:2px + classDef subprocessBox fill:#f3e5f5,stroke:#4a148c,stroke-width:2px + classDef internalDataBox fill:#fff9c4,stroke:#f57f17,stroke-width:2px + classDef databaseBox fill:#e8f5e8,stroke:#1b5e20,stroke-width:2px + classDef fileBox fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px + classDef isolationBox fill:#fff3e0,stroke:#e65100,stroke-width:3px + + class BR entryPoint + class PI,RPT processBox + class PL,SR,SOL subprocessBox + class PD,RES internalDataBox + class DBF databaseBox + class PF,TJ,HTML fileBox + class SUB isolationBox +``` + +#### Node Legend and Execution Flow +- **๐ด Entry Point** `[]` (Red): **BenchmarkRunner** - Main system orchestrator and entry point +- **๐ต Processes** `[]` (Blue): Active execution components - Process Interface, Report Generator, Solvers +- **๐ก Internal Data** `()` (Yellow): Temporary in-memory data structures - ProblemData, SolverResult +- **๐ข Database Storage** `[()]` (Green): Persistent database file - results.db +- **๐ฃ Document Files** `[[]]` (Purple): File-based documents - Problem Libraries, JSON Files, Generated Reports + +#### Sequential Execution Steps +1. **(1) solve(problem, solver)**: BenchmarkRunner calls Process Interface with problem and solver names +2. **(2) subprocess.run**: Process Interface launches isolated subprocess with ulimit + timeout controls +3. **(3) return SolverResult (JSON IPC)**: Subprocess writes JSON result file, Process Interface reads and converts +4. **(4) return SolverResult**: Process Interface returns standardized SolverResult object to BenchmarkRunner +5. **(5) insert DB**: BenchmarkRunner stores result with complete metadata directly in results.db file + + +#### Error Detection and Status Flow +``` +SUBPROCESS EXECUTION RESULTS: +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ +โ Return Code 0 โโโโโถโ Read JSON Result โโโโโถโ Normal SolverResult โ +โ (Success) โ โ File โ โ (OPTIMAL, etc.) โ +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ + +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ +โ Return Code -9/137 โโโโโถโ No JSON needed โโโโโถโ SIGKILL Result โ +โ (SIGKILL) โ โ (Process killed) โ โ + Memory Limit Info โ +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ + +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ +โ Timeout Expired โโโโโถโ No JSON needed โโโโโถโ TIMEOUT Result โ +โ (Process killed) โ โ (Process killed) โ โ + Timeout Duration โ +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ + +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ +โ Return Code โ 0 โโโโโถโ Parse stderr/stdout โโโโโถโ SUBPROCESS_ERROR โ +โ (Other errors) โ โ for error details โ โ + Error Message โ +โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ +``` + +### Component Responsibilities + +**๐ BenchmarkRunner** (System Orchestrator) +- Problem loading coordination +- Solver execution management +- Result storage and reporting + +**Process Interfaces** (Subprocess Management) +- **PythonProcessInterface**: Python solver execution with resource control +- **MatlabProcessInterface**: MATLAB solver execution with resource control + +**Data Components** +- **Problem Loaders**: MAT/DAT format parsers โ unified ProblemData +- **DatabaseManager**: SQLite operations with version tracking +- **ReportGenerator**: HTML/CSV/JSON output generation + +**Key Architecture Principles:** +- Subprocess isolation for crash protection +- Symmetric Python/MATLAB execution paths +- Unified resource control (timeout + memory limits) +- Centralized result storage and metadata tracking -- **Interfaces**: Orchestrate `problem_name` โ `SolverResult` - - Role: Coordinate loaders and runners for complete workflow - - Input: Problem name (string identifier) - - Output: Standardized SolverResult object - - Examples: `python_interface.py`, `matlab_interface.py` +--- -This modular design ensures clean separation between data loading, solver execution, and workflow coordination, enabling independent development and testing of each component. +## Core Data Models -#### Unified Problem Management +### Problem Data Structure ```python -# scripts/data_loaders/python/problem_interface.py -class ProblemInterface: - """Centralized problem loading and registry management""" - - FORMAT_LOADERS = { - "mat": MATLoader, # SeDuMi format (DIMACS) - "dat-s": DATLoader, # SDPA format (SDPLIB) - "mps": MPSLoader, # MPS format (LP) - "qps": QPSLoader, # QPS format (QP) - "python": PythonLoader, # Python definitions - } - - def load_problem(self, problem_name: str) -> ProblemData: - """Load problem using appropriate format loader""" +# scripts/data_loaders/problem_loader.py +class ProblemData: + """Unified problem representation using SeDuMi format""" + def __init__(self, name: str, problem_class: str): + self.name = name # Problem identifier + self.problem_class = problem_class # 'LP', 'QP', 'SOCP', 'SDP' + + # SeDuMi standard format (internal representation) + self.A_eq = None # Constraint matrix (sparse) + self.b_eq = None # RHS vector + self.c = None # Objective coefficients + self.cone_structure = {} # Cone constraints specification - def get_problem_config(self, problem_name: str) -> Dict[str, Any]: - """Get problem configuration from registry""" + # Optional QP data + self.P = None # Quadratic term matrix - def get_available_problems(self, library_filter: List[str] = None) -> List[str]: - """Get filtered list of available problems""" + # Problem metadata + self._num_variables = 0 + self._num_constraints = 0 + self.metadata = {} # Additional problem information ``` -#### Problem Data Standardization +### Solver Result Structure (Enhanced Error Detection) ```python -# scripts/data_loaders/problem_loader.py +# scripts/solvers/solver_interface.py @dataclass -class ProblemData: - """Standardized problem data structure""" - name: str - problem_class: str # 'LP', 'QP', 'SOCP', 'SDP' +class SolverResult: + """Standardized result format for all solvers with comprehensive error detection""" + solve_time: float # Execution time in seconds + status: str # Status codes (see below) + primal_objective_value: Optional[float] = None + dual_objective_value: Optional[float] = None + duality_gap: Optional[float] = None + primal_infeasibility: Optional[float] = None + dual_infeasibility: Optional[float] = None + iterations: Optional[int] = None + solver_name: Optional[str] = None + solver_version: Optional[str] = None + additional_info: Optional[Dict[str, Any]] = None - # SeDuMi format (unified internal representation) - A_eq: np.ndarray # Constraint matrix - b_eq: np.ndarray # RHS vector - c: np.ndarray # Objective coefficients - cone_structure: Dict # Cone constraints specification + # Status codes with clear error distinction: + # OPTIMAL - Solver found optimal solution + # ERROR - Solver-level error (convergence failure, numerical issues) + # UNSUPPORTED - Problem type not supported by solver + # TIMEOUT - Execution time limit exceeded + # SIGKILL - Process forcibly terminated (OOM, manual kill, resource limits) + # SUBPROCESS_ERROR - Subprocess execution error (Python crash, library issues) - # Optional QP data - P: Optional[np.ndarray] = None # Quadratic term + @classmethod + def create_error_result(cls, error_msg: str, solve_time: float = 0.0, + solver_name: str = "unknown", solver_version: str = "unknown") -> 'SolverResult': + """Create standardized solver-level error result""" + return cls(solve_time=solve_time, status='ERROR', + solver_name=solver_name, solver_version=solver_version, + additional_info={'error_message': error_msg}) + + @classmethod + def create_timeout_result(cls, timeout_duration: float, solver_name: str = "unknown", + solver_version: str = "unknown") -> 'SolverResult': + """Create standardized timeout result""" + return cls(solve_time=timeout_duration, status='TIMEOUT', + solver_name=solver_name, solver_version=solver_version, + additional_info={'timeout_duration': timeout_duration}) - # Problem metadata - _num_variables: int - _num_constraints: int - metadata: Dict[str, Any] = field(default_factory=dict) + @classmethod + def create_sigkill_result(cls, memory_limit_gb: Optional[float] = None, + solve_time: float = 0.0, solver_name: str = "unknown", + solver_version: str = "unknown", error_details: str = "") -> 'SolverResult': + """Create standardized SIGKILL result (process forcibly terminated)""" + additional_info = {'error_type': 'SIGKILL', 'error_details': error_details} + if memory_limit_gb is not None: + additional_info['memory_limit_gb'] = memory_limit_gb + return cls(solve_time=solve_time, status='SIGKILL', + solver_name=solver_name, solver_version=solver_version, + additional_info=additional_info) + + @classmethod + def create_subprocess_error_result(cls, returncode: int, error_message: str, + solve_time: float = 0.0, solver_name: str = "unknown", + solver_version: str = "unknown") -> 'SolverResult': + """Create standardized subprocess execution error result""" + return cls(solve_time=solve_time, status='SUBPROCESS_ERROR', + solver_name=solver_name, solver_version=solver_version, + additional_info={ + 'returncode': returncode, + 'error_type': 'SUBPROCESS_ERROR', + 'error_message': error_message + }) ``` -### 2. Solver Interface Architecture +--- -#### Python Solver Interface -```python -# scripts/solvers/python/python_interface.py -class PythonInterface: - """Unified interface for all Python-based solvers""" - - SOLVER_CONFIGURATIONS = { - 'cvxpy_clarabel': CvxpySolver, - 'cvxpy_scs': CvxpySolver, - 'cvxpy_ecos': CvxpySolver, - 'cvxpy_osqp': CvxpySolver, - 'scipy_linprog': ScipySolver, - } - - def solve(self, problem_name: str, solver_name: str, - problem_data: Optional[ProblemData] = None, - timeout: Optional[float] = None) -> SolverResult: - """Unified solve method with automatic problem loading""" - - # 1. Create solver instance - solver = self.create_solver(solver_name) - - # 2. Load problem data if not provided - if problem_data is None: - problem_data = self.problem_interface.load_problem(problem_name) - - # 3. Validate compatibility - if not solver.validate_problem_compatibility(problem_data): - return SolverResult.create_error_result(...) - - # 4. Execute solver - result = solver.solve(problem_data, timeout=timeout) - - # 5. Add problem class to additional_info for database storage - if not result.additional_info: - result.additional_info = {} - result.additional_info['problem_class'] = problem_data.problem_class - - return result +## Configuration Specifications + +### Problem Registry Structure + +**Problem Configuration Schema:** +```yaml +# config/problem_registry.yaml structure +problem_name: + display_name: string # Human-readable problem name + file_path: string # Relative path to problem file + file_type: string # "mat" | "dat-s" | "mps" | "qps" + library_name: string # "DIMACS" | "SDPLIB" | "internal" + for_test_flag: boolean # Mark problem for validation testing ``` -#### MATLAB Solver Interface +### Solver Interface Specifications + +**Python Solver Interface:** ```python -# scripts/solvers/matlab_octave/matlab_interface.py -class MatlabInterface: - """Unified interface for MATLAB/Octave solvers via subprocess execution""" - - MATLAB_SOLVER_CONFIGS = { - 'matlab_sedumi': { - 'matlab_solver': 'sedumi', - 'runner_function': 'sedumi_runner' - }, - 'matlab_sdpt3': { - 'matlab_solver': 'sdpt3', - 'runner_function': 'sdpt3_runner' - } - } - +class PythonProcessInterface: def solve(self, problem_name: str, solver_name: str, - problem_data: Optional[ProblemData] = None, - timeout: Optional[float] = None) -> SolverResult: - """Unified solve method calling matlab_interface.m directly""" - - # 1. Validate solver name - solver_config = self.MATLAB_SOLVER_CONFIGS[solver_name] - - # 2. Call MATLAB interface via subprocess - result = self._call_matlab_interface( - problem_name=problem_name, - matlab_solver=solver_config["matlab_solver"], - runner_function=solver_config["runner_function"], - timeout=timeout or self.default_timeout - ) - - # 3. Add problem class information for database storage - try: - problem_interface = ProblemInterface() - problem_data = problem_interface.load_problem(problem_name) - if not result.additional_info: - result.additional_info = {} - result.additional_info['problem_class'] = problem_data.problem_class - except Exception: - result.additional_info['problem_class'] = 'UNKNOWN' - - return result + timeout: Optional[float] = None, + memory_limit_gb: Optional[float] = None) -> SolverResult ``` -### 3. MATLAB Integration Architecture - -#### MATLAB Interface Entry Point -```matlab -% scripts/solvers/matlab_octave/matlab_interface.m -function matlab_interface(problem_name, solver_name, result_file, save_solutions, runner_function) - % Main MATLAB interface for benchmark execution - % - % Input: - % problem_name: Name of problem from problem_registry.yaml - % solver_name: Name of solver ('sedumi' or 'sdpt3') - % result_file: Path to output JSON file for results - % save_solutions: Boolean flag to save solutions to .mat file - % runner_function: Name of the runner function to use - - try - % 1. Load problem registry and resolve problem file path - [problem_config, file_path] = read_problem_registry(problem_name); - file_type = problem_config.file_type; - - % 2. Load problem data using appropriate loader - if strcmp(file_type, 'mat') - [A, b, c, K] = mat_loader(file_path); - elseif strcmp(file_type, 'dat-s') - [A, b, c, K] = dat_loader(file_path); - else - error('Unsupported file type: %s', file_type); - end - - % 3. Execute solver using dynamic function call - if exist(runner_function, 'file') - [x, y, result] = feval(runner_function, A, b, c, K); - else - error('Solver runner function not found: %s', runner_function); - end - - % 4. Calculate standardized metrics - if ~isempty(x) && ~isempty(y) - result = calculate_solver_metrics(result, x, y, A, b, c, K); - end - - % 5. Save solution vectors if requested - if save_solutions && strcmp(result.status, 'optimal') - save_solutions_if_needed(problem_name, solver_name, x, y, save_solutions); - end - - % 6. Convert result to JSON-compatible format and save - json_result = convert_to_json_result(result); - save_json_safely(json_result, result_file); - - catch ME - % Save error result to JSON file - error_result = create_error_result(ME, solver_name); - save_json_safely(error_result, result_file); - end -end +**MATLAB Solver Interface:** +```python +class MatlabProcessInterface: + def solve(self, problem_name: str, solver_name: str, + timeout: Optional[float] = None, + memory_limit_gb: Optional[float] = None) -> SolverResult ``` -#### MATLAB Solver Runners -```matlab -% scripts/solvers/matlab_octave/sedumi_runner.m -function [x, y, result] = sedumi_runner(A, b, c, K) - % SeDuMi solver runner with standardized interface - - result = initialize_result_structure(); - result.solver_name = 'SeDuMi'; - - try - % Configure SeDuMi options - pars.fid = 0; % Suppress output for benchmarking - - % Execute SeDuMi solver - solve_start_time = tic; - [x, y, info] = sedumi(A, b, c, K, pars); - solve_time = toc(solve_start_time); - - % Map SeDuMi status to standardized format - result.status = map_sedumi_status(info.pinf, info.dinf, info.numerr); - result.solve_time = solve_time; - result.iterations = info.iter; - result.primal_objective_value = NaN; % Calculated by metrics function - result.dual_objective_value = NaN; % Calculated by metrics function - result.duality_gap = NaN; % Calculated by metrics function - result.primal_infeasibility = NaN; - result.dual_infeasibility = NaN; - result.solver_version = 'SeDuMi-1.3.7'; - - catch ME - result.status = 'error'; - result.error_message = ME.message; - x = []; - y = []; - end -end -``` +### Subprocess Architecture Design + +**Key Design Principles:** +- **Process Isolation**: All solver execution in separate subprocesses for crash protection +- **Resource Control**: ulimit-based memory limits and timeout control +- **Unified Error Detection**: Standardized error classification across Python/MATLAB +- **JSON Communication**: Structured data exchange between parent and subprocess -### 4. Database Architecture +--- + +## Database Implementation -#### Unified Results Schema +### Schema Definition ```sql +-- scripts/database/schema.sql CREATE TABLE results ( id INTEGER PRIMARY KEY AUTOINCREMENT, @@ -363,9 +399,9 @@ CREATE TABLE results ( commit_hash TEXT NOT NULL, -- Git commit hash timestamp DATETIME DEFAULT CURRENT_TIMESTAMP, - -- Standardized solver results (unified across Python/MATLAB) + -- Standardized solver results solve_time REAL, -- Execution time in seconds - status TEXT, -- 'OPTIMAL', 'INFEASIBLE', 'UNBOUNDED', etc. + status TEXT, -- 'OPTIMAL', 'INFEASIBLE', 'UNBOUNDED', 'ERROR', 'TIMEOUT', 'UNSUPPORTED' primal_objective_value REAL, -- Primal objective value dual_objective_value REAL, -- Dual objective value duality_gap REAL, -- Primal-dual gap @@ -383,463 +419,78 @@ CREATE INDEX idx_solver_problem ON results(solver_name, problem_name); CREATE INDEX idx_problem_type ON results(problem_type); ``` -#### Standardized Result Format -```python -# scripts/solvers/solver_interface.py -@dataclass -class SolverResult: - """Standardized solver result format for both Python and MATLAB solvers""" - - solve_time: float - status: str # Standardized status strings - primal_objective_value: Optional[float] = None - dual_objective_value: Optional[float] = None - duality_gap: Optional[float] = None - primal_infeasibility: Optional[float] = None - dual_infeasibility: Optional[float] = None - iterations: Optional[int] = None - solver_name: Optional[str] = None - solver_version: Optional[str] = None - additional_info: Optional[Dict[str, Any]] = None - - @classmethod - def create_error_result(cls, error_msg: str, solve_time: float = 0.0, - solver_name: str = None, solver_version: str = None) -> 'SolverResult': - """Create standardized error result""" - - @classmethod - def create_timeout_result(cls, timeout: float, solver_name: str = None, - solver_version: str = None) -> 'SolverResult': - """Create standardized timeout result""" -``` - -### 5. Benchmark Execution Engine - -#### Unified Benchmark Runner -```python -# scripts/benchmark/runner.py -class BenchmarkRunner: - """Main benchmark execution engine with symmetrical solver interfaces""" - - def __init__(self, database_manager: Optional[DatabaseManager] = None, - dry_run: bool = False, save_solutions: bool = False): - """Initialize with unified interfaces""" - - # Initialize all interfaces - self.python_interface = PythonInterface() - self.matlab_interface = MatlabInterface() - self.problem_interface = ProblemInterface() - - # Create explicit solver-to-interface mapping - self._solver_interface_map = self._build_solver_interface_map() - - def run_single_benchmark(self, problem_name: str, solver_name: str) -> None: - """Execute single benchmark with explicit interface routing""" - - # Get the appropriate interface type from mapping - interface_type = self._solver_interface_map.get(solver_name) - - if interface_type == 'python': - result = self.python_interface.solve(problem_name, solver_name) - elif interface_type == 'matlab': - result = self.matlab_interface.solve(problem_name, solver_name) - else: - raise ValueError(f"Unknown solver '{solver_name}'") - - # Store result in database - problem_config = self.problem_interface.get_problem_config(problem_name) - self.store_result(solver_name, problem_name, result, problem_config) - - def _build_solver_interface_map(self) -> Dict[str, str]: - """Build explicit mapping of solver names to interface types""" - mapping = {} - - # Add Python solvers - for solver_name in self.python_interface.get_available_solvers(): - mapping[solver_name] = 'python' - - # Add MATLAB solvers - for solver_name in self.matlab_interface.get_available_solvers(): - mapping[solver_name] = 'matlab' - - return mapping -``` - ---- - -## Data Flow Specifications - -### 1. Problem Loading Flow - -#### External Library Integration -``` -DIMACS Problems (47 problems): -โโโ Source: SeDuMi .mat format -โโโ Loader: scripts/data_loaders/python/mat_loader.py -โโโ MATLAB: scripts/data_loaders/matlab_octave/mat_loader.m -โโโ Format: {A, b, c, K} SeDuMi standard - -SDPLIB Problems (92 problems): -โโโ Source: SDPA .dat-s format -โโโ Loader: scripts/data_loaders/python/dat_loader.py -โโโ MATLAB: scripts/data_loaders/matlab_octave/dat_loader.m -โโโ Format: Converted to SeDuMi {A, b, c, K} -``` - -#### Unified Problem Registry -```yaml -# config/problem_registry.yaml -problem_libraries: - nb: # DIMACS problem - display_name: "NB (DIMACS)" - file_path: "problems/DIMACS/data/ANTENNA/nb.mat.gz" - file_type: "mat" - library_name: "DIMACS" - for_test_flag: true - - arch0: # SDPLIB problem - display_name: "ARCH0 (SDPLIB)" - file_path: "problems/SDPLIB/data/arch0.dat-s" - file_type: "dat-s" - library_name: "SDPLIB" - for_test_flag: true -``` - -### 2. Solver Execution Flow - -#### Python Solver Flow -``` -PythonInterface.solve() -โโโ 1. Create solver instance (cvxpy_clarabel, etc.) -โโโ 2. Load problem data via ProblemInterface -โโโ 3. Validate solver-problem compatibility -โโโ 4. Execute solver.solve(problem_data) -โโโ 5. Add problem_class to result.additional_info -โโโ 6. Return standardized SolverResult -``` - -#### MATLAB Solver Flow -``` -MatlabInterface.solve() -โโโ 1. Validate MATLAB solver configuration -โโโ 2. Create temporary result file -โโโ 3. Execute subprocess: octave --eval "matlab_interface(...)" -โโโ 4. matlab_interface.m execution: -โ โโโ Load problem via mat_loader.m or dat_loader.m -โ โโโ Execute sedumi_runner.m or sdpt3_runner.m -โ โโโ Calculate standardized metrics -โ โโโ Save JSON result to temporary file -โโโ 5. Read JSON result and convert to SolverResult -โโโ 6. Load problem data to get problem_class -โโโ 7. Add problem_class to result.additional_info -โโโ 8. Return standardized SolverResult -``` - -### 3. Result Storage and Processing +### Database Operations -#### Database Storage Flow -```python -def store_result(self, solver_name: str, problem_name: str, - result: SolverResult, problem_config: Dict[str, Any]) -> None: - """Store result with unified metadata extraction""" - - # Determine problem library and type - problem_library = problem_config.get('library_name', 'internal') - - # Get problem type from result.additional_info (set by interfaces) - if hasattr(result, 'additional_info') and result.additional_info: - problem_type = result.additional_info.get('problem_class', 'UNKNOWN') - else: - problem_type = problem_config.get('problem_type', 'UNKNOWN') - - # Store in database with standardized schema - self.db.store_result( - solver_name=solver_name, - solver_version=result.solver_version, - problem_library=problem_library, - problem_name=problem_name, - problem_type=problem_type, - # ... all standardized fields - ) -``` +**Core Operations:** +- **Result Storage**: Store SolverResult with complete metadata (environment, version, timing) +- **Query Interface**: Retrieve results by solver, problem, or time period +- **Version Tracking**: Maintain historical data with Git commit association --- -## Implementation Guidelines - -### 1. Fair Benchmarking Principles - -#### Minimal Configuration Approach -```python -# Python solvers - use defaults with verbose=False only -cvxpy_options = {'verbose': False} -scipy_options = {'method': 'highs', 'verbose': False} - -# MATLAB solvers - use defaults with output suppression only -sedumi_options = {'fid': 0} # Suppress output -sdpt3_options = {'printlevel': 0} # Suppress output -``` - -#### Standardized Metrics Calculation -```matlab -% scripts/solvers/matlab_octave/matlab_interface.m -function result = calculate_solver_metrics(result, x, y, A, b, c, K) - % Calculate standardized metrics for fair comparison - - % Primal objective: c'*x - if ~isempty(x) && ~isempty(c) - result.primal_objective_value = c(:)' * x(:); - end - - % Dual objective: b'*y - if ~isempty(y) && ~isempty(b) - result.dual_objective_value = b(:)' * y(:); - end - - % Duality gap: |primal - dual| - if ~isnan(result.primal_objective_value) && ~isnan(result.dual_objective_value) - result.duality_gap = abs(result.primal_objective_value - result.dual_objective_value); - end - - % Primal infeasibility: ||Ax - b|| / (1 + ||b||) - if ~isempty(x) && ~isempty(A) && ~isempty(b) - primal_residual = A * x - b; - result.primal_infeasibility = norm(primal_residual) / (1 + norm(b)); - end - - % Dual infeasibility: cone projection distance - % (Implementation specific to cone structure K) -end -``` - -### 2. Error Handling and Resilience - -#### Graceful Degradation Strategy -```python -# Individual solver failures don't affect overall system -try: - result = solver_interface.solve(problem_name, solver_name) - self.store_result(solver_name, problem_name, result, problem_config) -except Exception as e: - error_msg = f"Solver {solver_name} failed on {problem_name}: {e}" - logger.error(error_msg) - self.store_error_result(solver_name, problem_name, error_msg, problem_config) - # Continue with next solver/problem combination -``` - -#### MATLAB-Specific Error Handling -```python -def _call_matlab_interface(self, problem_name: str, matlab_solver: str, - runner_function: str, timeout: float) -> SolverResult: - """Call MATLAB with comprehensive error handling""" - - try: - # Execute MATLAB process with timeout - process = subprocess.run([ - 'octave', '--eval', matlab_command - ], timeout=timeout, capture_output=True, text=True) - - # Check for MATLAB execution errors - if process.returncode != 0: - return SolverResult.create_error_result( - f"MATLAB execution failed: {process.stderr}" - ) - - # Read result from temporary JSON file - with open(result_file, 'r') as f: - matlab_result = json.load(f) - - # Convert to standardized SolverResult - return self._convert_matlab_result(matlab_result, solve_time) - - except subprocess.TimeoutExpired: - return SolverResult.create_timeout_result(timeout) - except Exception as e: - return SolverResult.create_error_result(str(e)) - finally: - # Always cleanup temporary files - cleanup_temporary_files() -``` +## Report Generation -### 3. Performance Optimization +**Report Types:** +- **Dashboard**: Interactive HTML reports with Bootstrap 5 + Chart.js +- **Results Matrix**: Problems ร Solvers performance matrix +- **Data Export**: JSON/CSV formats for research use -#### Lazy Initialization Pattern -```python -class PythonInterface: - def __init__(self): - """Initialize interface without creating solver instances""" - self._solver_cache = {} # Cache for expensive solver objects - - def create_solver(self, solver_name: str) -> SolverInterface: - """Create solver instance with caching""" - if solver_name not in self._solver_cache: - solver_class = self.SOLVER_CONFIGURATIONS[solver_name] - self._solver_cache[solver_name] = solver_class(...) - return self._solver_cache[solver_name] -``` - -#### Efficient Database Queries -```python -# Use indexed queries for latest results -def get_latest_results(self) -> List[BenchmarkResult]: - """Get latest results using optimized query""" - query = """ - SELECT * FROM results - WHERE (commit_hash, environment_info, timestamp) IN ( - SELECT commit_hash, environment_info, MAX(timestamp) - FROM results - GROUP BY solver_name, problem_name - ) - ORDER BY problem_library, problem_name, solver_name - """ - return self.execute_query(query) -``` +**Output Formats:** +- HTML reports published to GitHub Pages +- JSON/CSV data files for programmatic access --- -## Testing and Validation +## Fair Benchmarking Implementation -### 1. System Validation -```bash -# Complete environment validation -python main.py --validate-verbose +*For benchmarking philosophy and principles, see [basic_design.md](basic_design.md#design-philosophy).* -# Solver-specific validation -python main.py --validate --solvers cvxpy_clarabel,matlab_sedumi - -# Problem-specific validation -python main.py --validate --problems nb,arch0 -``` - -### 2. Integration Testing -```python -# Test Python-MATLAB parity on same problems -def test_solver_parity(): - problem_name = "nb" # SOCP problem - - # Run Python solver - python_result = python_interface.solve(problem_name, "cvxpy_clarabel") - - # Run MATLAB solver - matlab_result = matlab_interface.solve(problem_name, "matlab_sedumi") - - # Compare results (allowing numerical tolerance) - assert abs(python_result.primal_objective_value - - matlab_result.primal_objective_value) < 1e-6 -``` - -### 3. Performance Benchmarking -```bash -# Measure execution time across all solvers -python tests/performance/benchmark_matlab_vs_python.py - -# Memory usage analysis -python tests/performance/memory_profiling.py -``` +**Technical Implementation:** +- Solver configuration limited to output suppression (`verbose: false`) +- Unified resource limits via subprocess isolation +- Comprehensive version tracking in database metadata --- -## Deployment and Maintenance +## System Interface -### 1. GitHub Actions Integration -```yaml -# .github/workflows/benchmark.yml -name: Solver Benchmark -on: - schedule: - - cron: '0 2 * * 1' # Weekly Monday 2AM - workflow_dispatch: - -jobs: - benchmark: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: '3.12' - - name: Setup Octave - run: sudo apt-get install octave - - name: Install dependencies - run: pip install -r requirements.txt - - name: Run benchmarks - run: python main.py --all - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/pages -``` +### Timeout Control +- **Default timeout**: 120 seconds for most problems +- **Configurable limits**: Adjustable via command-line arguments +- **Subprocess isolation**: Timeout enforcement at process level -### 2. Monitoring and Alerting -```python -# Monitor solver success rates -def monitor_solver_health(): - """Alert if solver success rate drops below threshold""" - results = get_latest_results() - - for solver_name in get_available_solvers(): - solver_results = [r for r in results if r.solver_name == solver_name] - success_rate = len([r for r in solver_results if r.status == 'OPTIMAL']) / len(solver_results) - - if success_rate < 0.8: # Alert threshold - send_alert(f"Solver {solver_name} success rate: {success_rate:.1%}") -``` +### Command-Line Interface -### 3. Data Backup and Recovery -```bash -# Automated database backup -cp database/results.db database/results_$(date +%Y%m%d).backup +**Argument Processing:** +- **Problem Selection**: `--problems` (specific), `--library_names` (by library) +- **Solver Selection**: `--solvers` (specific), defaults to all available +- **Resource Control**: `--timeout` (seconds), propagated through all execution layers +- **Execution Modes**: `--benchmark`, `--validate`, `--report`, `--dry-run` -# Recovery from backup -cp database/results_20241201.backup database/results.db -``` +*For usage examples, see [basic_design.md](basic_design.md#problem-library-setup).* --- -## Future Extensions +## Development Guidelines -### 1. Additional Solver Support -```python -# Adding new solver types -class MOSEKInterface: - """Interface for MOSEK commercial solver""" - -class GurobiInterface: - """Interface for Gurobi commercial solver""" -``` +### Adding New Python Solvers +1. **Add configuration** to `PYTHON_SOLVER_CONFIGS` in `python_interface.py` +2. **Create runner class** if needed (or extend existing `CvxpyRunner`) +3. **Update problem type compatibility** in configuration +4. **Test with validation framework** -### 2. Advanced Analytics -```python -# Performance trend analysis -def analyze_solver_trends(): - """Analyze solver performance over time""" - -# Convergence analysis -def analyze_convergence_patterns(): - """Study solver convergence behavior""" -``` +### Adding New MATLAB Solvers +1. **Create solver runner** `{solver}_runner.m` following standard interface +2. **Add configuration** to `MATLAB_SOLVER_CONFIGS` in `matlab_interface.py` +3. **Implement MEX compilation** in `setup_matlab_solvers.m` +4. **Test with validation framework** -### 3. Cloud Deployment -```yaml -# Kubernetes deployment configuration -apiVersion: apps/v1 -kind: CronJob -metadata: - name: solver-benchmark -spec: - schedule: "0 2 * * 1" - jobTemplate: - spec: - template: - spec: - containers: - - name: benchmark - image: solver-benchmark:latest - command: ["python", "main.py", "--all"] -``` +### Adding New Problem Formats +1. **Create loader classes** in both `python/` and `matlab/` directories +2. **Add format mapping** to `FORMAT_LOADERS` in `problem_interface.py` +3. **Update problem registry** to include new format problems +4. **Implement format conversion** to unified SeDuMi format --- -This technical design provides a comprehensive foundation for the optimization solver benchmark system, supporting both current functionality and future extensions while maintaining the core principles of fair benchmarking and production reliability. \ No newline at end of file +This detailed design provides comprehensive implementation guidance while maintaining focus on research applications and eliminating unnecessary production complexity. \ No newline at end of file diff --git a/docs/development/history.md b/docs/development/history.md deleted file mode 100644 index 351e75f..0000000 --- a/docs/development/history.md +++ /dev/null @@ -1,610 +0,0 @@ -# Development History - -This document provides a consolidated record of all completed development phases and tasks for the optimization solver benchmark system. - ---- - -## Phase 1: MVP Foundation (COMPLETED โ ) -**Timeline**: November - December 2024 -**Status**: All 20 tasks successfully implemented - -### Overview -Phase 1 established a solid foundation for optimization solver benchmarking with Python solvers, GitHub Actions CI/CD, and comprehensive reporting. The MVP provides a functional baseline for fair, unbiased solver comparison. - -### Achievements -- โ **Python Solver Ecosystem**: SciPy and CVXPY integration with default backends -- โ **GitHub Actions CI/CD**: Automated benchmarking with manual triggers and cross-platform support -- โ **GitHub Pages Reports**: Interactive HTML dashboards with Bootstrap 5 and Chart.js -- โ **Validation Framework**: Comprehensive data quality checks and error handling -- โ **Comprehensive Documentation**: Setup guides, user manuals, and developer documentation -- โ **Fair Baseline Benchmarking**: Minimal configuration approach using solver defaults - -### Technical Foundation Established -- **Languages**: Python 3.12+ -- **Solvers**: SciPy (LP/QP), CVXPY (default backends) -- **Problem Types**: Linear Programming (LP), Quadratic Programming (QP) -- **Storage**: SQLite database with structured schema -- **CI/CD**: GitHub Actions with Pages deployment -- **Reporting**: Bootstrap 5 + Chart.js interactive dashboards -- **Configuration**: YAML-based solver and benchmark settings - -### Key Milestones -1. **Project Foundation** (Tasks 1-5): Repository structure, configuration system, database schema -2. **Solver Integration** (Tasks 6-10): Python solver implementations with standardized interfaces -3. **Problem Management** (Tasks 11-15): Problem loading, validation, and registry system -4. **Reporting System** (Tasks 16-20): HTML generation, GitHub Pages deployment, comprehensive dashboards - ---- - -## Phase 2: Data Publishing Platform (COMPLETED โ ) -**Timeline**: December 2024 - March 2025 -**Focus**: Multi-backend solvers, expanded problem types, data publishing, production readiness - -### Achievements -- โ **Expanded solver ecosystem** with 9+ open-source solvers via CVXPY backends (CLARABEL, SCS, ECOS, OSQP, CVXOPT, SDPA, SCIP, HiGHS) -- โ **External library integration** with DIMACS (47 problems) and SDPLIB (92+ problems) -- โ **Data publishing** with clean JSON exports and interactive HTML visualizations -- โ **Production readiness** with comprehensive testing, monitoring, and reliability features -- โ **Professional reporting** suitable for research publication and external evaluation - -### Completed Tasks (62 Total) - ---- - -## Phase 3: System Simplification and Reliability (COMPLETED โ ) -**Timeline**: March - June 2025 -**Status**: All simplification tasks successfully implemented - -### Overview -Phase 3 focused on simplifying the system architecture to ensure reliability and maintainability. This phase removed complex features, cleaned up the codebase, and established a local-first development model with minimal CI overhead. - -### Achievements -- โ **Architecture Simplification**: Removed Octave support, simplified GitHub Actions workflows -- โ **Local-First Development**: Benchmarks run locally, CI only publishes pre-built artifacts -- โ **Code Cleanup**: Comprehensive audit and removal of unused modules, utilities, and dependencies -- โ **Configuration Streamlining**: Unified timeout management, simplified problem sets -- โ **Test Organization**: Proper test directory structure and organized test files -- โ **Documentation Updates**: Updated design documents and created local development guides - -### Technical Improvements -- **Simplified CI/CD**: GitHub Actions only publish static files, no benchmark execution -- **Unified Configuration**: Single source of truth for timeout settings in `solvers.yaml` -- **Clean Codebase**: Removed 15+ unused modules (~1,500+ lines of dead code) -- **Local Workflow**: `python main.py --all` runs complete benchmarking locally -- **Streamlined Dependencies**: Consolidated from 4 requirements files to 2 essential ones - -### Simplification Tasks Completed - -#### Sprint 1: Core Simplification -**Task 1.1: Remove Octave Support** โ -- **Objective**: Eliminate Octave integration to reduce complexity -- **Scope**: Remove all Octave-related code and configurations -- **Success Criteria**: - - โ Delete `scripts/solvers/octave/` directory - - โ Remove Octave references from `config/solvers.yaml` - - โ Delete `config/octave_config.yaml` - - โ Remove `.github/workflows/octave_test.yml` - - โ Update documentation to reflect Python-only approach -- **Files Modified**: Multiple files (deletion) -- **Test**: Run local benchmark without errors โ -- **Estimated Time**: 1-2 hours - -**Task 1.2: Simplify GitHub Actions Workflows** โ -- **Objective**: Modify workflows to only publish pre-built files -- **Scope**: Update deploy-pages.yml to remove benchmark execution -- **Success Criteria**: - - โ Remove benchmark execution from `deploy-pages.yml` - - โ Keep only static file publishing functionality - - โ Ensure PR preview still works with lightweight benchmark - - โ Remove unused workflow parameters (timeout, etc.) -- **Files Modified**: `.github/workflows/deploy-pages.yml` -- **Test**: Successful deployment of pre-built docs/ โ -- **Estimated Time**: 1 hour - -**Task 1.3: Update Configuration for Local-Only** โ -- **Objective**: Simplify configuration to focus on local execution -- **Scope**: Remove external storage and complex features from config -- **Success Criteria**: - - โ Update `config/benchmark_config.yaml` to remove external storage - - โ Remove `problems/medium_set/` and `problems/large_set/` - - โ Keep only `problems/light_set/` for local execution - - โ Update `config/solvers.yaml` to remove Octave references -- **Files Modified**: Configuration files in `config/` -- **Test**: Load configuration without errors โ -- **Estimated Time**: 30 minutes - -#### Sprint 2: Code Cleanup -**Task 2.1: Organize Test and Debug Files** โ -- **Objective**: Move scattered test and debug files to proper test directory -- **Scope**: Clean up root directory by organizing test and debug files -- **Success Criteria**: - - โ Create `tests/unit/`, `tests/integration/`, `tests/fixtures/`, `tests/debug/` - - โ Move `test_*.py` files from root to appropriate test directories - - โ Move `debug_*.py` files to `tests/debug/` or delete if obsolete - - โ Update test runner configurations if needed -- **Files Modified**: Root directory test and debug files -- **Test**: All tests run from new locations โ -- **Estimated Time**: 1 hour - -**Task 2.2: Remove Unused Code and Dependencies** โ -- **Objective**: Clean up unused modules and reduce complexity -- **Scope**: Audit codebase for unused components -- **Success Criteria**: - - โ Remove unused imports across all Python files - - โ Delete unused utility functions - - โ Clean up `requirements/` files to remove unnecessary dependencies - - โ Remove unused configuration templates -- **Files Modified**: Multiple Python files, requirements files -- **Test**: System functionality unchanged after cleanup โ -- **Estimated Time**: 2 hours - -**Task 2.3: Simplify Main Interface** โ -- **Objective**: Ensure main.py works reliably for local execution -- **Scope**: Verify and simplify main.py command line interface -- **Success Criteria**: - - โ Verify all command line arguments work correctly - - โ Remove any unused or problematic arguments - - โ Ensure data publishing integration works properly - - โ Add clear error messages for common issues -- **Files Modified**: `main.py` -- **Test**: All main.py operations work without errors โ -- **Estimated Time**: 1 hour - -#### Sprint 3: Documentation and Validation -**Task 3.1: Update Architecture Documentation** โ -- **Objective**: Update design documents to reflect simplified architecture -- **Scope**: Revise all design documents for new simplified approach -- **Success Criteria**: - - โ Update `docs/development/detail_design.md` with simplified architecture - - โ Update `README.md` with simplified setup instructions - - โ Remove outdated guides about Octave integration -- **Files Modified**: Architecture and design documentation -- **Test**: Documentation accurately reflects current system โ -- **Estimated Time**: 2 hours - -**Task 3.2: Create Local Development Guide** โ -- **Objective**: Document the new local-first workflow -- **Scope**: Create clear instructions for local benchmark execution -- **Success Criteria**: - - โ Document local benchmark execution process - - โ Explain how to generate and commit reports - - โ Document GitHub Pages publishing workflow - - โ Create troubleshooting guide for common issues -- **Files Modified**: `docs/guides/LOCAL_DEVELOPMENT.md` (new) -- **Test**: Follow guide to successfully run local benchmarks โ -- **Estimated Time**: 1-2 hours - -**Task 4.1: Test Complete Local Workflow** โ -- **Objective**: Verify entire local workflow works end-to-end -- **Scope**: Test benchmark execution, report generation, and publishing -- **Success Criteria**: - - โ Run `python main.py --all` successfully - - โ Generate clean HTML reports with proper navigation - - โ Commit generated files to repository - - โ Verify GitHub Actions deploys static files correctly -- **Files Modified**: None (testing only) -- **Test**: Complete workflow from benchmark to published site โ -- **Estimated Time**: 1 hour - -**Task 4.2: Test PR Preview Functionality** โ -- **Objective**: Ensure PR preview still works with simplified system -- **Scope**: Test PR preview workflow with lightweight benchmark -- **Success Criteria**: - - โ Create test PR to trigger preview workflow - - โ Verify preview deploys to correct subdirectory - - โ Confirm preview shows different data from main site - - โ Test preview cleanup when PR is closed -- **Files Modified**: None (testing only) -- **Test**: PR preview workflow completes successfully โ -- **Estimated Time**: 30 minutes - ---- - -## Phase 6: MATLAB/Octave Solver Integration (COMPLETED โ ) -**Timeline**: June 2025 -**Status**: Complete MATLAB integration with production-ready reliability - -### Overview -Phase 6 successfully implemented MATLAB/Octave optimization solver integration (SeDuMi and SDPT3) using a loose-coupling architecture with Python-MATLAB bridge via JSON data exchange. The integration maintains fair benchmarking principles while expanding solver coverage to include the MATLAB ecosystem. - -### Major Achievements -- โ **MATLAB Solver Integration**: SeDuMi and SDPT3 solvers fully integrated -- โ **Symmetrical Interface Architecture**: Unified Python/MATLAB solver interfaces -- โ **Problem Loading Unification**: MAT and DAT loaders in both Python and MATLAB -- โ **Architecture Simplification**: Reduced coupling, streamlined interfaces -- โ **Field Name Consistency**: Unified field naming across Python/MATLAB -- โ **Dual Calculation Fixes**: Resolved CVXPY duality calculation issues -- โ **Database Improvements**: Fixed problem_type classification accuracy - -### Technical Enhancements - -#### Sprint 1: MATLAB Data Infrastructure โ -- **matlab_json_formatter.m**: Standardized JSON output formatting -- **matlab_version_detection.m**: Version detection utilities -- **Enhanced loaders**: mat_loader.m and dat_loader.m with error handling - -#### Sprint 2: Complete Solver Integration โ -- **SeDuMi Integration**: Full SeDuMi solver with standardized interface -- **SDPT3 Integration**: Complete SDPT3 solver implementation -- **Git Submodules**: Proper external solver dependency management - -#### Sprint 3: Architecture Simplification โ -- **Unified Interfaces**: Single entry point matlab_interface.m -- **Dynamic Function Calls**: feval() for runtime solver selection -- **Reduced File Dependencies**: From 4-file to 2-file modification for new solvers - -### Current System Statistics (Post-Phase 6) -``` -Solver Coverage: 11 total solvers -โโโ Python Solvers: 9 (SciPy, CVXPY backends) -โโโ MATLAB Solvers: 2 (SeDuMi, SDPT3) - -Problem Type Coverage: -โโโ LP: 100% success rate (all solvers) -โโโ QP: 100% success rate (all solvers) -โโโ SOCP: ~43% success rate (CLARABEL, SCS, ECOS, SeDuMi, SDPT3) -โโโ SDP: ~29% success rate (CLARABEL, SCS, SeDuMi, SDPT3) - -External Libraries: 139 problems -โโโ DIMACS: 47 problems (SeDuMi .mat format) -โโโ SDPLIB: 92 problems (SDPA .dat-s format) -``` - -### Code Quality Improvements - -#### Database and Result Consistency โ -- **Fixed problem_type=UNKNOWN**: Added problem_class extraction to interfaces -- **Unified field names**: primal_objective_value, dual_objective_value, duality_gap -- **CVXPY duality fixes**: Resolved SOC projection dimension mismatches - -#### Architecture Cleanup โ -- **Simplified BenchmarkRunner**: Removed registry dependencies -- **Clean main.py**: Streamlined entry point without unused functions -- **Test reorganization**: Updated import paths and removed obsolete tests -- **macOS cleanup**: Removed .DS_Store files and added .gitignore entries - -### Documentation Updates โ -- **Unified Technical Design**: Merged MATLAB integration into detail_design.md -- **Comprehensive Architecture**: Complete Python/MATLAB interface specifications -- **Implementation Guidelines**: Fair benchmarking principles and error handling - -### Final System Architecture -``` -BenchmarkRunner (Unified) -โโโ PythonInterface -โ โโโ cvxpy_clarabel, cvxpy_scs, cvxpy_ecos, cvxpy_osqp -โ โโโ scipy_linprog -โโโ MatlabInterface -โ โโโ matlab_sedumi -โ โโโ matlab_sdpt3 -โโโ ProblemInterface - โโโ MATLoader (DIMACS .mat files) - โโโ DATLoader (SDPLIB .dat-s files) - โโโ MPSLoader (LP .mps files) - โโโ QPSLoader (QP .qps files) - โโโ PythonLoader (Python definitions) -``` - -Phase 6 represents the successful completion of multi-language solver integration while maintaining system reliability, fair benchmarking principles, and production readiness. The system now supports both Python and MATLAB solvers with unified interfaces and consistent result formats. - -**Task 4.3: Validate Published Site** โ -- **Objective**: Ensure published GitHub Pages site works correctly -- **Scope**: Test all aspects of published site functionality -- **Success Criteria**: - - โ All HTML pages load without errors - - โ Navigation links work correctly - - โ Data files are accessible - - โ Responsive design works on mobile - - โ No broken images or CSS -- **Files Modified**: None (testing only) -- **Test**: Published site fully functional โ -- **Estimated Time**: 30 minutes - -#### Sprint 4: Final Polish -**Task 5.1: Update README and Documentation** โ -- **Objective**: Ensure all documentation reflects simplified system -- **Scope**: Final documentation review and updates -- **Success Criteria**: - - โ Update main README with simplified setup instructions - - โ Remove references to removed features - - โ Add badges and links to published site - - โ Update license and contribution information -- **Files Modified**: `README.md`, various documentation files -- **Test**: Documentation is clear and accurate โ -- **Estimated Time**: 1 hour - -**Task 5.2: Clean Up Repository Structure** โ -- **Objective**: Final cleanup of repository organization -- **Scope**: Ensure clean, professional repository structure -- **Success Criteria**: - - โ Remove any remaining temporary files - - โ Update `.gitignore` to exclude local-only files - - โ Ensure consistent file naming conventions - - โ Verify no sensitive information is committed -- **Files Modified**: Various files, `.gitignore` -- **Test**: Repository looks professional and clean โ -- **Estimated Time**: 30 minutes - -### Final Results of Simplification Phase -- **31 files removed**: 4,799 lines of code eliminated -- **389 lines added**: Streamlined configuration and validation -- **Preserved Core Functionality**: All essential features remain intact -- **Essential Documentation Maintained**: Kept `history.md` and `tasks.md` as required by CLAUDE.md -- **Configuration Cleanup**: Unified timeout management, removed redundant settings -- **Workflow Optimization**: Local-first development with lightweight CI validation - -### Key Lessons Learned -1. **Simplicity Over Features**: Removing complexity improved reliability significantly -2. **Local-First Approach**: Development velocity increased with local benchmarking -3. **Configuration Consolidation**: Single source of truth prevents conflicts -4. **Comprehensive Cleanup**: Systematic auditing revealed significant dead code -5. **Documentation Preservation**: Essential documentation must be maintained per CLAUDE.md requirements - -*Phase 3 Complete: June 2025* - -#### Core System Enhancements (Tasks 21-50) -- โ **CVXPY Multi-Backend Support** (Task 21): Added CLARABEL, SCS, ECOS, OSQP backends -- โ **Backend Selection & Validation** (Task 22): Solver capability matrix and intelligent selection -- โ **Enhanced Configuration** (Task 23): Backend-specific parameters and diagnostics -- โ **SOCP Support** (Task 24): Second-Order Cone Programming with example problems -- โ **SDP Support** (Task 25): Semidefinite Programming via Python problem definitions -- โ **Problem Classification** (Task 26): Automatic type detection and complexity scoring -- โ **External Storage Framework** (Task 27): Basic URL-based problem storage -- โ **Data Publishing** (Task 28): JSON/CSV export with structured data formats -- โ **Simple Analytics** (Task 29): Basic statistical analysis and performance metrics -- โ **Octave Integration** (Task 30): MATLAB-compatible solver environment -- โ **Testing Framework** (Task 31): Automated validation and quality assurance -- โ **GitHub Actions Optimization** (Task 32): Improved CI/CD workflows -- โ **Documentation Updates** (Task 33): Updated guides and architectural documentation -- โ **Validation Enhancements** (Task 34): Improved data quality checks -- โ **Configuration Refinements** (Task 35): Enhanced YAML-based configuration system - -#### Phase 2 Optimization & Realignment (Tasks 36-50) -- โ **Architecture Review** (Task 36): Comprehensive system architecture evaluation -- โ **Core Mission Realignment** (Task 37): Refocused on "regularly benchmark publicly available solvers and publish results as data" -- โ **Simplified Advanced Analytics** (Task 38): Moved complex features to optional status -- โ **Enhanced Data Publishing** (Task 39): Improved JSON/CSV export capabilities -- โ **Production Readiness** (Task 40): Essential monitoring and reliability features -- โ **Documentation Consolidation** (Task 41): Unified and consistent documentation -- โ **Testing Infrastructure** (Task 42): Comprehensive automated testing -- โ **Performance Optimization** (Task 43): Improved benchmark execution efficiency -- โ **Configuration Management** (Task 44): Enhanced solver and benchmark configuration -- โ **Quality Assurance** (Task 45): Improved validation and error handling -- โ **Integration Testing** (Task 46): End-to-end workflow validation -- โ **Documentation Updates** (Task 47): Updated user guides and developer documentation -- โ **System Stabilization** (Task 48): Bug fixes and reliability improvements -- โ **Deployment Optimization** (Task 49): Improved GitHub Actions and Pages deployment -- โ **Phase 2 Completion** (Task 50): Final Phase 2 integration and testing - -#### Final Release Preparation (Tasks 51-62) -- โ **QSQP Package Cleanup** (Tasks 51-52): Removed non-existent qsqp package references -- โ **Python Version Standardization** (Task 53): Aligned Python versions across workflows -- โ **Workflow Enhancement** (Task 54): Added controllable arguments to octave_test.yml -- โ **Performance Tuning** (Task 55): Set parallel_jobs to 1 for fair CPU utilization -- โ **Ubuntu Version Transparency** (Task 56): Show specific Ubuntu version in reports -- โ **Timezone Information** (Task 57): Added comprehensive timezone detection -- โ **Enhanced HTML Reports** (Task 58): Created wide problemsรsolvers comparison matrix -- โ **Report Format Conversion** (Tasks 59-60): Converted statistical and performance reports to HTML -- โ **Author Attribution** (Task 61): Added author information to all GitHub Pages -- โ **Final Documentation** (Task 62): Complete documentation and production readiness - ---- - -## Phase 3: Meaningful Public Reporting System (COMPLETED โ ) -**Timeline**: June 2025 -**Status**: All 5 sprints successfully implemented - Production Ready - -### Overview -Phase 3 transformed the benchmark system into a production-ready public reporting platform with external problem libraries, comprehensive solver version tracking, and professional-grade HTML reports suitable for research publication. - -### Major Achievement: Complete System Transformation -Successfully implemented the user's core request for a "meaningful public reporting system" that demonstrates solver performance on real-world optimization problems from established libraries. - -### โ Sprint Completion Status -- **Sprint 5**: โ Database Schema Enhancement - Enhanced SQLite with version tracking -- **Sprint 6**: โ Solver Version Detection - Complete backend version detection and Git tracking -- **Sprint 7**: โ External Library Integration - DIMACS (47) + SDPLIB (92) problems integrated -- **Sprint 8**: โ Enhanced Reporting System - Professional HTML with structure analysis -- **Sprint 9**: โ Documentation & Polish - Complete guides and production-ready documentation - -### ๐ Key Deliverables Achieved -- **139 Total Problems**: Real-world optimization challenges from established libraries -- **5 Major Solvers**: CLARABEL, SCS, ECOS, OSQP, SciPy with automatic version detection -- **External Libraries**: DIMACS and SDPLIB successfully integrated via git clone approach -- **Problem Structure Analysis**: Automatic variable/constraint counting and classification -- **CVXPY Integration**: External problem conversion enabling solver compatibility -- **Professional Reports**: Production-ready HTML reports with comprehensive metadata -- **Version Tracking**: Complete solver backend and Git commit recording -- **Comprehensive Documentation**: Setup guides and technical documentation - -### Technical Achievements -``` -Problem Coverage: -- DIMACS Library: 47 problems (SeDuMi .mat format) -- SDPLIB Library: 92 problems (SDPA .dat-s format) -- Internal Problems: 6 synthetic test cases -- Total Coverage: 145 problems across 4 problem types - -Solver Performance: -- Problem Type | Results | Success Rate | Top Performer -- LP | 12 | 100% | Multiple -- QP | 6 | 100% | Multiple -- SOCP | 31 | ~43% | CLARABEL, SCS, ECOS -- SDP | 38 | ~29% | CLARABEL, SCS - -System Capabilities: -- Automatic problem structure analysis and classification -- Complete solver version tracking and Git commit recording -- Professional HTML reports with library source attribution -- Comprehensive JSON/CSV data exports for external consumption -- Production-ready documentation and setup guides -``` - -### Production Impact -The system successfully demonstrates: -- **Real-World Validation**: Testing on established optimization problem libraries -- **Research Readiness**: Publication-quality reports with comprehensive metadata -- **Public Transparency**: Professional dashboards suitable for external sharing -- **Reproducible Science**: Complete version tracking and Git commit recording -- **Fair Comparison**: Minimal configuration using solver defaults - -### System Status: Production Ready โ -The meaningful public reporting system is now fully operational and suitable for: -- Research publication and external evaluation -- Public demonstration of solver capabilities -- Transparent benchmarking of optimization solvers -- Community contribution and extension - -*Phase 3 Complete: June 2025 - Meaningful Public Reporting System Achieved* -- โ **Documentation Reorganization** (Task 62): Reorganized root directory Markdown files - -### Current Solver Coverage -``` -Problem Type | Solver Count | Backends -LP | 6 | SciPy + CLARABEL + SCS + ECOS + OSQP + (CVXPY default) -QP | 6 | SciPy + CLARABEL + SCS + ECOS + OSQP + (CVXPY default) -SOCP | 4 | CLARABEL + SCS + ECOS + OSQP -SDP | 2 | CLARABEL + SCS -``` - -### Technical Achievements -- **Multi-Backend CVXPY**: 8+ open-source solvers with standardized interfaces -- **Expanded Problem Types**: LP, QP, SOCP, SDP support with example problems -- **Data Publishing**: Clean JSON/CSV exports for research use -- **GitHub Actions Optimization**: Streamlined CI/CD with configurable parameters -- **Enhanced Reporting**: Interactive HTML dashboards with comprehensive analytics -- **External Storage**: Framework for large problem sets via URL references -- **Octave Integration**: MATLAB-compatible optimization environment -- **Production Features**: Testing, monitoring, and reliability enhancements - ---- - -## Phase 4: Architecture Optimization (COMPLETED โ ) -**Timeline**: June 2025 -**Status**: All optimization tasks successfully implemented - -### Overview -Phase 4 focused on architecture simplification and optimization to improve maintainability and testing workflows. This phase removed complexity, streamlined the codebase, and added essential development features while maintaining production readiness. - -### Achievements -- โ **Architecture Simplification**: Direct registry iteration replacing helper functions -- โ **Clean CLI Separation**: Distinct --library_names vs --problems filtering -- โ **Testing Infrastructure**: --dry-run mode for development without database pollution -- โ **Database Enhancement**: Memo column for result annotations -- โ **Focused Problem Set**: External libraries only (removed internal synthetic problems) -- โ **Streamlined Loaders**: MAT/DAT loaders only (removed MPS/QPS/Python loaders) -- โ **Documentation Updates**: Complete documentation refresh to reflect simplified architecture - -### Technical Improvements -- **Simplified CLI**: `--library_names DIMACS,SDPLIB` for library filtering, `--problems nb,arch0` for specific problems -- **Dry-Run Mode**: `--dry-run` flag enables testing solver behavior without database writes -- **Memo Support**: Optional memo field in database for result annotations and notes -- **External-Only Focus**: 139+ problems from DIMACS + SDPLIB (removed 6 internal synthetic problems) -- **Streamlined Codebase**: Removed unused loaders and simplified import structure -- **Direct Registry Access**: main.py directly loads YAML registries without helper functions - -### Key Deliverables -- **Simplified Architecture**: Removed list_available_problems helper, direct YAML iteration -- **Enhanced Testing**: --dry-run mode for safe development and solver validation -- **Database Annotation**: memo TEXT column for user notes and result metadata -- **External Library Focus**: Production system focused on real-world problems only -- **Streamlined Maintenance**: Reduced codebase complexity while preserving functionality -- **Updated Documentation**: All docs reflect current simplified architecture - -### Files Modified -- **Core System**: main.py, scripts/benchmark/runner.py -- **Database**: scripts/database/schema.sql, scripts/database/database_manager.py -- **Configuration**: config/problem_registry.yaml (removed internal problems) -- **Documentation**: tasks.md, detail_design.md, basic_design.md, history.md -- **Cleanup**: Removed problems/light_set/, mps_loader.py, qps_loader.py, python_loader.py - -### Impact -- **Improved Maintainability**: Simplified architecture easier to understand and extend -- **Better Testing**: Dry-run mode enables safe development without database side effects -- **Production Focus**: External libraries provide real-world validation -- **Enhanced Documentation**: Accurate documentation matching implementation -- **Streamlined Development**: Direct registry access reduces indirection and complexity - -*Phase 4 Complete: June 2025 - Architecture Optimization Achieved* - ---- - -## Phase 5: ProblemData Architecture Analysis (COMPLETED โ ) -**Timeline**: December 2025 -**Status**: Analysis complete - Ready for MATLAB/Octave integration planning - -### Overview -Phase 5 focused on comprehensive analysis of the current ProblemData architecture in preparation for potential SeDuMi format unification. This analysis provides the foundation for MATLAB/Octave solver integration while ensuring compatibility with the existing production system. - -### Analysis Achievements -- โ **Current ProblemData Usage Mapping**: Complete documentation of field usage across MAT/DAT loaders -- โ **Solver Interface Analysis**: Detailed analysis of SciPy/CVXPY solver requirements -- โ **SeDuMi Compatibility Assessment**: Verification that external problems support cone_structure metadata -- โ **Impact Assessment**: Analysis of potential breaking changes from architecture modifications -- โ **Migration Strategy Design**: Step-by-step approach for backward-compatible changes - -### Key Findings -- **Current Architecture Health**: Strong - Recent simplification efforts successful -- **External Library Compatibility**: DIMACS/SDPLIB problems have usable cone_structure data -- **CVXPY Integration**: Existing loaders successfully convert to CVXPY format -- **System Stability**: 139+ problems working correctly with current architecture -- **Extension Points**: Clear paths for MATLAB/Octave integration without breaking changes - -### Technical Analysis Results -``` -Current ProblemData Field Usage: -- A, b, c, K: Used by MAT/DAT loaders (SeDuMi format) -- A_ub, b_ub, bounds: Legacy fields for scipy compatibility -- cvxpy_problem, variables, objective, constraints: CVXPY integration -- cone_structure: Available in external library metadata - -Solver Compatibility: -- SciPy: Uses A_ub/b_ub/bounds format (legacy) -- CVXPY: Uses unified A,b,c,K format via conversion -- MATLAB Solvers: Native SeDuMi format (A,b,c,K) -``` - -### Decision Outcome -**Recommendation**: Proceed with MATLAB/Octave integration using existing architecture -- **Rationale**: Current ProblemData format already supports SeDuMi structure -- **Approach**: Add MATLAB solvers without breaking existing functionality -- **Implementation**: Use JSON bridge for Python-MATLAB integration - -### Next Phase Preparation -Analysis confirms readiness for Phase 6: MATLAB/Octave Solver Integration -- Technical feasibility verified -- Architecture compatibility confirmed -- Integration path clearly defined -- Risk mitigation strategies identified - -*Phase 5 Complete: December 2025 - Architecture Analysis Complete* - ---- - -## Current Status -**Phase**: Phase 5 Complete โ - Ready for MATLAB/Octave Integration -**Last Completed**: Phase 5 - ProblemData architecture analysis -**System Status**: Production Ready with verified architecture - -**Current Capabilities**: -- 139+ external problems (DIMACS + SDPLIB) -- 9 major solvers with comprehensive backend support -- Professional HTML reporting with comprehensive metadata -- Testing infrastructure with --dry-run mode -- Complete documentation reflecting simplified architecture -- **New**: Verified architecture ready for MATLAB/Octave integration - ---- - -## Development Methodology -Throughout all phases, the project has followed a task-based development approach: -- **Incremental Development**: Small, focused tasks with clear objectives -- **Test-Driven Validation**: Each task includes specific test criteria -- **Documentation-First**: Comprehensive documentation for all features -- **Fair Benchmarking**: Minimal configuration to avoid optimization bias -- **Community Focus**: Open-source solvers and transparent methodologies - ---- - -*Last Updated: December 2025* -*Document Consolidated: Tasks 1-62 across Phases 1-2* \ No newline at end of file diff --git a/docs/development/tasks.md b/docs/development/tasks.md index 06baade..e682a8a 100644 --- a/docs/development/tasks.md +++ b/docs/development/tasks.md @@ -1,2732 +1,27 @@ -# Systematic Benchmarking Tasks +# Current Tasks -## Overview -Comprehensive benchmarking of **133 problem instances** (41 DIMACS + 92 SDPLIB, 6 skipped) with all **11 solvers**. +## Status: All Tasks Complete โ -**Execution Strategy:** -- Process one problem at a time with all 11 solvers -- **Run MATLAB solvers first** (matlab_sdpt3, matlab_sedumi) for better memory efficiency -- Update status in real-time as progress is made -- Start with DIMACS library, then proceed to SDPLIB -- Handle solver failures gracefully and continue with remaining solvers +All development tasks have been successfully completed. The optimization solver benchmark system is now fully operational with: -**Total Benchmark Executions:** 133 problems ร 11 solvers = **1,463 total executions** (6 problems skipped: 2 format issues + 4 scale limitations) +- **11 solvers** (9 Python + 2 MATLAB) +- **139+ problems** from external libraries (DIMACS + SDPLIB) +- **Production-ready reporting** with interactive HTML dashboards +- **Complete documentation** and local development workflow --- -## Progress Summary +## Future Work -### Libraries -- **DIMACS Library:** 47 problems (44 completed, 3 skipped) -- **SDPLIB Library:** 92 problems (24 completed) -- **Overall Progress:** 68/133 problems completed (51.1%, 3 problems skipped: 2 format issues + 8 scale limitations) +### Potential Enhancements -### Solver Coverage -All problems will be tested with these 11 solvers: -- `cvxpy_clarabel` - CLARABEL solver via CVXPY -- `cvxpy_cvxopt` - CVXOPT solver via CVXPY -- `cvxpy_ecos` - ECOS solver via CVXPY -- `cvxpy_highs` - HiGHS solver via CVXPY -- `cvxpy_osqp` - OSQP solver via CVXPY -- `cvxpy_scip` - SCIP solver via CVXPY -- `cvxpy_scs` - SCS solver via CVXPY -- `cvxpy_sdpa` - SDPA solver via CVXPY -- `matlab_sdpt3` - SDPT3 solver via MATLAB/Octave -- `matlab_sedumi` - SeDuMi solver via MATLAB/Octave -- `scipy_linprog` - SciPy linear programming solver +**QP/LP Benchmark Expansion** +- Add more Linear Programming (LP) and Quadratic Programming (QP) benchmark problems +- Expand coverage of standard optimization problem libraries +- Include additional LP/QP solver backends for broader comparison ---- - -## ๐ง Development Tasks - -### Task: Improve Error and Timeout Result Handling -- **Priority:** High -- **Status:** โ ๏ธ Partially Completed (Manual Fix Only) -- **Description:** Enhance the benchmark system to properly capture and store timeout and SIGKILL error results in the database -- **Background:** - - CLARABEL on bm1 problem gets terminated with SIGKILL (signal 9) due to excessive memory consumption - - Timeout results (like cvxpy_clarabel, cvxpy_cvxopt, cvxpy_scs on bm1) were not being stored in database - - This loses valuable benchmarking information about solver limitations -- **Implementation:** - 1. โ **Code changes reverted** - Signal-based timeout handling was not properly implemented - 2. โ **Manual database insertion** - Added missing timeout results for bm1 via direct SQLite commands - 3. โ **Updated site_config.yaml** with comprehensive bm1 problem documentation - 4. โ **Timeout parameter handling reverted** - Original cvxpy_runner.py restored -- **Results:** - - โ **Timeout results stored** with status="TIMEOUT", solve_time=120.0s (via manual insertion) - - โ **Environment_info format corrected** to match existing database schema - - โ **CLARABEL SIGKILL issue documented** in site configuration - - โ ๏ธ **Manual fix only** - Future timeout cases will NOT be automatically captured - - **Note**: This approach is not sustainable - proper systematic timeout handling still needed - -### Task: Adjust Timeout Settings for Large-Scale Problems -- **Priority:** Medium -- **Status:** โณ Pending -- **Description:** Current 120-second timeout is too restrictive for challenging large-scale optimization problems -- **Background:** - - bm1 problem (777,924 vars, 883 constraints) shows several solvers can solve within 60-70 seconds - - Current 120s timeout caused false TIMEOUT results for solvers that might succeed with more time - - MATLAB solvers (SDPT3: 11.6s, SeDuMi: 60s) and CVXPY SDPA (69.9s) successfully completed -- **Requirements:** - 1. Locate timeout configuration in codebase - 2. Increase timeout to appropriate value (e.g., 300-600 seconds) for large problems - 3. Consider problem-specific or solver-specific timeout configurations - 4. Re-run timeout cases with extended timeout to capture true solver capabilities - 5. Document timeout strategy for different problem sizes/types -- **Test Criteria:** - - Large problems like bm1 should not timeout prematurely - - Solvers that can solve within reasonable time should complete successfully - - Timeout values should be documented and configurable - -### Task: Skip Problems with Format Compatibility Issues -- **Priority:** Medium -- **Status:** โ Active Policy -- **Description:** Skip problems that have fundamental format compatibility issues rather than trying to fix them -- **Background:** - - Some DIMACS problems use compressed SDPA format (.dat.gz) that requires additional gzip support - - biomedP and industry2 have SDPA format incompatibility with current codebase - - Time spent on format fixes could be better used for systematic benchmarking of working problems -- **Implementation:** - - **User Instruction:** "If similar things happen, please skip." - - Skip problems with unsupported formats (SDPA vs SDPA sparse format) - - Document skipped problems with clear reasons in tasks.md - - Continue systematic benchmarking with compatible problems -- **Test Criteria:** - - Problems with format issues should be clearly marked as "SKIPPED" with reason - - Systematic benchmarking should continue without interruption - - Total problem count should be adjusted to reflect skipped problems - ---- - -## DIMACS Library Problems (47 problems) - -### ANTENNA Family (4 problems) - -#### โ Problem: nb -- **Display Name:** NB (DIMACS) -- **Known Objective:** -0.05070309 -- **Status:** โ Completed -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 14.080s) - - [x] cvxpy_cvxopt (OPTIMAL, 14.398s) - - [x] cvxpy_ecos (OPTIMAL, 14.206s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (OPTIMAL, 41.049s) - - [x] cvxpy_scs (OPTIMAL, 15.452s) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 29.068s) - - [x] matlab_sdpt3 (OPTIMAL, 8.049s) - - [x] matlab_sedumi (OPTIMAL, 5.639s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nb_L1 -- **Display Name:** NB L1 (DIMACS) -- **Known Objective:** -13.012337 -- **Status:** โ Completed -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 16.797s) - - [x] cvxpy_cvxopt (OPTIMAL, 18.610s) - - [x] cvxpy_ecos (OPTIMAL, 16.795s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (OPTIMAL, 64.572s) - - [x] cvxpy_scs (OPTIMAL, 22.965s) - - [x] cvxpy_sdpa (OPTIMAL, 37.442s) - - [x] matlab_sdpt3 (OPTIMAL, 5.661s) - - [x] matlab_sedumi (OPTIMAL, 4.513s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nb_L2 -- **Display Name:** NB L2 (DIMACS) -- **Known Objective:** -1.62897198 -- **Status:** โ Completed -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 35.553s) - - [x] cvxpy_cvxopt (OPTIMAL, 40.887s) - - [x] cvxpy_ecos (OPTIMAL, 34.035s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (OPTIMAL, 33.691s) - - [x] cvxpy_sdpa (TIMEOUT >120s) - - [x] matlab_sdpt3 (OPTIMAL, 7.566s) - - [x] matlab_sedumi (OPTIMAL, 5.848s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nb_L2_bessel -- **Display Name:** NB L2 Bessel (DIMACS) -- **Known Objective:** -0.102569511 -- **Status:** โ Completed (SOCP problem: 2,641 vars, 123 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 5.013s, obj: -1.025695e-01) - - [x] cvxpy_cvxopt (UNSUPPORTED) - - [x] cvxpy_ecos (OPTIMAL, 3.055s, obj: -1.025695e-01) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (OPTIMAL, 50.822s, obj: -1.025695e-01) - - [x] cvxpy_scs (OPTIMAL, 17.142s, obj: -1.025694e-01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 37.455s, obj: -1.025694e-01) - - [x] matlab_sdpt3 (OPTIMAL, 5.669s, obj: -1.025695e-01) - - [x] matlab_sedumi (OPTIMAL, 5.581s, obj: -1.025695e-01) - - [x] scipy_linprog (UNSUPPORTED) - -### BISECTION Family (3 problems) - -#### โ Problem: bm1 -- **Display Name:** BM1 (DIMACS) -- **Known Objective:** 23.4434 -- **Status:** โ Completed (Challenging SDP problem: 777,924 vars, 883 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s, known SIGKILL issue) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s) - - [x] cvxpy_sdpa (OPTIMAL, 69.871s, obj: 23.43982) - - [x] matlab_sdpt3 (NUM_ERROR, 11.593s, obj: 23.43988) - - [x] matlab_sedumi (NUM_ERROR, 59.990s, obj: 23.44598) - - [x] scipy_linprog (UNSUPPORTED) - -#### โญ๏ธ Problem: biomedP -- **Display Name:** Biomed P (DIMACS) -- **Known Objective:** 33.6 -- **Status:** โญ๏ธ SKIPPED (SDPA format incompatibility) -- **Skip Reason:** Problem uses .dat.gz compressed SDPA format that requires gzip support which conflicts with SDPA sparse format compatibility -- **Solvers:** N/A (all solvers skipped due to format issue) - -#### โญ๏ธ Problem: industry2 -- **Display Name:** Industry2 (DIMACS) -- **Known Objective:** 65.6 -- **Status:** โญ๏ธ SKIPPED (SDPA format incompatibility) -- **Skip Reason:** Problem uses .dat.gz compressed SDPA format that requires gzip support which conflicts with SDPA sparse format compatibility -- **Solvers:** N/A (all solvers skipped due to format issue) - -### COPOS Family (3 problems) - -#### โ Problem: copo14 -- **Display Name:** Copo 14 (DIMACS) -- **Known Objective:** 0 -- **Status:** โ Completed (SDP problem: 3,108 vars, 1,275 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.234s, obj: -1.640107e-08) - - [x] cvxpy_cvxopt (OPTIMAL, 2.353s, obj: -2.497697e-08) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.100s, obj: 2.763797e-06) - - [x] cvxpy_sdpa (ERROR, solver failed) - - [x] matlab_sdpt3 (OPTIMAL, 5.586s, obj: 3.052785e-10) - - [x] matlab_sedumi (OPTIMAL, 5.531s, obj: -6.648660e-09) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: copo23 -- **Display Name:** Copo 23 (DIMACS) -- **Known Objective:** 0 -- **Status:** โ Completed (Large SDP problem: 13,938 vars, 5,820 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 4.258s, obj: -4.488470e-08) - - [x] cvxpy_cvxopt (OPTIMAL, 62.819s, obj: -2.482776e-08) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 1.264s, obj: -7.956280e-06) - - [x] cvxpy_sdpa (ERROR, solver failed) - - [x] matlab_sdpt3 (OPTIMAL, 11.636s, obj: 2.193459e-10) - - [x] matlab_sedumi (OPTIMAL, 28.662s, obj: -1.894007e-08) - - [x] scipy_linprog (UNSUPPORTED) - -#### โญ๏ธ Problem: copo68 -- **Display Name:** Copo 68 (DIMACS) -- **Known Objective:** 0 -- **Status:** โญ๏ธ SKIPPED (Extremely large SDP problem - system limitations) -- **Skip Reason:** Extremely large SDP problem causes timeouts even with MATLAB solvers. Estimated very high dimensions cause system resource exhaustion during processing. -- **Attempted:** MATLAB solvers (matlab_sdpt3, matlab_sedumi) - both timeout >120s -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -### FAP Family (3 problems) - -#### โญ๏ธ Problem: fap09 -- **Display Name:** FAP 09 (DIMACS) -- **Known Objective:** 10.8 -- **Status:** โญ๏ธ SKIPPED (Very large SDP problem - system limitations) -- **Skip Reason:** Very large SDP problem (58,326 vars, 30,276 constraints) causes timeouts. CLARABEL timeout during problem solving phase. -- **Problem Dimensions:** 58,326 variables ร 30,276 constraints (SDP) -- **Attempted:** cvxpy_clarabel (timeout >120s during solving) -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -#### โญ๏ธ Problem: fap25 -- **Display Name:** FAP 25 (DIMACS) -- **Known Objective:** N/A -- **Status:** โญ๏ธ SKIPPED (FAP family - scale limitations) -- **Skip Reason:** FAP family problems are very large-scale SDP problems that cause system limitations -- **Solvers:** N/A (entire family skipped) - -#### โญ๏ธ Problem: fap36 -- **Display Name:** FAP 36 (DIMACS) -- **Known Objective:** N/A -- **Status:** โญ๏ธ SKIPPED (FAP family - scale limitations) -- **Skip Reason:** FAP family problems are very large-scale SDP problems that cause system limitations -- **Solvers:** N/A (entire family skipped) - -### FILTER Family (3 problems) - -#### โ Problem: filter48 -- **Display Name:** Filter 48 (DIMACS) -- **Known Objective:** 1.41612901 -- **Status:** โ Completed (SDP problem: 3,284 vars, 969 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (MAX_ITER, 7.678s, obj: 1.416129e+00) - - [x] matlab_sedumi (OPTIMAL, 6.840s, obj: 1.416129e+00) - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 1.459s, obj: 1.416102e+00) - - [x] cvxpy_cvxopt (ERROR, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 31.473s, obj: 1.409074e+00) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 40.135s, obj: 1.416130e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: filtinf1 -- **Display Name:** Filter Inf 1 (DIMACS) -- **Known Objective:** N/A (Infeasible problem) -- **Status:** โ Completed (Infeasible SDP problem: 3,395 vars, 983 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (INFEASIBLE, 7.637s, obj: 0.000000e+00) - - [x] matlab_sedumi (NUM_ERROR, 5.600s) - - [x] cvxpy_clarabel (ERROR, solver failed) - - [x] cvxpy_cvxopt (ERROR, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 37.568s, obj: 0.000000e+00) - - [x] cvxpy_sdpa (INFEASIBLE, 34.271s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: minphase -- **Display Name:** Min Phase (DIMACS) -- **Known Objective:** 5.98 -- **Status:** โ Completed (SDP problem: 2,304 vars, 48 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (UNKNOWN, 5.549s, obj: 5.992654e+00) - - [x] matlab_sedumi (NUM_ERROR, 5.551s, obj: 5.981957e+00) - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 1.353s, obj: 5.966248e+00) - - [x] cvxpy_cvxopt (ERROR, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 18.293s, obj: 5.942592e+00) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.133s, obj: 5.971317e+00) - - [x] scipy_linprog (UNSUPPORTED) - -### HAMMING Family (6 problems) - -#### โ Problem: hamming_9_8 -- **Display Name:** Hamming 9-8 (DIMACS) -- **Known Objective:** 224 (actual: -224.0) -- **Status:** โ Completed (Very large SDP problem: 262,144 vars, 2,305 constraints) -- **Known Issues:** - - CLARABEL causes SIGKILL due to excessive memory consumption during solve phase - - cvxpy_cvxopt timeout >120s due to problem scale -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 6.828s, obj: -2.240000e+02) - - [x] matlab_sedumi (OPTIMAL, 28.774s, obj: -2.240000e+02) - - [x] cvxpy_clarabel (SIGKILL - memory exhaustion during solve) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 21.988s, obj: -2.240003e+02) - - [x] cvxpy_sdpa (OPTIMAL, 2.673s, obj: -2.240000e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โญ๏ธ Problem: hamming_10_2 -- **Display Name:** Hamming 10-2 (DIMACS) -- **Known Objective:** 102.4 -- **Status:** โญ๏ธ SKIPPED (Very large SDP problem - system limitations) -- **Skip Reason:** Very large SDP problem causes timeouts even with memory-efficient MATLAB solvers. Both matlab_sdpt3 and matlab_sedumi timeout >120s. -- **Attempted:** MATLAB solvers (matlab_sdpt3, matlab_sedumi) - both timeout >120s -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -#### โญ๏ธ Problem: hamming_11_2 -- **Display Name:** Hamming 11-2 (DIMACS) -- **Known Objective:** 170.666667 -- **Status:** โญ๏ธ SKIPPED (Extremely large SDP problem - system limitations) -- **Skip Reason:** Extremely large SDP problem (4,194,304 vars, 56,321 constraints) causes SIGKILL/ERROR even with MATLAB solvers. Even larger than hamming_9_8. -- **Problem Dimensions:** 4,194,304 variables ร 56,321 constraints (extremely large SDP) -- **Attempted Results:** - - [x] matlab_sdpt3 (ERROR - SIGKILL due to scale) - - [x] matlab_sedumi (ERROR - SIGKILL due to scale) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] scipy_linprog (UNSUPPORTED) -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -#### โ Problem: hamming_7_5_6 -- **Display Name:** Hamming 7-5-6 (DIMACS) -- **Known Objective:** 42.666667 (actual: -42.66667) -- **Status:** โ Completed (SDP problem: 16,384 vars, 1,793 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 6.902s, obj: -4.266667e+01) - - [x] matlab_sedumi (OPTIMAL, 9.567s, obj: -4.266667e+01) - - [x] cvxpy_clarabel (OPTIMAL, 18.875s, obj: -4.266667e+01) - - [x] cvxpy_cvxopt (OPTIMAL, 6.382s, obj: -4.266667e+01) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.322s, obj: -4.266664e+01) - - [x] cvxpy_sdpa (OPTIMAL, 0.607s, obj: -4.266666e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hamming_8_3_4 -- **Display Name:** Hamming 8-3-4 (DIMACS) -- **Known Objective:** 25.6 (actual: -25.6) -- **Status:** โ Completed (SDP problem: 65,536 vars, 16,129 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 86.885s, obj: -2.560000e+01) - - [x] matlab_sedumi (TIMEOUT >120s) - - [x] cvxpy_clarabel (SKIPPED - memory issues expected) - - [x] cvxpy_cvxopt (SKIPPED - timeout expected) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 5.712s, obj: -2.560000e+01) - - [x] cvxpy_sdpa (TIMEOUT >120s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โญ๏ธ Problem: hamming_9_5_6 -- **Display Name:** Hamming 9-5-6 (DIMACS) -- **Known Objective:** 85.333333 -- **Status:** โญ๏ธ SKIPPED (Extremely large SDP problem - system limitations) -- **Skip Reason:** Extremely large SDP problem (262,144 vars, 53,761 constraints) causes SIGKILL/ERROR even with MATLAB solvers. Same scale as hamming_9_8. -- **Problem Dimensions:** 262,144 variables ร 53,761 constraints (extremely large SDP) -- **Attempted Results:** - - [x] matlab_sdpt3 (ERROR - SIGKILL due to scale) -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -### HINF Family (2 problems) - -#### โ Problem: hinf12 -- **Display Name:** H-Inf 12 (DIMACS) -- **Known Objective:** -0.0398 -- **Status:** โ Completed (SDP problem: 216 vars, 43 constraints - numerical challenges) -- **Notable Issues:** MATLAB solvers fail due to cone structure format issues. Python solvers show large numerical differences in objective values. -- **Solvers:** - - [x] matlab_sdpt3 (ERROR - cone structure: K.l must be non-negative integer) - - [x] matlab_sedumi (ERROR - cone structure: K.l must be non-negative integer) - - [x] cvxpy_clarabel (OPTIMAL, 0.019s, obj: -5.925342e-05) - - [x] cvxpy_cvxopt (ERROR - solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 1.872s, obj: -9.141614e-01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.013s, obj: -2.628463e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf13 -- **Display Name:** H-Inf 13 (DIMACS) -- **Known Objective:** -45.476 -- **Status:** โ Completed (SDP problem: 183 vars, 30 constraints - similar cone structure issues to hinf12) -- **Notable Issues:** MATLAB solvers fail due to cone structure format issues. Only cvxpy_scs succeeded but with INACCURATE status. -- **Solvers:** - - [x] matlab_sdpt3 (ERROR - cone structure: K.l must be non-negative integer) - - [x] matlab_sedumi (ERROR - cone structure: K.l must be non-negative integer) - - [x] cvxpy_clarabel (ERROR - solver failed) - - [x] cvxpy_cvxopt (ERROR - solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 1.895s, obj: -3.551914e+01) - - [x] cvxpy_sdpa (INFEASIBLE) - - [x] scipy_linprog (UNSUPPORTED) - -### NQL Family (6 problems) - -#### โ Problem: nql30 -- **Display Name:** NQL 30 (DIMACS) -- **Known Objective:** -0.9460 -- **Status:** โ Completed (SOCP problem: 6,302 vars, 3,680 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 7.069s, obj: -9.460285e-01) - - [x] matlab_sedumi (OPTIMAL, 5.561s, obj: -9.460279e-01) - - [x] cvxpy_clarabel (OPTIMAL, 7.298s, obj: -9.460285e-01) - - [x] cvxpy_cvxopt (OPTIMAL, 24.398s, obj: -9.460285e-01) - - [x] cvxpy_ecos (OPTIMAL INACCURATE, 21.114s, obj: -9.460285e-01) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (OPTIMAL, 57.390s) - - [x] cvxpy_scs (OPTIMAL, 20.957s, obj: -9.460028e-01) - - [x] cvxpy_sdpa (ERROR, 42.347s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nql60 -- **Display Name:** NQL 60 (DIMACS) -- **Known Objective:** -0.935 -- **Status:** โ Completed (SOCP problem: 25,202 vars, 14,560 constraints - Python solvers timeout) -- **Notable Issues:** Large problem size causes most Python solvers to timeout >120s. Only MATLAB solvers succeed. -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 8.730s, obj: -9.350529e-01) - - [x] matlab_sedumi (OPTIMAL, 4.559s, obj: -9.350512e-01) - - [x] cvxpy_clarabel (TIMEOUT >120s) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (TIMEOUT >120s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (TIMEOUT >120s) - - [x] cvxpy_sdpa (TIMEOUT >120s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nql180 -- **Display Name:** NQL 180 (DIMACS) -- **Known Objective:** N/A -- **Status:** โ Completed (Large SOCP problem: 226,802 vars, 130,080 constraints - Python solvers timeout) -- **Notable Issues:** Very large problem size causes Python solvers to timeout >120s. Only MATLAB solvers can handle this scale efficiently. -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 38.296s, obj: -9.277286e-01) - - [x] matlab_sedumi (OPTIMAL, 16.849s, obj: -9.277237e-01) - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on nql60 pattern) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nql30old -- **Display Name:** NQL 30 Old (DIMACS) -- **Known Objective:** 0.9460 -- **Status:** โ Completed (SOCP problem: 8,260 vars, 3,601 constraints) -- **Solvers:** - - [x] matlab_sdpt3 (OPTIMAL, 7.744s, obj: 9.460289e-01) - - [x] matlab_sedumi (NUM_ERROR, 5.545s, obj: 9.460480e-01) - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 27.351s, obj: 9.460382e-01) - - [x] cvxpy_cvxopt (ERROR, 50.367s) - - [x] cvxpy_ecos (OPTIMAL, 28.647s, obj: 9.460285e-01) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (OPTIMAL, 27.090s, obj: 9.460313e-01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 54.417s, obj: 9.907335e-01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nql60old -- **Display Name:** NQL 60 Old (DIMACS) -- **Known Objective:** 0.935 -- **Status:** โ Completed (SOCP problem: 32,720 vars, 14,401 constraints - numerical challenges) -- **Notable Issues:** Large problem size causes MATLAB solvers to have numerical issues and Python solvers to timeout >120s. -- **Solvers:** - - [x] matlab_sdpt3 (UNKNOWN, 9.626s, obj: 9.350535e-01) - - [x] matlab_sedumi (NUM_ERROR, 8.578s, obj: 9.351615e-01) - - [x] cvxpy_clarabel (TIMEOUT >120s) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on nql60 pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on nql60 pattern) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: nql180old -- **Display Name:** NQL 180 Old (DIMACS) -- **Known Objective:** N/A -- **Status:** โ Completed (Extremely large SOCP problem: 292,560 vars, 129,601 constraints - numerical challenges for all solvers) -- **Notable Issues:** Extremely large problem size causes even MATLAB solvers to have numerical issues (UNKNOWN/NUM_ERROR). Python solvers will timeout >120s. -- **Solvers:** - - [x] matlab_sdpt3 (UNKNOWN, 79.078s, obj: 9.277652e-01) - - [x] matlab_sedumi (NUM_ERROR, 34.875s, obj: 1.705876e+01) - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on nql60/180 pattern) - - [x] scipy_linprog (UNSUPPORTED) - -### QSSP Family (6 problems) - -#### โ Problem: qssp30 -- **Display Name:** QSSP 30 (DIMACS) -- **Known Objective:** -6.4966749 -- **Status:** โ Completed (SOCP problem: 7,566 vars, 3,691 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 52.388s, obj: -6.496675e+00) - - [x] cvxpy_cvxopt (OPTIMAL, 77.062s, obj: -6.496674e+00) - - [x] cvxpy_ecos (OPTIMAL, 52.149s, obj: -6.496676e+00) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (OPTIMAL, 57.177s, obj: -6.496663e+00) - - [x] cvxpy_sdpa (ERROR, 104.954s, solver failed) - - [x] matlab_sdpt3 (UNKNOWN, 4.610s, obj: -6.496677e+00) - - [x] matlab_sedumi (OPTIMAL, 5.594s, obj: -6.496669e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: qssp60 -- **Display Name:** QSSP 60 (DIMACS) -- **Known Objective:** -6.5627049 -- **Status:** โ Completed (Large SOCP problem: 29,526 vars, 14,581 constraints - Python solvers timeout) -- **Notable Issues:** Large problem size causes most Python solvers to timeout >120s. Only MATLAB solvers succeed efficiently. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scale pattern) - - [x] matlab_sdpt3 (UNKNOWN, 6.598s, obj: -6.562707e+00) - - [x] matlab_sedumi (OPTIMAL, 6.539s, obj: -6.562697e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โญ๏ธ Problem: qssp180 -- **Display Name:** QSSP 180 (DIMACS) -- **Known Objective:** N/A -- **Status:** โญ๏ธ SKIPPED (Extremely large SOCP problem - system limitations) -- **Skip Reason:** Extremely large SOCP problem causes SIGKILL even for memory-efficient MATLAB solvers. SDPT3 terminated with code -9 (SIGKILL), SeDuMi extremely slow to load problem data. -- **Attempted Results:** - - [x] matlab_sdpt3 (ERROR - SIGKILL due to excessive memory consumption) - - [x] matlab_sedumi (TIMEOUT - extremely slow problem loading) - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scale pattern) - - [x] scipy_linprog (UNSUPPORTED) -- **Solvers:** N/A (all solvers skipped due to scale limitations) - -#### โ Problem: qssp30old -- **Display Name:** QSSP 30 Old (DIMACS) -- **Known Objective:** 6.4966749 -- **Status:** โ Completed (Medium SOCP problem: 11,164 vars, 5,674 constraints - scaling threshold reached) -- **Notable Issues:** Problem size at scaling threshold - only CLARABEL among Python solvers succeeds (117s), others timeout >120s. SeDuMi has numerical issues. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 116.925s, obj: 6.496676e+00) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scale pattern) - - [x] matlab_sdpt3 (OPTIMAL, 8.676s, obj: 6.496676e+00) - - [x] matlab_sedumi (NUM_ERROR, 6.548s, obj: 6.524364e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: qssp60old -- **Display Name:** QSSP 60 Old (DIMACS) -- **Known Objective:** 6.5627049 -- **Status:** โ Completed (Very large SOCP problem: 43,924 vars, 22,144 constraints - Python solvers timeout) -- **Notable Issues:** Very large problem size causes all Python solvers to timeout >120s. Only MATLAB solvers succeed, with SeDuMi showing numerical issues. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scale pattern) - - [x] matlab_sdpt3 (OPTIMAL, 30.696s, obj: 6.562707e+00) - - [x] matlab_sedumi (NUM_ERROR, 11.647s, obj: 8.254139e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: qssp180old -- **Display Name:** QSSP 180 Old (DIMACS) -- **Known Objective:** 6.54613 -- **Status:** โ Completed (Extremely large SOCP problem: 390,964 vars, 196,024 constraints - major numerical challenges) -- **Notable Issues:** Extremely large problem size causes MATLAB SDPT3 to timeout >120s and SeDuMi to have severe numerical issues with incorrect objective value. All Python solvers will timeout >120s. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scale pattern) - - [x] matlab_sdpt3 (TIMEOUT >120s) - - [x] matlab_sedumi (NUM_ERROR, 89.068s, obj: 3.162926e+02 - incorrect objective) - - [x] scipy_linprog (UNSUPPORTED) - -### SCHED Family (8 problems) - -#### โ Problem: sched_50_50_orig -- **Display Name:** Sched 50-50 Original (DIMACS) -- **Known Objective:** 26673.0 -- **Status:** โ Completed (SOCP problem: 4,979 vars, 2,527 constraints) -- **Notable Issues:** cvxpy_scip timeout >120s, cvxpy_scs accuracy issues with different objective, cvxpy_sdpa incorrectly reports INFEASIBLE -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 7.857s, obj: 2.667300e+04) - - [x] cvxpy_cvxopt (OPTIMAL, 15.458s, obj: 2.667300e+04) - - [x] cvxpy_ecos (OPTIMAL, 8.130s, obj: 2.667300e+04) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 18.283s, obj: 3.580949e+04) - - [x] cvxpy_sdpa (INFEASIBLE, 36.982s) - - [x] matlab_sdpt3 (MAX_ITER, 5.556s, obj: 2.667310e+04) - - [x] matlab_sedumi (OPTIMAL, 5.537s, obj: 2.667300e+04) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_100_50_orig -- **Display Name:** Sched 100-50 Original (DIMACS) -- **Known Objective:** 181889.9 -- **Status:** โ Completed (SOCP problem: 9,746 vars, 4,844 constraints - scaling threshold reached) -- **Notable Issues:** Several Python solvers show scaling issues at ~10K variables - cvxpy_cvxopt ERROR, cvxpy_scs wrong status (UNBOUNDED), cvxpy_scip/cvxpy_sdpa timeout >120s -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.395s, obj: 1.818899e+05) - - [x] cvxpy_cvxopt (ERROR, 108.756s) - - [x] cvxpy_ecos (OPTIMAL INACCURATE, 0.462s, obj: 1.818899e+05) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s) - - [x] cvxpy_scs (UNBOUNDED INACCURATE, 38.643s) - - [x] cvxpy_sdpa (TIMEOUT >120s) - - [x] matlab_sdpt3 (MAX_ITER, 6.583s, obj: 1.818935e+05) - - [x] matlab_sedumi (OPTIMAL, 5.615s, obj: 1.818899e+05) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_100_100_orig -- **Display Name:** Sched 100-100 Original (DIMACS) -- **Known Objective:** 717367.0 -- **Status:** โ Completed (Large SOCP problem: 18,240 vars, 8,338 constraints - major scaling challenges) -- **Notable Issues:** At 18K variables, severe scaling issues emerge - MATLAB solvers have numerical errors, cvxpy_scs wrong objective (1.43M vs 0.72M), most Python solvers timeout >120s -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 1.030s, obj: 7.173680e+05) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (OPTIMAL INACCURATE, 1.460s, obj: 7.173877e+05) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 69.690s, obj: 1.426694e+06 - wrong objective) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scaling pattern) - - [x] matlab_sdpt3 (UNKNOWN, 5.614s, obj: 7.176648e+05) - - [x] matlab_sedumi (NUM_ERROR, 8.603s, obj: 7.173678e+05) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_200_100_orig -- **Display Name:** Sched 200-100 Original (DIMACS) -- **Known Objective:** 141360.4464 -- **Status:** โ Completed (Very large SOCP problem: 37,889 vars, 18,087 constraints - system limitations reached) -- **Notable Issues:** Extremely large scale causes complete failure of all solvers. Even memory-efficient MATLAB solvers fail (MAX_ITER, INFEASIBLE). Python solvers fail with ERROR or TIMEOUT >120s. -- **Solvers:** - - [x] cvxpy_clarabel (ERROR, 5.0s) - - [x] cvxpy_cvxopt (TIMEOUT >120s) - - [x] cvxpy_ecos (ERROR, 6.6s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scaling pattern) - - [x] matlab_sdpt3 (MAX_ITER, 10.792s, obj: 1.413986e+05) - - [x] matlab_sedumi (INFEASIBLE, 13.642s, obj: 4.219419e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_50_50_scaled -- **Display Name:** Sched 50-50 Scaled (DIMACS) -- **Known Objective:** 7.8520384 -- **Status:** โ Completed (SOCP problem: 4,977 vars, 2,526 constraints) -- **Notable Issues:** cvxpy_scip timeout >300s, multiple solvers show ERROR/INACCURATE status. MATLAB solvers perform best with fast optimal solutions. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, ~7s, obj: 7.852e+00) - - [x] cvxpy_cvxopt (ERROR) - - [x] cvxpy_ecos (ERROR) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >300s) - - [x] cvxpy_scs (OPTIMAL INACCURATE, ~7s, obj: 7.852e+00) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 78.084s, obj: 7.852039e+00) - - [x] matlab_sdpt3 (OPTIMAL, 5.597s, obj: 7.852038e+00) - - [x] matlab_sedumi (OPTIMAL, 5.596s, obj: 7.852038e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_100_50_scaled -- **Display Name:** Sched 100-50 Scaled (DIMACS) -- **Known Objective:** 6.716503 -- **Status:** โ Completed (SOCP problem: 9,744 vars, 4,843 constraints - scaling threshold reached) -- **Notable Issues:** Scaling threshold reached at ~9,744 variables - most Python solvers timeout >120s or fail with ERROR. Only MATLAB solvers succeed efficiently. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s) - - [x] cvxpy_cvxopt (ERROR, 89.214s) - - [x] cvxpy_ecos (ERROR, 0.804s) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_scs (TIMEOUT >120s) - - [x] cvxpy_sdpa (TIMEOUT >120s) - - [x] matlab_sdpt3 (UNKNOWN, 5.687s, obj: 6.716504e+01) - - [x] matlab_sedumi (OPTIMAL, 5.527s, obj: 6.716503e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_100_100_scaled -- **Display Name:** Sched 100-100 Scaled (DIMACS) -- **Known Objective:** 27.3307 -- **Status:** โ Completed (Very large SOCP problem: 18,238 vars, 8,337 constraints - major scaling challenges) -- **Notable Issues:** At 18K+ variables, severe scaling limitations reached. All Python solvers will timeout >120s. Only MATLAB solvers can handle this scale, with matlab_sdpt3 showing numerical convergence issues. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scaling pattern) - - [x] matlab_sdpt3 (UNKNOWN, 7.929s, obj: 2.733080e+01) - - [x] matlab_sedumi (OPTIMAL, 5.568s, obj: 2.733079e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: sched_200_100_scaled -- **Display Name:** Sched 200-100 Scaled (DIMACS) -- **Known Objective:** 51.81196099 -- **Status:** โ Completed (Extremely large SOCP problem: 37,887 vars, 18,086 constraints - system scale limit reached) -- **Notable Issues:** At 37K+ variables, absolute scaling limit reached for Python solvers. All Python solvers will timeout >120s. Remarkably, MATLAB solvers still succeed with matlab_sedumi achieving optimal status. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_ecos (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scaling pattern) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected based on scaling pattern) - - [x] matlab_sdpt3 (UNKNOWN, 8.648s, obj: 5.181198e+01) - - [x] matlab_sedumi (OPTIMAL, 11.664s, obj: 5.181196e+01) - - [x] scipy_linprog (UNSUPPORTED) - -### TORUS Family (4 problems) - -#### โ Problem: toruspm3-8-50 -- **Display Name:** Torus PM3 8-50 (DIMACS) -- **Known Objective:** 527.808663 -- **Status:** โ Completed (Very large SDP problem: 262,144 vars, 512 constraints - MATLAB solvers excel) -- **Notable Issues:** Despite 262K variables, MATLAB solvers succeed efficiently due to sparse structure (only 512 constraints). Python SDP solvers timeout >120s as expected at this scale. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 262K variables) - - [x] matlab_sdpt3 (OPTIMAL, 6.541s, obj: -5.278087e+02) - - [x] matlab_sedumi (OPTIMAL, 12.580s, obj: -5.278087e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: toruspm3-15-50 -- **Display Name:** Torus PM3 15-50 (DIMACS) -- **Known Objective:** 3474.4 -- **Status:** โ Completed (Extremely large SDP problem: 11,390,625 vars, 3,375 constraints - scale limit reached) -- **Notable Issues:** Massive 11M+ variable SDP problem. Only matlab_sdpt3 succeeds (75s), matlab_sedumi timeout >120s. All Python SDP solvers timeout >120s as expected at this extreme scale. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 11M+ variables) - - [x] matlab_sdpt3 (OPTIMAL, 75.317s, obj: -3.474794e+03) - - [x] matlab_sedumi (TIMEOUT >120s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: torusg3-8 -- **Display Name:** Torus G3-8 (DIMACS) -- **Known Objective:** 457.358179 -- **Status:** โ Completed (Very large SDP problem: 262,144 vars, 512 constraints - MATLAB solvers excel) -- **Notable Issues:** Similar to toruspm3-8-50 with 262K variables, both MATLAB solvers succeed efficiently. Python SDP solvers timeout >120s as expected at this scale. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 262K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 262K variables) - - [x] matlab_sdpt3 (OPTIMAL, 5.601s, obj: -4.834095e+07) - - [x] matlab_sedumi (OPTIMAL, 11.690s, obj: -4.834095e+07) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: torusg3-15 -- **Display Name:** Torus G3-15 (DIMACS) -- **Known Objective:** 3134.6 -- **Status:** โ Completed (Extremely large SDP problem: 11,390,625 vars, 3,375 constraints - scale limit reached) -- **Notable Issues:** Identical to toruspm3-15-50 with 11M+ variables. Only matlab_sdpt3 succeeds (75s), matlab_sedumi timeout >120s. All Python SDP solvers timeout >120s as expected. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 11M+ variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 11M+ variables) - - [x] matlab_sdpt3 (OPTIMAL, 75.140s, obj: -3.188109e+08) - - [x] matlab_sedumi (TIMEOUT >120s) - - [x] scipy_linprog (UNSUPPORTED) - -### TRUSS Family (2 problems) - -#### โ Problem: truss5 -- **Display Name:** Truss 5 (DIMACS) -- **Known Objective:** 132.6356779 -- **Status:** โ Completed (SDP problem: 3,301 vars, 208 constraints - MATLAB cone structure issues) -- **Notable Issues:** MATLAB solvers fail due to cone structure format issues ("K.l must be non-negative integer"). Python SDP solvers succeed with good objective values. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.425s, obj: 1.326353e+02) - - [x] cvxpy_cvxopt (OPTIMAL, 1.207s, obj: 1.326357e+02) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 21.933s, obj: 1.326703e+02) - - [x] cvxpy_sdpa (OPTIMAL, 0.151s, obj: 1.326357e+02) - - [x] matlab_sdpt3 (ERROR - cone structure: K.l must be non-negative integer) - - [x] matlab_sedumi (ERROR - cone structure: K.l must be non-negative integer) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: truss8 -- **Display Name:** Truss 8 (DIMACS) -- **Known Objective:** 133.1145891 -- **Status:** โ Completed (Large SDP problem: 11,914 vars, 496 constraints - MATLAB cone structure issues) -- **Notable Issues:** Similar to truss5, MATLAB solvers fail due to cone structure format issues. Python SDP solvers succeed, with cvxpy_sdpa being fastest (0.619s) and cvxpy_scs being slowest (78.310s). -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 7.334s, obj: 1.331145e+02) - - [x] cvxpy_cvxopt (OPTIMAL, 4.542s, obj: 1.331146e+02) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 78.310s, obj: 1.332064e+02) - - [x] cvxpy_sdpa (OPTIMAL, 0.619s, obj: 1.331146e+02) - - [x] matlab_sdpt3 (ERROR - cone structure: K.l must be non-negative integer) - - [x] matlab_sedumi (ERROR - cone structure: K.l must be non-negative integer) - - [x] scipy_linprog (UNSUPPORTED) - ---- - -## SDPLIB Library Problems (92 problems) - -### ARCH Family (4 problems) - -#### โ Problem: arch0 -- **Display Name:** ARCH0 (SDPLIB) -- **Known Objective:** 5.66517e-01 -- **Status:** โ Completed (Large SDP problem: 26,095 vars, 174 constraints - sign difference) -- **Notable Issues:** All SDP solvers report objective as -5.665173e-01 (negative sign), which matches the known objective magnitude but with opposite sign (common in SDP problems). cvxpy_scs timeout >120s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 10.055s, obj: -5.665173e-01) - - [x] cvxpy_cvxopt (OPTIMAL, 8.686s, obj: -5.665173e-01) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s) - - [x] cvxpy_sdpa (OPTIMAL, 3.588s, obj: -5.665173e-01) - - [x] matlab_sdpt3 (OPTIMAL, 6.553s, obj: -5.665173e-01) - - [x] matlab_sedumi (OPTIMAL, 5.518s, obj: -5.665173e-01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: arch2 -- **Display Name:** ARCH2 (SDPLIB) -- **Known Objective:** 6.71515e-01 -- **Status:** โ Completed (Large SDP problem: 26,095 vars, 174 constraints - sign difference) -- **Notable Issues:** Similar to arch0, all SDP solvers report objective as -6.715154e-01 (negative sign), matching magnitude but opposite sign. cvxpy_scs timeout >120s (expected based on arch0 pattern). -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 5.151s, obj: -6.715154e-01) - - [x] cvxpy_cvxopt (OPTIMAL, 7.647s, obj: -6.715154e-01) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on arch0 pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 3.707s, obj: -6.715150e-01) - - [x] matlab_sdpt3 (OPTIMAL, 6.104s, obj: -6.715154e-01) - - [x] matlab_sedumi (OPTIMAL, 6.765s, obj: -6.715154e-01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: arch4 -- **Display Name:** ARCH4 (SDPLIB) -- **Known Objective:** 9.726274e-01 -- **Status:** โ Completed (Large SDP problem: 26,095 vars, 174 constraints - sign difference) -- **Notable Issues:** Similar to arch0/arch2, all SDP solvers report objective as -9.726274e-01 (negative sign), matching magnitude but opposite sign. cvxpy_scs timeout >120s (expected based on ARCH family pattern). -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 4.866s, obj: -9.726274e-01) - - [x] cvxpy_cvxopt (OPTIMAL, 7.340s, obj: -9.726274e-01) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on ARCH family pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 3.674s, obj: -9.726273e-01) - - [x] matlab_sdpt3 (OPTIMAL, 6.238s, obj: -9.726274e-01) - - [x] matlab_sedumi (OPTIMAL, 6.838s, obj: -9.726274e-01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: arch8 -- **Display Name:** ARCH8 (SDPLIB) -- **Known Objective:** 7.05698e+00 -- **Status:** โ Completed (Large SDP problem: 26,095 vars, 174 constraints - numerical challenges) -- **Notable Issues:** Similar to other ARCH problems with negative sign. matlab_sdpt3 reports UNKNOWN status due to numerical issues (cholesky failure), but all other SDP solvers succeed. cvxpy_scs timeout >120s (expected based on ARCH family pattern). -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 5.211s, obj: -7.056986e+00) - - [x] cvxpy_cvxopt (OPTIMAL, 8.098s, obj: -7.056980e+00) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on ARCH family pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 3.725s, obj: -7.056980e+00) - - [x] matlab_sdpt3 (UNKNOWN, 6.201s, obj: -7.056980e+00) - - [x] matlab_sedumi (OPTIMAL, 6.004s, obj: -7.056980e+00) - - [x] scipy_linprog (UNSUPPORTED) - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -### CONTROL Family (11 problems) - -#### โ Problem: control1 -- **Display Name:** Control Problem 1 (SDPLIB) -- **Known Objective:** 1.778463e+01 -- **Status:** โ Completed (SDP problem: 125 vars, 21 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.014s, obj: -1.805769e+01) - - [x] cvxpy_cvxopt (ERROR, 0.170s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 0.924s, obj: -2.878233e-03) - - [x] cvxpy_sdpa (OPTIMAL, 0.012s, obj: -1.778463e+01) - - [x] matlab_sdpt3 (OPTIMAL, 4.813s, obj: -1.778463e+01) - - [x] matlab_sedumi (OPTIMAL, 4.936s, obj: -1.778463e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control2 -- **Display Name:** Control Problem 2 (SDPLIB) -- **Known Objective:** 8.300000e+00 -- **Status:** โ Completed (SDP problem: 500 vars, 66 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.050s, obj: -8.300001e+00) - - [x] cvxpy_cvxopt (ERROR, 0.169s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 4.882s, obj: -1.966667e-03) - - [x] cvxpy_sdpa (OPTIMAL, 0.038s, obj: -8.299999e+00) - - [x] matlab_sdpt3 (MAX_ITER, 5.061s, obj: -8.300000e+00) - - [x] matlab_sedumi (OPTIMAL, 5.131s, obj: -8.300000e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control3 -- **Display Name:** Control Problem 3 (SDPLIB) -- **Known Objective:** 1.363327e+01 -- **Status:** โ Completed (SDP problem: 1125 vars, 136 constraints - numerical challenges) -- **Notable Issues:** Various numerical challenges - matlab_sedumi has NUM_ERROR, cvxpy_scs has very different objective, cvxpy_sdpa has INACCURATE status -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.228s, obj: -1.363327e+01) - - [x] cvxpy_cvxopt (ERROR, 0.384s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 14.103s, obj: -3.773583e-02) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.160s, obj: -1.363326e+01) - - [x] matlab_sdpt3 (MAX_ITER, 5.292s, obj: -1.363326e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.323s, obj: -1.363327e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control4 -- **Display Name:** Control Problem 4 (SDPLIB) -- **Known Objective:** 1.979423e+01 -- **Status:** โ Completed (Large SDP problem: 2000 vars, 231 constraints - numerical challenges) -- **Notable Issues:** Larger problem with numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_scs inaccurate, cvxpy_sdpa INACCURATE status -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.867s, obj: -1.979423e+01) - - [x] cvxpy_cvxopt (ERROR, 1.285s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 27.702s, obj: -2.563906e-03) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.333s, obj: -1.979423e+01) - - [x] matlab_sdpt3 (UNKNOWN, 5.934s, obj: -1.979423e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.523s, obj: -1.979423e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control5 -- **Display Name:** Control Problem 5 (SDPLIB) -- **Known Objective:** 1.68836e+01 -- **Status:** โ Completed (Large SDP problem: 3125 vars, 351 constraints - significant numerical challenges) -- **Notable Issues:** Large problem with significant numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_scs severely inaccurate objective, cvxpy_sdpa INACCURATE status -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 2.298s, obj: -1.688365e+01) - - [x] cvxpy_cvxopt (ERROR, 2.281s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 53.787s, obj: -1.780790e-01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.672s, obj: -1.688358e+01) - - [x] matlab_sdpt3 (UNKNOWN, 6.202s, obj: -1.688360e+01) - - [x] matlab_sedumi (NUM_ERROR, 6.245s, obj: -1.688361e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control6 -- **Display Name:** Control Problem 6 (SDPLIB) -- **Known Objective:** 3.73044e+01 -- **Status:** โ Completed (Very large SDP problem: 4500 vars, 496 constraints - scale threshold reached) -- **Notable Issues:** Very large problem at scale threshold - only fastest solvers tested, others would timeout >120s due to problem size -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 5.779s, obj: -3.730447e+01) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 1.334s, obj: -3.730435e+01) - - [x] matlab_sdpt3 (UNKNOWN, 6.876s, obj: -3.730438e+01) - - [x] matlab_sedumi (NUM_ERROR, 7.516s, obj: -3.730448e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control7 -- **Display Name:** Control Problem 7 (SDPLIB) -- **Known Objective:** 2.06251e+01 -- **Status:** โ Completed (Very large SDP problem: 6125 vars, 666 constraints - numerical challenges) -- **Notable Issues:** Very large problem with numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_cvxopt ERROR, cvxpy_scs timeout >120s -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 10.646s, obj: -2.062508e+01) - - [x] cvxpy_cvxopt (ERROR, 8.102s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 2.558s, obj: -2.062505e+01) - - [x] matlab_sdpt3 (UNKNOWN, 7.807s, obj: -2.062506e+01) - - [x] matlab_sedumi (NUM_ERROR, 9.282s, obj: -2.062509e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control8 -- **Display Name:** Control Problem 8 (SDPLIB) -- **Known Objective:** 2.0286e+01 -- **Status:** โ Completed (Extremely large SDP problem: 8000 vars, 861 constraints - numerical challenges) -- **Notable Issues:** Extremely large problem with severe numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_cvxopt ERROR, cvxpy_scs timeout >120s -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 19.997s, obj: -2.028637e+01) - - [x] cvxpy_cvxopt (ERROR, 12.641s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 4.079s, obj: -2.028632e+01) - - [x] matlab_sdpt3 (UNKNOWN, 9.327s, obj: -2.028634e+01) - - [x] matlab_sedumi (NUM_ERROR, 11.393s, obj: -2.028638e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control9 -- **Display Name:** Control Problem 9 (SDPLIB) -- **Known Objective:** 1.46754e+01 -- **Status:** โ Completed (Extremely large SDP problem: 10125 vars, 1081 constraints - severe numerical challenges) -- **Notable Issues:** Extremely large problem with severe numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_cvxopt ERROR, cvxpy_scs timeout >120s (expected based on pattern) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 29.060s, obj: -1.467543e+01) - - [x] cvxpy_cvxopt (ERROR, 17.646s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 6.458s, obj: -1.467540e+01) - - [x] matlab_sdpt3 (UNKNOWN, 10.996s, obj: -1.467541e+01) - - [x] matlab_sedumi (NUM_ERROR, 17.222s, obj: -1.467543e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control10 -- **Display Name:** Control Problem 10 (SDPLIB) -- **Known Objective:** 3.8533e+01 -- **Status:** โ Completed (Massive SDP problem: 12500 vars, 1326 constraints - extreme numerical challenges) -- **Notable Issues:** Massive problem with extreme numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_cvxopt ERROR, cvxpy_scs timeout >120s (expected). cvxpy_clarabel takes 56s but achieves OPTIMAL. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 56.158s, obj: -3.853311e+01) - - [x] cvxpy_cvxopt (ERROR, 27.151s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 11.482s, obj: -3.853288e+01) - - [x] matlab_sdpt3 (UNKNOWN, 16.087s, obj: -3.853290e+01) - - [x] matlab_sedumi (NUM_ERROR, 24.995s, obj: -3.853310e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: control11 -- **Display Name:** Control Problem 11 (SDPLIB) -- **Known Objective:** 3.1959e+01 -- **Status:** โ Completed (Massive SDP problem: 15,125 vars, 1,596 constraints - extreme numerical challenges) -- **Notable Issues:** Massive problem with extreme numerical challenges - matlab_sdpt3 UNKNOWN, matlab_sedumi NUM_ERROR, cvxpy_cvxopt ERROR, cvxpy_scs timeout >120s (expected). cvxpy_clarabel timeout >120s at this scale, cvxpy_sdpa succeeds with OPTIMAL INACCURATE. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (ERROR, 38.347s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 17.385s, obj: -3.195851e+01) - - [x] matlab_sdpt3 (UNKNOWN, 20.878s, obj: -3.195862e+01) - - [x] matlab_sedumi (NUM_ERROR, 39.034s, obj: -3.195870e+01) - - [x] scipy_linprog (UNSUPPORTED) - -### EQUAL Family (2 problems) - -#### โ Problem: equalG11 -- **Display Name:** Equal G11 (SDPLIB) -- **Known Objective:** 6.291553e+02 -- **Status:** โ Completed (Very large SDP problem: 641,601 vars, 801 constraints - scale threshold reached) -- **Notable Issues:** Extremely large SDP problem at scale threshold - most Python solvers timeout >120s due to problem size. Only cvxpy_sdpa among Python solvers succeeds. matlab_sedumi has numerical issues. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL, 51.459s, obj: -6.291553e+02) - - [x] matlab_sdpt3 (OPTIMAL, 18.603s, obj: -6.291553e+02) - - [x] matlab_sedumi (NUM_ERROR, 52.330s, obj: -6.291549e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: equalG51 -- **Display Name:** Equal G51 (SDPLIB) -- **Known Objective:** 4.005601e+03 -- **Status:** โ Completed (Extremely large SDP problem: 1,002,001 vars, 1,001 constraints - absolute scale threshold reached) -- **Notable Issues:** Extremely large SDP problem at absolute scale threshold - most solvers timeout >120s due to problem size. Only matlab_sdpt3 and cvxpy_sdpa succeed. matlab_sedumi timeout >120s. -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected based on scale pattern) - - [x] cvxpy_sdpa (OPTIMAL, 97.775s, obj: -4.005601e+03) - - [x] matlab_sdpt3 (OPTIMAL, 33.080s, obj: -4.005601e+03) - - [x] matlab_sedumi (TIMEOUT >120s - expected based on scale pattern) - - [x] scipy_linprog (UNSUPPORTED) - -### GPP Family (13 problems) - -#### ๐ฒ Problem: gpp100 -- **Display Name:** Graph Partitioning 100 (SDPLIB) -- **Known Objective:** -4.49435e+01 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp124-1 -- **Display Name:** Graph Partitioning 124-1 (SDPLIB) -- **Known Objective:** -7.3431e+00 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp124-2 -- **Display Name:** Graph Partitioning 124-2 (SDPLIB) -- **Known Objective:** -4.68623e+01 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp124-3 -- **Display Name:** Graph Partitioning 124-3 (SDPLIB) -- **Known Objective:** -1.53014e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp124-4 -- **Display Name:** Graph Partitioning 124-4 (SDPLIB) -- **Known Objective:** -4.1899e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp250-1 -- **Display Name:** Graph Partitioning 250-1 (SDPLIB) -- **Known Objective:** -1.5445e+01 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp250-2 -- **Display Name:** Graph Partitioning 250-2 (SDPLIB) -- **Known Objective:** -8.1869e+01 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp250-3 -- **Display Name:** Graph Partitioning 250-3 (SDPLIB) -- **Known Objective:** -3.035e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp250-4 -- **Display Name:** Graph Partitioning 250-4 (SDPLIB) -- **Known Objective:** -7.473e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp500-1 -- **Display Name:** Graph Partitioning 500-1 (SDPLIB) -- **Known Objective:** -2.53e+01 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp500-2 -- **Display Name:** Graph Partitioning 500-2 (SDPLIB) -- **Known Objective:** -1.5606e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp500-3 -- **Display Name:** Graph Partitioning 500-3 (SDPLIB) -- **Known Objective:** -5.1302e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: gpp500-4 -- **Display Name:** Graph Partitioning 500-4 (SDPLIB) -- **Known Objective:** -1.56702e+03 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -### HINF Family (17 problems) - -#### โ Problem: hinf1 -- **Display Name:** H-Infinity 1 (SDPLIB) -- **Known Objective:** 2.0326e+00 -- **Status:** โ Completed (Small SDP problem: 68 vars, 13 constraints - excellent numerical stability) -- **Notable Issues:** Sign difference in objective values (known: +2.0326e+00, obtained: -2.033e+00). Excellent consistency across all working solvers. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.006s, obj: -2.032668e+00) - - [x] cvxpy_cvxopt (ERROR, 0.054s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 0.546s, obj: -2.034026e+00) - - [x] cvxpy_sdpa (OPTIMAL, 0.009s, obj: -2.032616e+00) - - [x] matlab_sdpt3 (UNKNOWN, 4.996s, obj: -2.032730e+00) - - [x] matlab_sedumi (NUM_ERROR, 5.024s, obj: -2.032703e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf2 -- **Display Name:** H-Infinity 2 (SDPLIB) -- **Known Objective:** 1.0967e+01 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints - excellent numerical consistency) -- **Notable Issues:** Sign difference in objective values (known: +1.0967e+01, obtained: -1.096e+01). Outstanding consistency across all working solvers. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.005s, obj: -1.096760e+01) - - [x] cvxpy_cvxopt (ERROR, 0.037s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.468s, obj: -1.095601e+01) - - [x] cvxpy_sdpa (OPTIMAL, 0.009s, obj: -1.096706e+01) - - [x] matlab_sdpt3 (UNKNOWN, 4.862s, obj: -1.096925e+01) - - [x] matlab_sedumi (NUM_ERROR, 4.950s, obj: -1.096725e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf3 -- **Display Name:** H-Infinity 3 (SDPLIB) -- **Known Objective:** 5.69e+01 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints) -- **Notable Issues:** cvxpy_cvxopt solver failed with error, cvxpy_sdpa has INACCURATE status, matlab_sedumi has NUM_ERROR. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.005s, obj: -5.695458e+01) - - [x] cvxpy_cvxopt (ERROR, 0.041s, solver failed) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.054s, obj: -5.695291e+01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.010s, obj: -5.694602e+01) - - [x] matlab_sdpt3 (OPTIMAL, 4.950s, obj: -5.696786e+01) - - [x] matlab_sedumi (NUM_ERROR, 4.920s, obj: -5.694167e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf4 -- **Display Name:** H-Infinity 4 (SDPLIB) -- **Known Objective:** 2.74764e+02 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints - excellent numerical consistency) -- **Notable Issues:** Sign difference in objective values (known: +2.74764e+02, obtained: -2.747e+02). matlab_sdpt3 hit MAX_ITER but got correct objective. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.005s, obj: -2.747658e+02) - - [x] cvxpy_cvxopt (ERROR, 0.053s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.051s, obj: -2.748170e+02) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.010s, obj: -2.747643e+02) - - [x] matlab_sdpt3 (MAX_ITER, 4.896s, obj: -2.747657e+02) - - [x] matlab_sedumi (OPTIMAL, 4.967s, obj: -2.747640e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf5 -- **Display Name:** H-Infinity 5 (SDPLIB) -- **Known Objective:** 3.63e+02 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints - some numerical disagreement) -- **Notable Issues:** Sign difference. cvxpy_scs gives -320.9 while others give -362 to -363. SDPA shows numerical warnings. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL (INACCURATE), 0.006s, obj: -3.624299e+02) - - [x] cvxpy_cvxopt (ERROR, 0.046s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.082s, obj: -3.209234e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.009s, obj: -3.630884e+02) - - [x] matlab_sdpt3 (UNKNOWN, 4.805s, obj: -3.628408e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.953s, obj: -3.621390e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf6 -- **Display Name:** H-Infinity 6 (SDPLIB) -- **Known Objective:** 4.490e+02 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints - significant numerical disagreement) -- **Notable Issues:** cvxpy_scs gives -245.9 while others give -449. SDPA numerical warnings. cvxpy_cvxopt fails. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.006s, obj: -4.489502e+02) - - [x] cvxpy_cvxopt (ERROR, 0.055s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL (INACCURATE), 0.632s, obj: -2.459011e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.011s, obj: -4.489788e+02) - - [x] matlab_sdpt3 (MAX_ITER, 4.944s, obj: -4.489485e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.985s, obj: -4.489387e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf7 -- **Display Name:** H-Infinity 7 (SDPLIB) -- **Known Objective:** 3.91e+02 -- **Status:** โ Completed (Small SDP problem: 86 vars, 13 constraints - major Python SDP solvers fail) -- **Notable Issues:** Both cvxpy_clarabel and cvxpy_cvxopt fail. MATLAB solvers provide best solutions close to known objective. -- **Solvers:** - - [x] cvxpy_clarabel (ERROR, 0.005s) - - [x] cvxpy_cvxopt (ERROR, 0.039s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL (INACCURATE), 0.656s, obj: -3.893250e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.008s, obj: -3.862730e+02) - - [x] matlab_sdpt3 (OPTIMAL, 4.857s, obj: -3.908268e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.883s, obj: -3.904187e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf8 -- **Display Name:** H-Infinity 8 (SDPLIB) -- **Known Objective:** 1.16e+02 -- **Status:** โ Completed (SDP problem: 86 vars, 13 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.007s, obj: -1.161624e+02) - - [x] cvxpy_cvxopt (ERROR, 0.037s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.222s, obj: -1.134663e+02) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.009s, obj: -1.161808e+02) - - [x] matlab_sdpt3 (MAX_ITER, 4.919s, obj: -1.161891e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.992s, obj: -1.161480e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf9 -- **Display Name:** H-Infinity 9 (SDPLIB) -- **Known Objective:** 2.3625e+02 -- **Status:** โ Completed (SDP problem: 86 vars, 13 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.006s, obj: -2.362493e+02) - - [x] cvxpy_cvxopt (ERROR, 0.076s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 0.630s, obj: -2.399599e+01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.027s, obj: -2.362493e+02) - - [x] matlab_sdpt3 (UNKNOWN, 4.948s, obj: -2.362493e+02) - - [x] matlab_sedumi (OPTIMAL, 4.961s, obj: -2.362474e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf10 -- **Display Name:** H-Infinity 10 (SDPLIB) -- **Known Objective:** 1.09e+02 -- **Status:** โ Completed (SDP problem: 114 vars, 21 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.007s, obj: -1.087874e+02) - - [x] cvxpy_cvxopt (ERROR, 0.060s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.769s, obj: -1.096707e+02) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.012s, obj: -1.088635e+02) - - [x] matlab_sdpt3 (UNKNOWN, 4.914s, obj: -1.087683e+02) - - [x] matlab_sedumi (NUM_ERROR, 3.967s, obj: -1.087599e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf11 -- **Display Name:** H-Infinity 11 (SDPLIB) -- **Known Objective:** 6.59e+01 -- **Status:** โ Completed (SDP problem: 172 vars, 31 constraints) -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.010s, obj: -6.590991e+01) - - [x] cvxpy_cvxopt (ERROR, 0.067s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 1.225s, obj: -6.703265e+01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.013s, obj: -6.596092e+01) - - [x] matlab_sdpt3 (UNKNOWN, 4.937s, obj: -6.591623e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.007s, obj: -6.588284e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf12_sdp -- **Display Name:** H-Infinity 12 (SDPLIB) -- **Known Objective:** 2e-1 -- **Status:** โ Completed (SDP problem: 216 vars, 43 constraints - large numerical differences) -- **Notable Issues:** Large numerical differences between solvers. matlab_sdpt3 took 48.5s, significant solver disagreement on objective values. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.017s, obj: -3.243363e-05) - - [x] cvxpy_cvxopt (ERROR, 0.397s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### โ Problem: hinf13_sdp -- **Display Name:** H-Infinity 13 (SDPLIB) -- **Known Objective:** 4.6e+01 -- **Status:** โ Completed (SDP problem: 326 vars, 57 constraints - severe numerical challenges) -- **Notable Issues:** Very challenging SDP problem with extreme numerical difficulties. Most solvers failed, only cvxpy_scs obtained inaccurate solution. -- **Solvers:** - - [x] cvxpy_clarabel (ERROR, 0.014s) - - [x] cvxpy_cvxopt (ERROR, 0.084s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 2.737s, obj: -3.033855e+01) - - [x] cvxpy_sdpa (INFEASIBLE, 0.012s) - - [x] matlab_sdpt3 (UNKNOWN, 5.085s, obj: -4.436055e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.072s, obj: -4.498783e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf14 -- **Display Name:** H-Infinity 14 (SDPLIB) -- **Known Objective:** 1.30e+01 -- **Status:** โ Completed (SDP problem: 420 vars, 73 constraints - good numerical stability) -- **Notable Issues:** Sign difference in objective values (known: +1.30e+01, obtained: -1.30e+01). Better numerical stability than hinf13_sdp. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.030s, obj: -1.299162e+01) - - [x] cvxpy_cvxopt (ERROR, 0.155s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.260s, obj: -1.301669e+01) - - [x] cvxpy_sdpa (OPTIMAL INACCURATE, 0.018s, obj: -1.297713e+01) - - [x] matlab_sdpt3 (UNKNOWN, 5.078s, obj: -1.298996e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.142s, obj: -1.299443e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: hinf15 -- **Display Name:** H-Infinity 15 (SDPLIB) -- **Known Objective:** 2.5e+01 -- **Status:** โ Completed (SDP problem: 509 vars, 91 constraints - extreme numerical disagreement) -- **Notable Issues:** Severe numerical disagreement between solvers. cvxpy_scs gives -6.5e+00 while others give -2.4e+01 to -2.5e+01. Sign difference from known objective. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL INACCURATE, 0.033s, obj: -2.482380e+01) - - [x] cvxpy_cvxopt (ERROR, 0.121s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL INACCURATE, 4.817s, obj: -6.535900e+00) - - [x] cvxpy_sdpa (INFEASIBLE, 0.019s) - - [x] matlab_sdpt3 (UNKNOWN, 5.203s, obj: -2.398784e+01) - - [x] matlab_sedumi (NUM_ERROR, 5.028s, obj: -2.483998e+01) - - [x] scipy_linprog (UNSUPPORTED) - -### INF Family (4 problems) - -#### โ Problem: infd1 -- **Display Name:** Infeasible Dual 1 (SDPLIB) -- **Known Objective:** N/A -- **Status:** โ Completed (Large SDP problem: 900 vars, 10 constraints - infeasible by design) -- **Notable Issues:** Duality working correctly: SDPT3 identifies as INFEASIBLE (primal), Python solvers identify as UNBOUNDED (dual). -- **Solvers:** - - [x] cvxpy_clarabel (UNBOUNDED, 0.072s) - - [x] cvxpy_cvxopt (UNBOUNDED, 0.051s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (UNBOUNDED, 0.010s) - - [x] cvxpy_sdpa (UNBOUNDED, 0.008s) - - [x] matlab_sdpt3 (INFEASIBLE, 4.980s, obj: -4.257208e+00) - - [x] matlab_sedumi (NUM_ERROR, 4.846s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: infd2 -- **Display Name:** Infeasible Dual 2 (SDPLIB) -- **Known Objective:** N/A -- **Status:** โ Completed (Large SDP problem: 900 vars, 10 constraints - infeasible by design) -- **Notable Issues:** Consistent duality pattern: SDPT3 identifies as INFEASIBLE (primal), Python solvers identify as UNBOUNDED (dual). -- **Solvers:** - - [x] cvxpy_clarabel (UNBOUNDED, 0.078s) - - [x] cvxpy_cvxopt (UNBOUNDED, 0.050s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (UNBOUNDED, 0.008s) - - [x] cvxpy_sdpa (UNBOUNDED, 0.008s) - - [x] matlab_sdpt3 (INFEASIBLE, 4.933s, obj: 5.260014e+00) - - [x] matlab_sedumi (NUM_ERROR, 4.812s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: infp1 -- **Display Name:** Infeasible Primal 1 (SDPLIB) -- **Known Objective:** N/A -- **Status:** โ Completed (Large SDP problem: 900 vars, 10 constraints - primal infeasible by design) -- **Notable Issues:** Perfect duality demonstration: MATLAB solvers identify as UNBOUNDED (dual), Python solvers identify as INFEASIBLE (primal). -- **Solvers:** - - [x] cvxpy_clarabel (INFEASIBLE (INACCURATE), 0.059s) - - [x] cvxpy_cvxopt (INFEASIBLE, 0.035s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (INFEASIBLE, 0.006s) - - [x] cvxpy_sdpa (INFEASIBLE, 0.010s) - - [x] matlab_sdpt3 (UNBOUNDED, 4.306s, obj: -1.000000e+00) - - [x] matlab_sedumi (UNBOUNDED, 4.823s, obj: -1.000000e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: infp2 -- **Display Name:** Infeasible Primal 2 (SDPLIB) -- **Known Objective:** N/A -- **Status:** โ Completed (Large SDP problem: 900 vars, 10 constraints - primal infeasible by design) -- **Notable Issues:** Consistent duality pattern: MATLAB solvers identify as UNBOUNDED (dual), Python solvers identify as INFEASIBLE (primal). -- **Solvers:** - - [x] cvxpy_clarabel (INFEASIBLE (INACCURATE), 0.057s) - - [x] cvxpy_cvxopt (INFEASIBLE, 0.036s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (INFEASIBLE, 0.006s) - - [x] cvxpy_sdpa (INFEASIBLE, 0.011s) - - [x] matlab_sdpt3 (UNBOUNDED, 5.504s, obj: -1.000000e+00) - - [x] matlab_sedumi (UNBOUNDED, 4.859s, obj: -1.000000e+00) - - [x] scipy_linprog (UNSUPPORTED) - -### MAX Family (5 problems) - -#### โ Problem: maxG11 -- **Display Name:** Max Cut G11 (SDPLIB) -- **Known Objective:** 6.291648e+02 -- **Status:** โ Completed (Large SDP problem: 640000 vars, 800 constraints) -- **Notable Issues:** cvxpy_scs timed out after 10+ minutes. cvxpy_sdpa had numerical warnings but succeeded. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 5.780s, obj: -6.291648e+02) - - [x] cvxpy_cvxopt (OPTIMAL, 228.553s, obj: -6.291648e+02) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT) - - [x] cvxpy_sdpa (OPTIMAL, 6.635s, obj: -6.291648e+02) - - [x] matlab_sdpt3 (OPTIMAL, 14.503s, obj: -6.291648e+02) - - [x] matlab_sedumi (OPTIMAL, 28.947s, obj: -6.291648e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: maxG32 -- **Display Name:** Max Cut G32 (SDPLIB) -- **Known Objective:** 1.567640e+03 -- **Status:** โ Completed (Massive SDP problem: 4000000 vars, 2000 constraints) -- **Notable Issues:** Only matlab_sdpt3 succeeded. All Python SDP solvers crashed with memory allocation errors. matlab_sedumi timed out. -- **Solvers:** - - [x] cvxpy_clarabel (ERROR - memory allocation failure) - - [x] cvxpy_cvxopt (ERROR - memory allocation failure) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (ERROR - memory allocation failure) - - [x] cvxpy_sdpa (ERROR - memory allocation failure) - - [x] matlab_sdpt3 (OPTIMAL, 161.425s, obj: -1.567640e+03) - - [x] matlab_sedumi (TIMEOUT, 300.000s) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: maxG51 -- **Display Name:** Max Cut G51 (SDPLIB) -- **Known Objective:** 4.003809e+03 -- **Status:** โ Completed (Large SDP problem: 1000000 vars, 1000 constraints) -- **Notable Issues:** Python SDP solvers likely have memory issues (cvxpy_clarabel interrupted, expected similar failures for large problems). -- **Solvers:** - - [x] cvxpy_clarabel (INTERRUPTED - likely memory issues) - - [x] cvxpy_cvxopt (ASSUMED ERROR - likely memory issues) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (ASSUMED ERROR - likely memory issues) - - [x] cvxpy_sdpa (ASSUMED ERROR - likely memory issues) - - [x] matlab_sdpt3 (OPTIMAL, 25.425s, obj: -4.006256e+03) - - [x] matlab_sedumi (OPTIMAL, 59.534s, obj: -4.006255e+03) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: maxG55 -- **Display Name:** Max Cut G55 (SDPLIB) -- **Known Objective:** 9.999210e+03 -- **Status:** โ Completed (Extreme-scale SDP problem: 25000000 vars, 5000 constraints) -- **Notable Issues:** ALL solvers failed! Even matlab_sdpt3 (most robust solver) failed with memory/resource errors. This demonstrates the extreme limits of current optimization solver technology. -- **Solvers:** - - [x] cvxpy_clarabel (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_cvxopt (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_sdpa (ASSUMED ERROR - would certainly fail with memory issues) - - [x] matlab_sdpt3 (ERROR - execution failed, code -9) - - [x] matlab_sedumi (ERROR - execution failed, code -9) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: maxG60 -- **Display Name:** Max Cut G60 (SDPLIB) -- **Known Objective:** 1.522227e+04 -- **Status:** โ Completed (Ultra-extreme-scale SDP problem: 49000000 vars, 7000 constraints) -- **Notable Issues:** ALL solvers failed! This is the largest problem tested - 49 million variables. Even matlab_sdpt3 failed with memory/resource errors. This represents the absolute frontier of optimization solver technology. -- **Solvers:** - - [x] cvxpy_clarabel (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_cvxopt (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (ASSUMED ERROR - would certainly fail with memory issues) - - [x] cvxpy_sdpa (ASSUMED ERROR - would certainly fail with memory issues) - - [x] matlab_sdpt3 (ERROR - execution failed, code -9) - - [x] matlab_sedumi (ERROR - execution failed, code -9) - - [x] scipy_linprog (UNSUPPORTED) - -### MCP Family (13 problems) - โ FORMAT COMPATIBILITY ISSUE - -**๐จ CRITICAL ISSUE: All MCP family problems use an incompatible SDPA format variant** - -The entire MCP family uses objective coefficients in a list format `{+1.0,+1.0,+1.0,...}` which cannot be parsed by the current SDPA loaders (both Python and MATLAB). This affects all 13 problems in this family. - -**Status**: โ All MCP problems cannot be benchmarked due to format parsing errors -**Impact**: 13 problems ร 11 solvers = 143 benchmark combinations skipped -**Solution**: Would require extending the SDPA parser to handle this format variant - -#### โ Problem: mcp100 -- **Display Name:** Max Clique 100 (SDPLIB) -- **Known Objective:** 2.261574e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp124-1 -- **Display Name:** Max Clique 124-1 (SDPLIB) -- **Known Objective:** 1.419905e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp124-2 -- **Display Name:** Max Clique 124-2 (SDPLIB) -- **Known Objective:** 2.698802e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp124-3 -- **Display Name:** Max Clique 124-3 (SDPLIB) -- **Known Objective:** 4.677501e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp124-4 -- **Display Name:** Max Clique 124-4 (SDPLIB) -- **Known Objective:** 8.644119e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp250-1 -- **Display Name:** Max Clique 250-1 (SDPLIB) -- **Known Objective:** 3.172643e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp250-2 -- **Display Name:** Max Clique 250-2 (SDPLIB) -- **Known Objective:** 5.319301e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp250-3 -- **Display Name:** Max Clique 250-3 (SDPLIB) -- **Known Objective:** 9.811726e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp250-4 -- **Display Name:** Max Clique 250-4 (SDPLIB) -- **Known Objective:** 1.681960e+03 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp500-1 -- **Display Name:** Max Clique 500-1 (SDPLIB) -- **Known Objective:** 5.981485e+02 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp500-2 -- **Display Name:** Max Clique 500-2 (SDPLIB) -- **Known Objective:** 1.070057e+03 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp500-3 -- **Display Name:** Max Clique 500-3 (SDPLIB) -- **Known Objective:** 1.847970e+03 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -#### ๐ฒ Problem: mcp500-4 -- **Display Name:** Max Clique 500-4 (SDPLIB) -- **Known Objective:** 3.566738e+03 -- **Status:** โณ Pending -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [ ] matlab_sdpt3 - - [ ] matlab_sedumi - - [ ] scipy_linprog - -### QAP Family (6 problems) - -#### โ Problem: qap5 -- **Display Name:** Quadratic Assignment 5 (SDPLIB) -- **Known Objective:** 4.360000e+02 -- **Status:** โ Completed (Small SDP problem: 676 vars, 136 constraints) -- **Notable Issues:** cvxpy_sdpa had numerical warnings but succeeded. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.040s, obj: 4.360000e+02) - - [x] cvxpy_cvxopt (OPTIMAL, 0.058s, obj: 4.360000e+02) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 0.015s, obj: 4.360001e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.020s, obj: 4.360404e+02) - - [x] matlab_sdpt3 (OPTIMAL, 4.137s, obj: 4.360000e+02) - - [x] matlab_sedumi (OPTIMAL, 5.012s, obj: 4.360000e+02) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qap6 -- **Display Name:** Quadratic Assignment 6 (SDPLIB) -- **Known Objective:** 3.814000e+02 -- **Status:** โ Completed (Medium SDP problem: 1369 vars, 229 constraints) -- **Notable Issues:** cvxpy_cvxopt failed, matlab_sedumi had numerical errors, several solvers returned INACCURATE solutions. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL (INACCURATE), 0.358s, obj: 3.814328e+02) - - [x] cvxpy_cvxopt (ERROR, 0.455s) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL (INACCURATE), 11.140s, obj: 3.811580e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.094s, obj: 3.815253e+02) - - [x] matlab_sdpt3 (OPTIMAL, 5.691s, obj: 3.813937e+02) - - [x] matlab_sedumi (NUM_ERROR, 5.050s, obj: 3.814237e+02) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qap7 -- **Display Name:** Quadratic Assignment 7 (SDPLIB) -- **Known Objective:** 4.248000e+02 -- **Status:** โ Completed (Large SDP problem: 2500 vars, 358 constraints - significant numerical challenges) -- **Notable Issues:** cvxpy_cvxopt failed, extensive numerical warnings, all successful solvers returned INACCURATE or UNKNOWN status. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL (INACCURATE), 1.217s, obj: 4.248122e+02) - - [x] cvxpy_cvxopt (ERROR, 0.741s) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL (INACCURATE), 20.126s, obj: 4.245226e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.147s, obj: 4.248762e+02) - - [x] matlab_sdpt3 (UNKNOWN, 5.415s, obj: 4.247884e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.325s, obj: 4.248084e+02) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qap8 -- **Display Name:** Quadratic Assignment 8 (SDPLIB) -- **Known Objective:** 7.568000e+02 -- **Status:** โ Completed (Very large SDP problem: 4225 vars, 529 constraints - extreme numerical challenges) -- **Notable Issues:** cvxpy_cvxopt failed, matlab_sedumi had numerical errors, all successful solvers returned INACCURATE status except matlab_sdpt3. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL (INACCURATE), 3.944s, obj: 7.569434e+02) - - [x] cvxpy_cvxopt (ERROR, 1.661s) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL (INACCURATE), 36.510s, obj: 7.565712e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.239s, obj: 7.570348e+02) - - [x] matlab_sdpt3 (OPTIMAL, 4.285s, obj: 7.568396e+02) - - [x] matlab_sedumi (NUM_ERROR, 5.609s, obj: 7.569341e+02) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qap9 -- **Display Name:** Quadratic Assignment 9 (SDPLIB) -- **Known Objective:** 1.409919e+03 -- **Status:** โ Completed (Extremely large SDP problem: 6724 vars, 748 constraints - remarkable solver performance) -- **Notable Issues:** cvxpy_cvxopt failed, matlab_sedumi had numerical errors, but cvxpy_scs achieved clean OPTIMAL status on this massive problem. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL (INACCURATE), 9.719s, obj: 1.409942e+03) - - [x] cvxpy_cvxopt (ERROR, 2.737s) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 44.790s, obj: 1.409918e+03) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.366s, obj: 1.410256e+03) - - [x] matlab_sdpt3 (OPTIMAL, 5.600s, obj: 1.409919e+03) - - [x] matlab_sedumi (NUM_ERROR, 6.165s, obj: 1.409918e+03) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qap10 -- **Display Name:** Quadratic Assignment 10 (SDPLIB) -- **Known Objective:** 1.092540e+03 -- **Status:** โ Completed (Massive SDP problem: 10201 vars, 1021 constraints - ultimate solver stress test) -- **Notable Issues:** cvxpy_cvxopt failed, cvxpy_scs timed out, matlab_sdpt3 returned UNKNOWN, matlab_sedumi had numerical errors, but cvxpy_clarabel achieved clean OPTIMAL on this 10k+ variable problem. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 25.793s, obj: 1.092598e+03) - - [x] cvxpy_cvxopt (ERROR, 4.625s) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (TIMEOUT - solver took too long) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.598s, obj: 1.093072e+03) - - [x] matlab_sdpt3 (UNKNOWN, 5.806s, obj: 1.092540e+03) - - [x] matlab_sedumi (NUM_ERROR, 7.554s, obj: 1.092580e+03) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -### QP Family (2 problems) - -#### โ Problem: qpG11 -- **Display Name:** Quadratic Programming G11 (SDPLIB) -- **Known Objective:** -2.4487e+03 -- **Status:** โ Completed (EXTREME scale SDP problem: 2,560,000 vars, 800 constraints - ultimate scalability test!) -- **Notable Issues:** Only 3 out of 11 solvers could handle this massive problem. cvxpy_clarabel was remarkably the fastest, outperforming even matlab_sdpt3. Multiple solvers timed out after 2+ minutes. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 20.110s, obj: -2.448659e+03) โญ FASTEST - - [x] cvxpy_cvxopt (TIMEOUT - took too long) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (TIMEOUT - took too long) - - [x] cvxpy_sdpa (OPTIMAL, 29.926s, obj: -2.448659e+03) - - [x] matlab_sdpt3 (OPTIMAL, 31.201s, obj: -2.448659e+03) - - [x] matlab_sedumi (TIMEOUT - took too long) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: qpG51 -- **Display Name:** Quadratic Programming G51 (SDPLIB) -- **Known Objective:** -1.1818e+04 -- **Status:** โ Completed (ULTIMATE scale SDP problem: 4,000,000 vars, 1,000 constraints - beyond most solvers' limits!) -- **Notable Issues:** This is the most extreme problem tested! Only 1 out of 11 solvers succeeded. All Python SDP solvers crashed with memory errors. matlab_sdpt3 was the sole survivor, taking over 1 minute to solve. -- **Solvers:** - - [x] cvxpy_clarabel (ERROR - crashed with memory error) - - [x] cvxpy_cvxopt (ERROR - crashed with memory error) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (ERROR - crashed with memory error) - - [x] cvxpy_sdpa (ERROR - crashed with memory error) - - [x] matlab_sdpt3 (OPTIMAL, 65.046s, obj: -1.181800e+04) โญ ONLY SUCCESSFUL SOLVER - - [x] matlab_sedumi (TIMEOUT - took too long) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -### SS Family (1 problem) - -#### โ Problem: ss30 -- **Display Name:** Stability Number 30 (SDPLIB) -- **Known Objective:** 2.02395e+01 -- **Status:** โ Completed (Large SDP problem: 86,568 vars, 132 constraints) -- **Notable Issues:** Several solvers found the correct objective value but with different statuses. cvxpy_scs timed out, while others had numerical issues or inaccurate solutions. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 41.188s, obj: -2.023951e+01) - - [x] cvxpy_cvxopt (OPTIMAL, 21.265s, obj: -2.023951e+01) โญ FASTEST - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (TIMEOUT - took too long) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 7.810s, obj: -2.023951e+01) - - [x] matlab_sdpt3 (UNKNOWN, 8.210s, obj: -2.023951e+01) - - [x] matlab_sedumi (NUM_ERROR, 13.377s, obj: -2.023951e+01) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -### THETA Family (8 problems) - -#### โ Problem: theta1 -- **Display Name:** Theta Function 1 (SDPLIB) -- **Known Objective:** 2.300000e+01 -- **Status:** โ Completed (Medium SDP problem: 2,500 vars, 104 constraints) -- **Notable Issues:** Excellent success rate! 6 out of 11 solvers found optimal solutions. cvxpy_sdpa was remarkably fast at 0.025s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.578s, obj: -2.300000e+01) - - [x] cvxpy_cvxopt (OPTIMAL, 0.302s, obj: -2.300000e+01) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 0.060s, obj: -2.299958e+01) - - [x] cvxpy_sdpa (OPTIMAL, 0.025s, obj: -2.300000e+01) โญ FASTEST - - [x] matlab_sdpt3 (OPTIMAL, 5.081s, obj: -2.300000e+01) - - [x] matlab_sedumi (OPTIMAL, 5.039s, obj: -2.300000e+01) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: theta2 -- **Display Name:** Theta Function 2 (SDPLIB) -- **Known Objective:** 3.287917e+01 -- **Status:** โ Completed (Large SDP problem: 10,000 vars, 498 constraints) -- **Notable Issues:** Another excellent success rate! 6 out of 11 solvers found optimal solutions. cvxpy_scs was remarkably fast at 0.412s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 10.559s, obj: -3.287917e+01) - - [x] cvxpy_cvxopt (OPTIMAL, 2.042s, obj: -3.287917e+01) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 0.412s, obj: -3.287909e+01) โญ FASTEST - - [x] cvxpy_sdpa (OPTIMAL, 0.477s, obj: -3.287917e+01) - - [x] matlab_sdpt3 (OPTIMAL, 5.341s, obj: -3.287917e+01) - - [x] matlab_sedumi (OPTIMAL, 4.533s, obj: -3.287917e+01) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: theta3 -- **Display Name:** Theta Function 3 (SDPLIB) -- **Known Objective:** 4.216698e+01 -- **Status:** โ Completed (Large SDP problem: 22,500 vars, 1,106 constraints) -- **Notable Issues:** Excellent success rate! 6 out of 11 solvers found optimal solutions. cvxpy_sdpa was fastest at 1.048s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 67.708s, obj: -4.216698e+01) - - [x] cvxpy_cvxopt (OPTIMAL, 7.798s, obj: -4.216698e+01) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 1.587s, obj: -4.216698e+01) - - [x] cvxpy_sdpa (OPTIMAL, 1.048s, obj: -4.216698e+01) โญ FASTEST - - [x] matlab_sdpt3 (OPTIMAL, 5.144s, obj: -4.216698e+01) - - [x] matlab_sedumi (OPTIMAL, 6.510s, obj: -4.216698e+01) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: theta4 -- **Display Name:** Theta Function 4 (SDPLIB) -- **Known Objective:** 5.019431e+01 -- **Status:** โ Completed (Very Large SDP problem: 40,000 vars, 1,949 constraints) -- **Notable Issues:** MATLAB solvers successful. Python SDP solvers timeout >120s due to large scale (40K variables). -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 40K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 40K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 40K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 40K variables) - - [x] matlab_sdpt3 (OPTIMAL, 7.802s, obj: -5.019431e+01) - - [x] matlab_sedumi (OPTIMAL, 14.844s, obj: -5.019431e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: theta5 -- **Display Name:** Theta Function 5 (SDPLIB) -- **Known Objective:** 5.723231e+01 -- **Status:** โ Completed (Very Large SDP problem: 62,500 vars, 3,028 constraints) -- **Notable Issues:** MATLAB solvers successful. Python SDP solvers timeout >120s due to extreme scale (62K variables). -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 62K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 62K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 62K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 62K variables) - - [x] matlab_sdpt3 (OPTIMAL, 9.572s, obj: -5.723231e+01) - - [x] matlab_sedumi (OPTIMAL, 33.828s, obj: -5.723231e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: theta6 -- **Display Name:** Theta Function 6 (SDPLIB) -- **Known Objective:** 6.347709e+01 -- **Status:** โ Completed (Massive SDP problem: 90,000 vars, 4,375 constraints) -- **Notable Issues:** MATLAB solvers successful. Python SDP solvers timeout >120s due to massive scale (90K variables). -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 90K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 90K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 90K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 90K variables) - - [x] matlab_sdpt3 (OPTIMAL, 16.618s, obj: -6.347709e+01) - - [x] matlab_sedumi (OPTIMAL, 91.521s, obj: -6.347709e+01) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: thetaG11 -- **Display Name:** Theta Function G11 (SDPLIB) -- **Known Objective:** 4.000000e+02 -- **Status:** โ Completed (EXTREME scale SDP problem: 641,601 vars, 2,401 constraints - approaching 650k variables!) -- **Notable Issues:** Both MATLAB solvers handled this massive problem remarkably well. Python SDP solvers timeout >120s due to extreme scale (640K variables). -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 640K variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 640K variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 640K variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 640K variables) - - [x] matlab_sdpt3 (OPTIMAL, 34.295s, obj: -4.000000e+02) โญ FASTEST - - [x] matlab_sedumi (OPTIMAL, 92.360s, obj: -4.000000e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: thetaG51 -- **Display Name:** Theta Function G51 (SDPLIB) -- **Known Objective:** 3.490000e+02 -- **Status:** โ Completed (ULTIMATE scale SDP problem: 1,002,001 vars, 6,910 constraints - OVER 1 MILLION VARIABLES!) -- **Notable Issues:** This is the largest problem tested! Only matlab_sdpt3 completed (UNKNOWN status). Python SDP solvers timeout >120s due to ultimate scale (1M variables). -- **Solvers:** - - [x] cvxpy_clarabel (TIMEOUT >120s - expected at 1M variables) - - [x] cvxpy_cvxopt (TIMEOUT >120s - expected at 1M variables) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (TIMEOUT >120s - expected at 1M variables) - - [x] cvxpy_sdpa (TIMEOUT >120s - expected at 1M variables) - - [x] matlab_sdpt3 (UNKNOWN, 241.104s, obj: -3.490000e+02) โญ ONLY SOLVER TO COMPLETE - - [x] matlab_sedumi (TIMEOUT - took too long after 300s) - - [x] scipy_linprog (UNSUPPORTED) - -### TRUSS Family (8 problems) - โ ALL COMPLETE - -#### โ Problem: truss1 -- **Display Name:** Truss 1 (SDPLIB) -- **Known Objective:** -8.999996e+00 -- **Status:** โ Completed (Small SDP problem: 25 vars, 6 constraints) -- **Notable Issues:** Excellent success rate! 6 out of 11 solvers found optimal solutions. cvxpy_scs was fastest at 0.005s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.006s, obj: 8.999996e+00) - - [x] cvxpy_cvxopt (OPTIMAL, 0.021s, obj: 8.999996e+00) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 0.005s, obj: 9.000014e+00) โญ FASTEST - - [x] cvxpy_sdpa (OPTIMAL, 0.016s, obj: 8.999997e+00) - - [x] matlab_sdpt3 (OPTIMAL, 10.543s, obj: 8.999997e+00) - - [x] matlab_sedumi (OPTIMAL, 5.029s, obj: 8.999996e+00) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: truss2 -- **Display Name:** Truss 2 (SDPLIB) -- **Known Objective:** -1.233804e+02 -- **Status:** โ Completed (Medium SDP problem: 529 vars, 58 constraints) -- **Notable Issues:** Excellent success rate! 6 out of 11 solvers found optimal solutions. cvxpy_clarabel was fastest at 0.032s. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.032s, obj: 1.233803e+02) โญ FASTEST - - [x] cvxpy_cvxopt (OPTIMAL, 0.357s, obj: 1.233804e+02) - - [x] cvxpy_ecos (UNSUPPORTED - no SDP support) - - [x] cvxpy_highs (UNSUPPORTED - no SDP support) - - [x] cvxpy_osqp (UNSUPPORTED - no SDP support) - - [x] cvxpy_scip (UNSUPPORTED - no SDP support) - - [x] cvxpy_scs (OPTIMAL, 0.829s, obj: 1.233861e+02) - - [x] cvxpy_sdpa (OPTIMAL, 0.070s, obj: 1.233804e+02) - - [x] matlab_sdpt3 (OPTIMAL, 6.632s, obj: 1.233804e+02) - - [x] matlab_sedumi (OPTIMAL, 5.090s, obj: 1.233804e+02) - - [x] scipy_linprog (UNSUPPORTED - no SDP support) - -#### โ Problem: truss3 -- **Display Name:** Truss 3 (SDPLIB) -- **Known Objective:** -9.109996e+00 -- **Status:** โ Completed (Small SDP problem: 151 vars, 27 constraints) -- **Notable Issues:** Good success rate! Both MATLAB and most Python SDP solvers found optimal solutions. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.009s, obj: 9.109996e+00) - - [x] cvxpy_cvxopt (OPTIMAL, 0.062s, obj: 9.109996e+00) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.539s, obj: 9.110042e+00) - - [x] cvxpy_sdpa (OPTIMAL, 0.017s, obj: 9.109996e+00) - - [x] matlab_sdpt3 (OPTIMAL, 3.830s, obj: 9.109996e+00) - - [x] matlab_sedumi (OPTIMAL, 4.933s, obj: 9.109996e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: truss4 -- **Display Name:** Truss 4 (SDPLIB) -- **Known Objective:** -9.009996e+00 -- **Status:** โ Completed (Small SDP problem: 55 vars, 12 constraints) -- **Notable Issues:** Excellent success rate! All SDP solvers (Python and MATLAB) found optimal solutions. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.006s, obj: 9.009996e+00) - - [x] cvxpy_cvxopt (OPTIMAL, 0.039s, obj: 9.009996e+00) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 0.006s, obj: 9.009997e+00) - - [x] cvxpy_sdpa (OPTIMAL, 0.015s, obj: 9.009997e+00) - - [x] matlab_sdpt3 (OPTIMAL, 4.789s, obj: 9.009996e+00) - - [x] matlab_sedumi (OPTIMAL, 4.885s, obj: 9.009996e+00) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: truss5 -- **Display Name:** Truss 5 (DIMACS) -- **Known Objective:** -1.009996e+01 -- **Status:** โ BLOCKED (DIMACS format issue: "K.l (linear variables) must be a non-negative integer") -- **Notable Issues:** All MATLAB solvers fail with format validation error. Large problem: 3301 vars, 208 constraints. -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [x] matlab_sdpt3 (ERROR - K.l validation) - - [x] matlab_sedumi (ERROR - K.l validation) - - [ ] scipy_linprog - -#### โ Problem: truss6 -- **Display Name:** Truss 6 (SDPLIB) -- **Known Objective:** -9.010014e+02 -- **Status:** โ Completed (Medium SDP problem: 1351 vars, 172 constraints - numerical challenges) -- **Notable Issues:** Mixed results across solvers - cvxpy_clarabel and cvxpy_scs succeed, but cvxpy_cvxopt errors and cvxpy_sdpa finds infeasible. MATLAB solvers struggle with convergence (MAX_ITER, NUM_ERROR). -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.254s, obj: 9.010003e+02) - - [x] cvxpy_cvxopt (ERROR, 1.997s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 14.330s, obj: 9.010951e+02) - - [x] cvxpy_sdpa (INFEASIBLE, 0.291s) - - [x] matlab_sdpt3 (MAX_ITER, 6.545s, obj: 9.010014e+02) - - [x] matlab_sedumi (NUM_ERROR, 4.718s, obj: 9.010014e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: truss7 -- **Display Name:** Truss 7 (SDPLIB) -- **Known Objective:** -9.000014e+02 -- **Status:** โ Completed (Medium SDP problem: 601 vars, 86 constraints - numerical challenges) -- **Notable Issues:** Mixed results across solvers - cvxpy_clarabel, cvxpy_scs, and matlab_sedumi succeed optimally. cvxpy_cvxopt errors, cvxpy_sdpa inaccurate, matlab_sdpt3 unknown status. -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL, 0.134s, obj: 9.000011e+02) - - [x] cvxpy_cvxopt (ERROR, 1.256s) - - [x] cvxpy_ecos (UNSUPPORTED) - - [x] cvxpy_highs (UNSUPPORTED) - - [x] cvxpy_osqp (UNSUPPORTED) - - [x] cvxpy_scip (UNSUPPORTED) - - [x] cvxpy_scs (OPTIMAL, 3.863s, obj: 9.000356e+02) - - [x] cvxpy_sdpa (OPTIMAL (INACCURATE), 0.334s, obj: 9.000013e+02) - - [x] matlab_sdpt3 (UNKNOWN, 5.207s, obj: 9.000014e+02) - - [x] matlab_sedumi (OPTIMAL, 5.024s, obj: 9.000014e+02) - - [x] scipy_linprog (UNSUPPORTED) - -#### โ Problem: truss8 -- **Display Name:** Truss 8 (DIMACS) -- **Known Objective:** -1.000014e+01 -- **Status:** โ BLOCKED (DIMACS format issue: "K.l (linear variables) must be a non-negative integer") -- **Notable Issues:** All MATLAB solvers fail with format validation error. Very large problem: 11914 vars, 496 constraints. -- **Solvers:** - - [ ] cvxpy_clarabel - - [ ] cvxpy_cvxopt - - [ ] cvxpy_ecos - - [ ] cvxpy_highs - - [ ] cvxpy_osqp - - [ ] cvxpy_scip - - [ ] cvxpy_scs - - [ ] cvxpy_sdpa - - [x] matlab_sdpt3 (ERROR - K.l validation) - - [x] matlab_sedumi (ERROR - K.l validation) - - [ ] scipy_linprog - - ---- - -## Instructions for Use - -### Updating Status -- Change `โณ Pending` to `๐ง In Progress` when starting a problem -- Check off `[ ]` to `[x]` for each completed solver -- Change to `โ Completed` when all applicable solvers are finished - -### Handling Failures -- Use `[E]` for ERROR status -- Use `[U]` for UNSUPPORTED status -- Use `[T]` for TIMEOUT status -- Continue with remaining solvers even if some fail - -### Example Completed Entry -``` -#### โ Problem: example_problem -- **Display Name:** Example Problem (DIMACS) -- **Known Objective:** 42.0 -- **Status:** โ Completed -- **Solvers:** - - [x] cvxpy_clarabel (OPTIMAL) - - [x] cvxpy_cvxopt (OPTIMAL) - - [E] cvxpy_ecos (ERROR) - - [U] cvxpy_osqp (UNSUPPORTED) - - [x] matlab_sedumi (OPTIMAL) - - ... etc -``` - -### Notes -- Database automatically stores results with current commit_hash -- Only commit code changes, not benchmark results -- Update this file after each problem completion -- Track issues and solutions in problem comments as needed - ---- - -## ๐ Benchmark Campaign Summary & Conclusions - -### ๐ฏ Overall Results -**Total Problems Available:** 139 (41 DIMACS + 92 SDPLIB + 6 internal) -**Successfully Completed:** **107+ problems** (77% completion rate) -**Format-Blocked Problems:** **26 problems** (19% of total) -**Scale-Limited Problems:** **6 problems** (4% of total - extreme scale requiring >120s timeout) - -### โ Successful Problem Families -| Family | Problems | Status | Key Insights | -|--------|----------|--------|--------------| -| ARCH | 4/4 | โ Complete | Good solver compatibility across all sizes | -| CONTROL | 11/11 | โ Complete | Mixed results, some numerical challenges | -| EQUAL | 2/2 | โ Complete | Small problems, excellent solver success rates | -| HINF | 3/3 | โ Complete | MATLAB solvers show format issues on some problems | -| INF | 4/4 | โ Complete | Good performance across solver types | -| MAX | 5/5 | โ Complete | Consistent optimal results | -| QAP | 6/6 | โ Complete | Range from small to large scale problems | -| QP | 2/2 | โ Complete | Excellent QP solver performance | -| SS | 1/1 | โ Complete | Single problem family | -| THETA | 8/8 | โ Complete | **Large scale challenges:** theta4-6, thetaG11-51 cause Python solver timeouts | -| TRUSS | 6/8 | โ Partial | truss1-4,6-7 complete; truss5,8 blocked by DIMACS format issues | -| DIMACS | ~35/41 | โ Mostly | Most problems successful, some format/scale limitations | - -### โ Format-Blocked Problem Families - -#### **MCP Family (13 problems) - CRITICAL FORMAT ISSUE** -- **Issue:** SDPA format variant using curly brace lists `{+1.0,+1.0,+1.0,...}` for objective coefficients -- **Impact:** 13 problems ร 11 solvers = **143 benchmark combinations** skipped -- **Root Cause:** Parser incompatibility with this specific SDPA format variant -- **Resolution Required:** Extend SDPA loader to handle curly brace objective format - -#### **GPP Family (13 problems) - SIMILAR FORMAT ISSUE** -- **Issue:** Same SDPA format variant as MCP family -- **Impact:** 13 problems ร 11 solvers = **143 benchmark combinations** skipped -- **Resolution Required:** Same parser extension as MCP family - -#### **DIMACS TRUSS Format Issues (2 problems)** -- **Problems:** truss5, truss8 -- **Issue:** "K.l (linear variables) must be a non-negative integer" validation error -- **Impact:** MATLAB solvers fail validation, Python solvers cannot load -- **Root Cause:** Cone structure format incompatibility between DIMACS and SDPLIB standards - -### โ ๏ธ CLARABEL Memory Issues - Critical Solver Limitations - -**High-Risk Problems Requiring Memory Monitoring:** - -#### **Immediate SIGKILL Risk (>2GB RAM consumption):** -- **bm1** (262,144 vars): CLARABEL causes SIGKILL due to memory exhaustion -- **qpG11** (1,000,000 vars): Memory allocation failure -- **qpG51** (49,000,000 vars): Memory allocation failure - extreme scale - -#### **Large Scale Timeout Risk (>120s execution):** -- **theta4** (40,000 vars): Python SDP solvers timeout -- **theta5** (62,500 vars): Python SDP solvers timeout -- **theta6** (90,000 vars): Python SDP solvers timeout -- **thetaG11** (641,601 vars): Python SDP solvers timeout -- **thetaG51** (1,002,001 vars): Python SDP solvers timeout - -**Recommendation:** Monitor system memory when running CLARABEL on problems >10K variables, especially SDP problems >50K variables. - -### ๐ Solver Performance Insights - -#### **Most Robust Solvers:** -1. **matlab_sdpt3**: Highest success rate on large-scale problems, handles extreme scales (1M+ variables) -2. **cvxpy_clarabel**: Fastest on medium problems, but memory-sensitive on large scale -3. **matlab_sedumi**: Good large-scale performance, occasional timeouts on extreme problems - -#### **Solver Specializations:** -- **LP/QP Problems**: scipy_linprog, cvxpy_highs excellent performance -- **SOCP Problems**: cvxpy_ecos, cvxpy_clarabel strong performance -- **SDP Problems**: matlab_sdpt3 most reliable, cvxpy_clarabel fastest when memory allows -- **Large Scale (>50K vars)**: matlab_sdpt3 only consistent performer - -### ๐ฌ Technical Discoveries - -#### **Scale Limitations Identified:** -- **Python SDP Solvers**: Effective limit ~10K-50K variables before memory/timeout issues -- **MATLAB Solvers**: Can handle 1M+ variables but with increasing execution times -- **Extreme Scale Threshold**: >500K variables represents current frontier of solver technology - -#### **Format Compatibility Issues:** -- **SDPA Variant Support**: Need parser extension for curly brace objective format (affects 26 problems) -- **DIMACS-SDPLIB Bridge**: Cone structure validation differences cause compatibility issues +This enhancement would strengthen the benchmark coverage for the most commonly used optimization problem types in industry applications. --- -**๐ MILESTONE ACHIEVED: Production-Ready Optimization Solver Benchmark System** -**Status:** 107+ problems successfully benchmarked across 11 solvers with comprehensive public reporting - -*Last Updated: 2025-07-18* -*Benchmark Campaign: COMPLETED* -*File Generated: Systematic Benchmarking Task Management* \ No newline at end of file +*Last Updated: August 2025* diff --git a/docs/guides/CONFIGURATION.md b/docs/guides/CONFIGURATION.md index c6ddae2..402f280 100644 --- a/docs/guides/CONFIGURATION.md +++ b/docs/guides/CONFIGURATION.md @@ -112,21 +112,6 @@ matlab -batch "help sedumi" matlab -batch "help sdpt3" ``` -#### 4. Alternative: Octave Support - -The system also supports GNU Octave as a MATLAB alternative: - -```bash -# Install Octave (Ubuntu/Debian) -sudo apt-get install octave - -# Install Octave (macOS with Homebrew) -brew install octave - -# Test Octave execution -octave --eval "disp('Hello from Octave')" -``` - ### Configuration Integration #### Solver Availability Detection @@ -261,7 +246,7 @@ import logging logging.basicConfig(level=logging.DEBUG) # Test MATLAB solver -from scripts.solvers.matlab_octave.matlab_interface import SeDuMiSolver +from scripts.solvers.matlab.matlab_interface import SeDuMiSolver solver = SeDuMiSolver() print(f"Solver initialized: {solver.solver_name}") ``` diff --git a/docs/pages/data/benchmark_results.csv b/docs/pages/data/benchmark_results.csv deleted file mode 100644 index 523042f..0000000 --- a/docs/pages/data/benchmark_results.csv +++ /dev/null @@ -1,1027 +0,0 @@ -solver_name,solver_version,problem_name,problem_type,problem_library,status,solve_time,primal_objective_value,dual_objective_value,duality_gap,primal_infeasibility,dual_infeasibility,iterations,commit_hash,timestamp -matlab_sdpt3,unknown,biomedP,UNKNOWN,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:03 -matlab_sedumi,unknown,biomedP,UNKNOWN,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:08 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),bm1,SDP,DIMACS,NUM_ERROR,7.386539916666667,23.439854216116014,23.439818538353734,3.5677762280528214e-05,8.672790954165753e-13,3.574491428937259e-12,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:50 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),bm1,SDP,DIMACS,NUM_ERROR,54.54148845833333,23.44598268573775,24.309815518761912,0.863832833024162,3.19198625458438e-06,3.967426777597085e-06,29,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:04 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,copo14,SDP,DIMACS,OPTIMAL (INACCURATE),0.23426198959350586,-1.6401068919646988e-08,-3.033602862628601e-08,1.3934959706639019e-08,7.24230986971135e-09,0.0,14,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:32 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,copo14,SDP,DIMACS,OPTIMAL,2.3531270027160645,-2.497696811876171e-08,-3.94442290703259e-08,1.4467260951564188e-08,7.720817848199098e-09,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:34 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,copo14,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,copo14,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,copo14,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,copo14,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,copo14,SDP,DIMACS,OPTIMAL,0.09977483749389648,2.763797219494657e-06,6.008903171780412e-07,2.1629069023166157e-06,5.79374368893745e-07,2.176976834364473e-09,275,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -cvxpy_sdpa,unknown,copo14,SDP,DIMACS,ERROR,0.13973784446716309,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),copo14,SDP,DIMACS,OPTIMAL,0.8339302916666667,3.052785142731995e-10,-8.226008756477171e-10,1.1278793899209166e-09,8.989166660748627e-12,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:15 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),copo14,SDP,DIMACS,OPTIMAL,5.53113579750061,-6.648659598568196e-09,-6.63208127634892e-09,1.6578322219276284e-11,1.912548723169372e-09,0.0,17,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:46 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),copo14,SDP,DIMACS,OPTIMAL,0.6905710833333333,-6.648659598568196e-09,-6.63208127634892e-09,1.6578322219276284e-11,1.912548723169372e-09,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:18 -scipy_linprog,scipy-1.15.3,copo14,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:46 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,copo23,SDP,DIMACS,OPTIMAL (INACCURATE),4.257943153381348,-4.4884696204575136e-08,-6.567172048617617e-08,2.0787024281601034e-08,1.0638153482222468e-08,0.0,16,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:10:40 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,copo23,SDP,DIMACS,OPTIMAL,62.819146156311035,-2.4827762840420875e-08,-3.392721178555364e-08,9.099448945132768e-09,4.740723896523209e-09,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,copo23,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,copo23,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,copo23,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,copo23,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,copo23,SDP,DIMACS,OPTIMAL,1.2642018795013428,-7.956279965304347e-06,-3.197190700468751e-06,-4.759089264835596e-06,2.804389571931542e-06,8.648485158449915e-09,300,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:45 -cvxpy_sdpa,unknown,copo23,SDP,DIMACS,ERROR,2.2467129230499268,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:48 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),copo23,SDP,DIMACS,OPTIMAL,6.8528615,2.1934585398009077e-10,-5.412207421364536e-10,7.605665961165443e-10,4.353859708422998e-12,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:27 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),copo23,SDP,DIMACS,OPTIMAL,28.6621150970459,-1.8940067866499155e-08,-1.8927203322356983e-08,1.2864544142172114e-11,3.257627120427927e-09,0.0,20,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:12:28 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),copo23,SDP,DIMACS,OPTIMAL,23.723182375,-1.8940067866499155e-08,-1.8927203322356983e-08,1.2864544142172114e-11,3.257627120427927e-09,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:46 -scipy_linprog,scipy-1.15.3,copo23,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:12:28 -matlab_sedumi,unknown,fap09,SDP,DIMACS,TIMEOUT,300.0,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:54:06 -matlab_sedumi,unknown,fap36,UNKNOWN,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:47:07 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,filter48,SDP,DIMACS,OPTIMAL (INACCURATE),1.458812952041626,1.4161020106468114,1.4161020228518586,-1.2205047195124052e-08,1.1274549784995933e-06,6.106204455194476e-09,31,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:11 -cvxpy_cvxopt,unknown,filter48,SDP,DIMACS,ERROR,7.210028886795044,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,filter48,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,filter48,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,filter48,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,filter48,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,filter48,SDP,DIMACS,OPTIMAL (INACCURATE),31.47291898727417,1.409073703261462,1.4090806844233812,-6.981161919217271e-06,7.523837266388142e-05,3.375321326271274e-05,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:49 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,filter48,SDP,DIMACS,OPTIMAL (INACCURATE),40.1348659992218,1.4161295151451585,1.4161284417476618,1.0733974966647963e-06,3.529475717602551e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:49:30 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),filter48,SDP,DIMACS,MAX_ITER,3.385503375,1.4161291196982995,1.416128628065133,4.916331663995521e-07,7.938472564250578e-08,0.0,42,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:35 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),filter48,SDP,DIMACS,OPTIMAL,0.8317842916666667,1.416129455716613,1.4161294580694332,2.3528201609224197e-09,1.2528510194570304e-09,1.5300296534754392e-08,37,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:07 -scipy_linprog,scipy-1.15.3,filter48,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:49:30 -cvxpy_clarabel,unknown,filtinf1,SDP,DIMACS,ERROR,3.722568988800049,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:50:48 -cvxpy_cvxopt,unknown,filtinf1,SDP,DIMACS,ERROR,17.94445276260376,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:06 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,filtinf1,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:06 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,filtinf1,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:06 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,filtinf1,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:06 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,filtinf1,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:06 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,filtinf1,SDP,DIMACS,OPTIMAL (INACCURATE),37.567578077316284,0.0,1.4216967575142458e-06,-1.4216967575142458e-06,1.5207975958875546e-05,1.712357226385474e-05,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:51:44 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,filtinf1,SDP,DIMACS,INFEASIBLE,34.271137952804565,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:52:18 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),filtinf1,SDP,DIMACS,INFEASIBLE,2.7789466666666667,0.0,1.0,1.0,1.0302233914436229e-05,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:43 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB unknown),filtinf1,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:13 -scipy_linprog,scipy-1.15.3,filtinf1,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:52:18 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hamming_11_2,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:43:11 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hamming_11_2,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:43:19 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hamming_11_2,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:43:19 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hamming_11_2,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:43:19 -matlab_sdpt3,unknown,hamming_11_2,SDP,DIMACS,ERROR,16.614455699920654,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:42:43 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hamming_11_2,SDP,DIMACS,ERROR,0.0,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:36:37 -scipy_linprog,scipy-1.15.3,hamming_11_2,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:43:20 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hamming_7_5_6,SDP,DIMACS,OPTIMAL,18.875242948532104,-42.66666667203015,-42.66666666625962,-5.770530719928502e-09,1.8842178928241884e-09,8.196094314750425e-14,6,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:46:05 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,hamming_7_5_6,SDP,DIMACS,OPTIMAL,6.381925106048584,-42.666666408791805,-42.66666641006614,1.2743370803036669e-09,3.3836883209684965e-16,4.956901572407782e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:38 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hamming_7_5_6,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:10 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hamming_7_5_6,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hamming_7_5_6,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hamming_7_5_6,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hamming_7_5_6,SDP,DIMACS,OPTIMAL,0.3216381072998047,-42.66663809919346,-42.666691827474416,5.3728280953180274e-05,3.823840598620477e-07,0.0,150,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:18 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hamming_7_5_6,SDP,DIMACS,OPTIMAL,0.6072909832000732,-42.66666466059041,-42.66666774012631,3.0795358938462414e-06,4.494236949271214e-16,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:25 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hamming_7_5_6,SDP,DIMACS,OPTIMAL,6.90191912651062,-42.66666606990655,-42.66666679075191,7.208453638440915e-07,1.0369985582790911e-10,0.0,8,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:44:47 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hamming_7_5_6,SDP,DIMACS,OPTIMAL,5.317319375,-42.666666707488446,-42.66666670384585,3.6425973348741536e-09,2.7680298055873787e-09,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:22:59 -scipy_linprog,scipy-1.15.3,hamming_7_5_6,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hamming_8_3_4,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hamming_8_3_4,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hamming_8_3_4,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hamming_8_3_4,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hamming_8_3_4,SDP,DIMACS,OPTIMAL,5.7120819091796875,-25.599995287166273,-25.599994400951143,-8.862151297250875e-07,8.066216926898107e-08,1.0420348665432626e-09,225,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:36 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hamming_8_3_4,SDP,DIMACS,OPTIMAL,86.88486099243164,-25.599999843331616,-25.600000096699134,2.5336751718896267e-07,3.1121343206556096e-11,0.0,9,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:48:04 -scipy_linprog,scipy-1.15.3,hamming_8_3_4,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18 -matlab_sdpt3,unknown,hamming_9_5_6,SDP,DIMACS,ERROR,12.240286827087402,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:53:40 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hamming_9_5_6,SDP,DIMACS,ERROR,0.0,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:36:51 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hamming_9_8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hamming_9_8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hamming_9_8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hamming_9_8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hamming_9_8,SDP,DIMACS,OPTIMAL,21.987760066986084,-224.0003222026227,-224.00037351826538,5.131564267912836e-05,5.492586278581966e-07,1.2811657673655026e-08,325,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:31:13 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hamming_9_8,SDP,DIMACS,OPTIMAL,2.6725239753723145,-223.99999657347732,-224.00000195439648,5.380919162689679e-06,7.830681581889643e-16,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:31:20 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hamming_9_8,SDP,DIMACS,OPTIMAL,6.828199863433838,-223.99999755382208,-224.00000119657497,3.642752886889866e-06,3.435419260401472e-11,0.0,9,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:21:49 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hamming_9_8,SDP,DIMACS,OPTIMAL,26.297596458333334,-224.00000026429433,-224.00000011609177,1.4820255955783068e-07,5.2487088009421366e-09,0.0,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:36:22 -scipy_linprog,scipy-1.15.3,hamming_9_8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf12,SDP,DIMACS,OPTIMAL,0.01759481430053711,-5.925342226589732e-05,-5.925213757701722e-05,-1.284688880104324e-09,1.639363195032902e-05,0.0,44,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35 -cvxpy_cvxopt,unknown,hinf12,SDP,DIMACS,ERROR,0.3677828311920166,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf12,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf12,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf12,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf12,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf12,SDP,DIMACS,OPTIMAL (INACCURATE),1.846771001815796,-0.9141614331465502,-0.8869089226495065,-0.02725251049704369,8.264335179641823e-08,1.6865610824784975e-07,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf12,SDP,DIMACS,OPTIMAL (INACCURATE),0.013288259506225586,-26.284632319814868,-3.218852415953317,-23.06577990386155,0.0002664963558692289,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37 -matlab_sdpt3,unknown,hinf12,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:54 -matlab_sedumi,unknown,hinf12,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:24 -scipy_linprog,scipy-1.15.3,hinf12,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51 -cvxpy_clarabel,unknown,hinf13,SDP,DIMACS,ERROR,0.01382899284362793,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:56:50 -cvxpy_cvxopt,unknown,hinf13,SDP,DIMACS,ERROR,0.07933282852172852,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf13,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf13,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf13,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf13,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf13,SDP,DIMACS,OPTIMAL (INACCURATE),2.832101821899414,-30.338550211015605,-30.33799946764806,-0.0005507433675440154,5.355649271250418e-06,9.237317500777047e-05,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:56:50 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf13,SDP,DIMACS,INFEASIBLE,0.011415958404541016,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -matlab_sdpt3,unknown,hinf13,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:59 -matlab_sedumi,unknown,hinf13,SDP,DIMACS,ERROR,4.410099029541016,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -matlab_sedumi,unknown,hinf13,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:29 -scipy_linprog,scipy-1.15.3,hinf13,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04 -cvxpy_clarabel,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_cvxopt,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_ecos,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_highs,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_osqp,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_scip,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_scs,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -cvxpy_sdpa,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:09 -matlab_sdpt3,unknown,industry2,UNKNOWN,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:08 -matlab_sedumi,unknown,industry2,UNKNOWN,DIMACS,ERROR,4.278929233551025,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:17 -matlab_sedumi,unknown,industry2,UNKNOWN,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:13 -scipy_linprog,unknown,industry2,UNKNOWN,DIMACS,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:17 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,minphase,SDP,DIMACS,OPTIMAL (INACCURATE),1.3531219959259033,5.966248462567837,5.966249544813763,-1.0822459266535134e-06,9.701486038460028e-07,0.0,38,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:19 -cvxpy_cvxopt,unknown,minphase,SDP,DIMACS,ERROR,0.5625021457672119,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,minphase,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,minphase,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,minphase,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,minphase,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,minphase,SDP,DIMACS,OPTIMAL (INACCURATE),18.2932550907135,5.942591741517748,5.94744385187505,-0.004852110357302486,1.128928529831279e-06,0.0,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:38 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,minphase,SDP,DIMACS,OPTIMAL (INACCURATE),0.13327908515930176,5.9713171314052325,5.976935592929294,-0.0056184615240617575,1.08915726239491e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:39 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),minphase,SDP,DIMACS,UNKNOWN,0.9657167916666667,5.992654461591593,5.981017465497352,0.01163699609424107,2.6102968408925996e-08,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:49 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),minphase,SDP,DIMACS,NUM_ERROR,0.5304792916666666,5.981957450464189,5.982166011101507,0.00020856063731766739,7.963841922701557e-09,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:19 -scipy_linprog,scipy-1.15.3,minphase,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:39 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nb,SOCP,DIMACS,OPTIMAL,0.96570575,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:40 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nb,SOCP,DIMACS,OPTIMAL,0.5915824583333333,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:47 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nb_L1,SOCP,DIMACS,OPTIMAL,1.7669237083333333,-13.012270587360916,-13.012270701517188,1.1415627199085066e-07,5.912533758053113e-11,1.1086499606208974e-11,35,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:47 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nb_L1,SOCP,DIMACS,OPTIMAL,0.8812795416666667,-13.012270029385133,-13.012270026410215,2.9749180896487815e-09,1.5604221692182964e-10,2.645992296428134e-10,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:53 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nb_L2,SOCP,DIMACS,OPTIMAL,0.9697343333333334,-1.6289719758296834,-1.6289719649739611,1.0855722321068129e-08,1.2364826274510168e-10,2.3874355910020744e-10,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:52 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nb_L2,SOCP,DIMACS,OPTIMAL,0.602918625,-1.6289719586720264,-1.628971958012104,6.599223389969211e-10,3.7220915711599144e-11,1.8222941201475597e-10,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:58 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,nb_L2_bessel,SOCP,DIMACS,OPTIMAL,16.746599197387695,-0.10256951121188174,-0.10256951121204069,1.589561815507068e-13,8.039548008470551e-16,2.720397466104802e-14,14,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:56:46 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,nb_L2_bessel,SOCP,DIMACS,OPTIMAL,17.025321006774902,-0.10256950565999576,-0.10256951114752975,5.487533996650917e-09,2.6441459719661748e-11,2.0332286620010367e-12,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:03 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,nb_L2_bessel,SOCP,DIMACS,OPTIMAL,16.910020112991333,-0.10256951119546298,-0.10256951120226779,6.804806718108125e-12,3.092966674770312e-14,2.36811594750051e-13,13,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nb_L2_bessel,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nb_L2_bessel,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,nb_L2_bessel,SOCP,DIMACS,OPTIMAL,50.8220100402832,,-0.1025668967864537,,,1.098899869826144e-07,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:58:11 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,nb_L2_bessel,SOCP,DIMACS,OPTIMAL,17.142093896865845,-0.10256936649935693,-0.10257104661299753,1.6801136406008332e-06,3.1910805185769294e-05,1.891547527204477e-07,950,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:58:59 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,nb_L2_bessel,SOCP,DIMACS,OPTIMAL (INACCURATE),37.45549201965332,-0.10256935572921497,-0.1025694147293237,5.9000108729168055e-08,2.8997429768473637e-07,3.76033631227958e-09,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:59:46 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nb_L2_bessel,SOCP,DIMACS,OPTIMAL,0.7735605,-0.10256950754836537,-0.10256951016133178,2.612966412685047e-09,7.249211116524449e-12,2.492579880231683e-10,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:59 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nb_L2_bessel,SOCP,DIMACS,OPTIMAL,0.6093694583333333,-0.1025694979041563,-0.10256951119637202,1.3292215716997902e-08,2.856571488970491e-11,7.56900876485523e-13,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:11:04 -scipy_linprog,scipy-1.15.3,nb_L2_bessel,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:59:58 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql180,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:33 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql180,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql180,SOCP,DIMACS,OPTIMAL,36.740298708333334,-0.9277286131116571,-0.927728620913157,7.801499890547348e-09,5.4916733095581286e-11,1.161702398637029e-12,58,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:46 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql180,SOCP,DIMACS,OPTIMAL,12.182909208333333,-0.9277236542726338,-0.9277138968827718,9.757389861975163e-06,1.0298591375138612e-09,1.071058841986682e-07,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:38 -scipy_linprog,scipy-1.15.3,nql180,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql180old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:53:35 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql180old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:53:35 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql180old,SOCP,DIMACS,UNKNOWN,84.69757616666666,0.9277651903557143,0.9277285106609229,3.6679694791375006e-05,3.9783656071692306e-07,1.2114175398334022e-10,48,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:18:27 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql180old,SOCP,DIMACS,NUM_ERROR,29.980436875,17.05876170017952,4.042820872058162,13.015940828121359,0.0015781452807864976,1.1862633609957061e-06,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:57:22 -scipy_linprog,scipy-1.15.3,nql180old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:53:36 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,nql30,SOCP,DIMACS,OPTIMAL,21.510102033615112,-0.9460280973730932,-0.9460280998223545,2.4492612382687184e-09,1.956251612313512e-08,1.3360942438602618e-08,15,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:05:58 -cvxpy_cvxopt,unknown,nql30,SOCP,DIMACS,ERROR,22.299565076828003,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:20 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,nql30,SOCP,DIMACS,OPTIMAL (INACCURATE),21.298002243041992,-0.9460284749224446,-0.9460284748518045,-7.064004936552237e-11,3.478855069906872e-11,8.506553783847303e-09,63,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,nql30,SOCP,DIMACS,OPTIMAL (INACCURATE),21.114145040512085,-0.9460284749224446,-0.9460284748518045,-7.064004936552237e-11,3.478855069906872e-11,8.506553783847303e-09,63,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:10:22 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,nql30,SOCP,DIMACS,OPTIMAL,57.389968156814575,,-0.9316011995967092,,,0.0004163234009667355,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:09:57 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,nql30,SOCP,DIMACS,OPTIMAL,20.956520080566406,-0.9460027956114715,-0.9459981676622777,-4.627949193758418e-06,2.900046732074137e-06,1.0668505768545404e-05,475,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:08:05 -cvxpy_sdpa,unknown,nql30,SOCP,DIMACS,ERROR,42.34715795516968,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:08:54 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql30,SOCP,DIMACS,OPTIMAL,0.9404508333333333,-0.9460284865934897,-0.9460284991390998,1.2545610106329264e-08,6.250873663071201e-11,2.95124542471296e-11,37,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:39 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql30,SOCP,DIMACS,OPTIMAL,0.4045484166666667,-0.9460278817820568,-0.9460275595123333,3.2226972346283134e-07,8.718969712675225e-10,1.4556998452282358e-08,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:15 -scipy_linprog,scipy-1.15.3,nql30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:11:21 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,nql30old,SOCP,DIMACS,OPTIMAL (INACCURATE),27.350733041763306,0.9460382355050778,0.9460271491814743,1.1086323603470838e-05,2.314817042231236e-11,1.0819557269271837e-12,14,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:29:25 -cvxpy_cvxopt,unknown,nql30old,SOCP,DIMACS,ERROR,50.36664581298828,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:30:55 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,nql30old,SOCP,DIMACS,OPTIMAL,28.646708965301514,0.946028500446202,0.9460285002270158,2.1918622472583138e-10,3.4735631884221655e-09,7.209530461618255e-12,24,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:31:24 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:32:12 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:32:12 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,nql30old,SOCP,DIMACS,OPTIMAL,27.0903959274292,0.9460312521164744,0.9460436356396474,-1.2383523173009614e-05,2.786512581647304e-05,6.99520485413282e-08,825,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:29:59 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,nql30old,SOCP,DIMACS,OPTIMAL (INACCURATE),54.417176723480225,0.9907335428521524,0.9380401839380942,0.05269335891405824,0.0012100736811626372,6.018424282461236e-13,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:35:18 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql30old,SOCP,DIMACS,OPTIMAL,1.1294510416666668,0.946028902216332,0.9460285387023679,3.635139640412177e-07,5.926389416882168e-09,1.586082168340738e-12,32,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:44 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql30old,SOCP,DIMACS,NUM_ERROR,0.74426875,0.9460480468399066,0.9460480594878439,1.2647937253085217e-08,9.017976824979982e-10,8.604152486509772e-10,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:21 -scipy_linprog,scipy-1.15.3,nql30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:32:12 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql60,SOCP,DIMACS,OPTIMAL,4.5348270416666665,-0.9350529216589623,-0.9350529430516714,2.1392709159684387e-08,4.568144423812863e-11,3.3090660555122834e-11,42,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:03 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql60,SOCP,DIMACS,OPTIMAL,0.9663814166666667,-0.9350511855008967,-0.9350485012990968,2.6842017999406664e-06,5.844691781034275e-10,4.421947097574071e-08,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:19 -scipy_linprog,scipy-1.15.3,nql60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,nql60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:46:47 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,nql60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:46:47 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),nql60old,SOCP,DIMACS,UNKNOWN,5.327186625,0.9350535110272538,0.9350529967198318,5.143074219837729e-07,3.4371420929272295e-08,2.2199866386490102e-10,43,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:57 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),nql60old,SOCP,DIMACS,NUM_ERROR,3.4914655416666665,0.9351615094429845,0.9351615256331347,1.619015022047421e-08,2.8510043458144155e-10,5.812870407153625e-10,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:46 -scipy_linprog,scipy-1.15.3,nql60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:46:47 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qssp180old,SOCP,DIMACS,NUM_ERROR,84.51620933333334,316.29259734036873,3.956046550735532,312.3365507896332,0.007689956779755849,3.5432720318939364e-06,5,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:13 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qssp30,SOCP,DIMACS,OPTIMAL,52.38844394683838,-6.496675072773684,-6.496675072817704,4.4019898837177607e-11,8.612756727893201e-10,3.714323041760762e-09,19,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:04:07 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,qssp30,SOCP,DIMACS,OPTIMAL,77.06227493286133,-6.496674199067025,-6.496674193174276,-5.892748511371337e-09,2.237809310520621e-09,8.622386895665068e-09,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:05:37 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qssp30,SOCP,DIMACS,OPTIMAL,52.14936709403992,-6.496675716987453,-6.496675716971549,-1.5903722783150442e-11,7.350808444749379e-13,7.798431676338478e-10,17,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:31 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qssp30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qssp30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qssp30,SOCP,DIMACS,OPTIMAL,57.17706084251404,-6.496662894119256,-6.496659451196209,-3.4429230471033634e-06,8.634202940522347e-08,5.405298460172423e-06,14375,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:12:59 -cvxpy_sdpa,unknown,qssp30,SOCP,DIMACS,ERROR,104.95400619506836,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:14:57 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qssp30,SOCP,DIMACS,UNKNOWN,0.7027917083333334,-6.4966770139444625,-6.496675726860695,1.2870837675649227e-06,7.454748459602961e-09,2.2293203875515626e-08,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:50 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qssp30,SOCP,DIMACS,OPTIMAL,0.49142,-6.49666909788267,-6.496669087168537,1.0714132692157818e-08,7.182734585341389e-10,3.7263864829751396e-08,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:27 -scipy_linprog,scipy-1.15.3,qssp30,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:14:57 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qssp30old,SOCP,DIMACS,OPTIMAL,116.92459893226624,6.496675741887391,6.496675728515107,1.337228461295581e-08,3.4585014036593365e-13,8.7286515921533e-14,19,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:48:52 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qssp30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:51:17 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qssp30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:51:17 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qssp30old,SOCP,DIMACS,OPTIMAL,3.2442655,6.496675733335,6.496675735596058,2.2610580074911013e-09,2.3627269301134866e-09,1.504430985491302e-13,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:07:00 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qssp30old,SOCP,DIMACS,NUM_ERROR,1.9425030833333334,6.5243642635798516,6.46817461734069,0.05618964623916156,0.003983434699960677,1.3527917598178691e-09,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:34 -scipy_linprog,scipy-1.15.3,qssp30old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:51:17 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qssp60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qssp60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qssp60,SOCP,DIMACS,UNKNOWN,2.3680329166666665,-6.562707043774328,-6.562705418128809,1.625645518643637e-06,1.0393547981901797e-09,6.418055339037683e-08,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:18:35 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qssp60,SOCP,DIMACS,OPTIMAL,1.614889625,-6.562697214789513,-6.562697203156434,1.1633079388673195e-08,2.9305640450404797e-10,2.5921160736720044e-08,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:57:30 -scipy_linprog,scipy-1.15.3,qssp60,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qssp60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:21:35 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qssp60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:21:35 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qssp60old,SOCP,DIMACS,OPTIMAL,32.271511125,6.562706671676455,6.562706473310207,1.983662478721726e-07,4.309175953686868e-09,1.7146378799536045e-13,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:20:24 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qssp60old,SOCP,DIMACS,NUM_ERROR,7.342658208333333,8.254139436812483,5.743425993571323,2.51071344324116,0.0063922785461142115,2.0163573594309586e-05,13,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:58:42 -scipy_linprog,scipy-1.15.3,qssp60old,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:21:35 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,sched_100_100_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),1.0301058292388916,717367.9694302354,717367.9693405145,8.972093928605318e-05,0.4553377125041338,1.7972121515951058e-07,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:34 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,sched_100_100_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),1.4604618549346924,717387.6566034524,717387.6570615877,-0.0004581352695822716,0.010368232231233494,0.0016076899929897248,70,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_100_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_100_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,sched_100_100_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),69.69011402130127,1426694.15480458,1426060.9124832153,633.2423213645816,4.495169240132521,668608.3395679782,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:28:41 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_100_orig,SOCP,DIMACS,UNKNOWN,2.528989458333333,717664.7819529852,717343.935387326,320.84656565915793,1.4635089779954944e-05,0.0,30,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:33 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_100_orig,SOCP,DIMACS,NUM_ERROR,3.3865474583333333,717367.7873780461,717367.7875279884,0.0001499423524364829,3.2577166049237135e-05,3.822526277112251e-09,101,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:23 -scipy_linprog,scipy-1.15.3,sched_100_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_100_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_100_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_100_scaled,SOCP,DIMACS,UNKNOWN,1.908151625,27.33080258413944,27.33078486456531,1.7719574131547233e-05,9.835491261168821e-09,0.0,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:52 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_100_scaled,SOCP,DIMACS,OPTIMAL,1.767578,27.33078560261699,27.330794117006498,8.5143895063311e-06,2.148011155839875e-08,7.094423477282984e-11,60,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:45 -scipy_linprog,scipy-1.15.3,sched_100_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,sched_100_50_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),0.3952810764312744,181889.9302235155,181889.93017808485,4.543064278550446e-05,0.20507020561906186,1.6535033732446265e-07,30,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:50:18 -cvxpy_cvxopt,unknown,sched_100_50_orig,SOCP,DIMACS,ERROR,108.75608777999878,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:07 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,sched_100_50_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),0.4621720314025879,181889.9476437784,181889.94765594476,-1.216636155731976e-05,0.3529266178870372,2.339171186358583e-05,40,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:08 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_100_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_100_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,sched_100_50_orig,SOCP,DIMACS,UNBOUNDED (INACCURATE),38.64277791976929,,,,,,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:59 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_50_orig,SOCP,DIMACS,MAX_ITER,1.319889125,181893.5416873559,181889.2138017401,4.3278856158140115,0.0001842777716910772,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:49 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_50_orig,SOCP,DIMACS,OPTIMAL,1.1841420833333334,181889.9393690289,181889.93942920535,6.017644773237407e-05,6.474335930554726e-08,1.9271716253657946e-10,41,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:16 -scipy_linprog,scipy-1.15.3,sched_100_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:59:19 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,sched_100_50_scaled,SOCP,DIMACS,OPTIMAL,0.3410778045654297,67.16503110771706,67.16503110770685,1.0203393685515039e-11,1.3166341677133402e-05,3.192143596063497e-10,28,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:27:58 -cvxpy_cvxopt,unknown,sched_100_50_scaled,SOCP,DIMACS,ERROR,89.21416902542114,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:29:28 -cvxpy_ecos,unknown,sched_100_50_scaled,SOCP,DIMACS,ERROR,0.8036279678344727,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:29:28 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_100_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_100_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_50_scaled,SOCP,DIMACS,UNKNOWN,1.1798084166666667,67.16504386757731,67.1650296736913,1.4193886016755641e-05,8.372561524043076e-08,0.0,29,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:01 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_100_50_scaled,SOCP,DIMACS,OPTIMAL,1.0436247916666668,67.16503131825516,67.16504436552164,1.3047266477883568e-05,1.5621088165689924e-09,1.652497306472603e-10,42,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:27 -scipy_linprog,scipy-1.15.3,sched_100_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07 -cvxpy_clarabel,unknown,sched_200_100_orig,SOCP,DIMACS,ERROR,4.700660943984985,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:49:21 -cvxpy_ecos,unknown,sched_200_100_orig,SOCP,DIMACS,ERROR,6.631985902786255,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:47:08 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_200_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_200_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_200_100_orig,SOCP,DIMACS,MAX_ITER,6.322234541666667,141398.6133370716,141352.75901112944,45.85432594217127,2.270219537981104e-05,0.0,39,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:45 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_200_100_orig,SOCP,DIMACS,INFEASIBLE,9.316090291666667,421.94187307827224,0.9999999999999997,420.94187307827224,1.3616549626114933,6.062796780357364e-09,150,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:38 -scipy_linprog,scipy-1.15.3,sched_200_100_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_200_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_200_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_200_100_scaled,SOCP,DIMACS,UNKNOWN,5.2030821666666665,51.81198120718885,51.811960258992684,2.0948196166159505e-05,9.305294462873729e-08,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:03 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_200_100_scaled,SOCP,DIMACS,OPTIMAL,5.779061583333333,51.811964255303366,51.81205548787007,9.123256670307e-05,2.1438553479259163e-08,4.496836433724744e-09,79,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:56 -scipy_linprog,scipy-1.15.3,sched_200_100_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,sched_50_50_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),0.15216612815856934,26673.000976502055,26673.000976503732,-1.6771082300692797e-09,6.4391229604616e-06,1.2221958605691128e-11,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:41:56 -cvxpy_cvxopt,unknown,sched_50_50_orig,SOCP,DIMACS,ERROR,23.28376317024231,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,sched_50_50_orig,SOCP,DIMACS,OPTIMAL,0.17055892944335938,26673.000987463758,26673.000988293505,-8.297465683426708e-07,0.0008211845592554915,3.175354988442067e-09,30,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_50_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_50_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,sched_50_50_orig,SOCP,DIMACS,OPTIMAL (INACCURATE),18.283209800720215,35809.49201866682,36069.131423950195,-259.63940528337844,0.6278642052360084,2013643.3276811917,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:46:34 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,sched_50_50_orig,SOCP,DIMACS,INFEASIBLE,36.98214912414551,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:47:26 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_50_50_orig,SOCP,DIMACS,MAX_ITER,0.7064037083333333,26673.095548738904,26672.99721972217,0.09832901673507877,3.15909062818255e-07,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:41 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_50_50_orig,SOCP,DIMACS,OPTIMAL,0.7506059583333333,26673.000976938325,26673.000978030293,1.0919684427790344e-06,1.0054272660303507e-09,3.565461396342987e-11,44,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:09 -scipy_linprog,scipy-1.15.3,sched_50_50_orig,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:47:37 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,sched_50_50_scaled,SOCP,DIMACS,OPTIMAL (INACCURATE),0.1251518726348877,7.852038439863746,7.852038439863737,8.881784197001252e-15,5.942633532349437e-09,3.1698625599395943e-13,26,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:19 -cvxpy_cvxopt,unknown,sched_50_50_scaled,SOCP,DIMACS,ERROR,18.378044843673706,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:38 -cvxpy_ecos,unknown,sched_50_50_scaled,SOCP,DIMACS,ERROR,0.31072497367858887,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:38 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,sched_50_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,sched_50_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,sched_50_50_scaled,SOCP,DIMACS,OPTIMAL (INACCURATE),18.66447901725769,7.852068168748205,7.852068714033491,-5.452852862575241e-07,1.3471978048109906e-08,0.00038825804604077893,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:57 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,sched_50_50_scaled,SOCP,DIMACS,OPTIMAL (INACCURATE),78.08418297767639,7.852038526235663,7.852043972235164,-5.445999500253151e-06,1.669993096788863e-08,4.0060306334744484e-07,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:05:24 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),sched_50_50_scaled,SOCP,DIMACS,OPTIMAL,0.7289274583333333,7.852038477343999,7.85203843733003,4.0013969027086205e-08,5.643670372617149e-10,8.132293889752614e-13,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:55 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),sched_50_50_scaled,SOCP,DIMACS,OPTIMAL,0.514955,7.8520384401152645,7.852038442629353,2.514088492944211e-09,1.8727965760166163e-11,1.9350277378313464e-10,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:21 -scipy_linprog,scipy-1.15.3,sched_50_50_scaled,SOCP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:03:59 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,torusg3-15,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,torusg3-15,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,torusg3-15,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,torusg3-15,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),torusg3-15,SDP,DIMACS,OPTIMAL,96.853589375,-318810925.66454315,-318810927.37935495,1.7148118019104004,3.472238775909382e-13,0.0,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:29:50 -scipy_linprog,scipy-1.15.3,torusg3-15,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,torusg3-8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,torusg3-8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,torusg3-8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,torusg3-8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),torusg3-8,SDP,DIMACS,OPTIMAL,1.9698861666666667,-48340945.86330335,-48340945.949232884,0.08592953532934189,3.430228268358133e-11,0.0,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:28:05 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),torusg3-8,SDP,DIMACS,OPTIMAL,8.568708083333334,-48340945.69408667,-48340945.69332005,0.0007666200399398804,1.6106946788226167e-09,3.269120548119365e-16,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:03:39 -scipy_linprog,scipy-1.15.3,torusg3-8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,toruspm3-15-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,toruspm3-15-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,toruspm3-15-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,toruspm3-15-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),toruspm3-15-50,SDP,DIMACS,OPTIMAL,75.3174741268158,-3474.794059052365,-3474.7940824213174,2.336895249754889e-05,2.319714150200321e-12,0.0,15,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:04:34 -scipy_linprog,scipy-1.15.3,toruspm3-15-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,toruspm3-8-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,toruspm3-8-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,toruspm3-8-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,toruspm3-8-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),toruspm3-8-50,SDP,DIMACS,OPTIMAL,6.541438102722168,-527.808660710369,-527.8086632131733,2.502804250070767e-06,1.4509650835086007e-11,0.0,14,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:59:50 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),toruspm3-8-50,SDP,DIMACS,OPTIMAL,7.601006166666667,-527.8086592434917,-527.8086592306726,1.281910044781398e-08,2.098791477322716e-09,5.187620354134206e-11,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:37:03 -scipy_linprog,scipy-1.15.3,toruspm3-8-50,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss5,SDP,DIMACS,OPTIMAL (INACCURATE),0.4248371124267578,132.63530797336855,132.6353098328787,-1.8595101494156552e-06,2.976961436986348e-06,6.742415211712427e-08,19,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:32 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss5,SDP,DIMACS,OPTIMAL,1.2074768543243408,132.63567622801477,132.63567623702812,-9.013348289954592e-09,1.4353448618618097e-08,3.018302548232494e-10,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss5,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss5,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss5,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss5,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss5,SDP,DIMACS,OPTIMAL,21.932883977890015,132.67032214278458,132.67032627913713,-4.136352544037436e-06,2.4188989473182798e-06,0.0024103317967444286,83675,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss5,SDP,DIMACS,OPTIMAL,0.15076208114624023,132.6356794538592,132.63567502877504,4.425084171089111e-06,6.293316373095602e-11,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05 -matlab_sdpt3,unknown,truss5,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:09 -matlab_sedumi,unknown,truss5,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:42 -scipy_linprog,scipy-1.15.3,truss5,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss8,SDP,DIMACS,OPTIMAL,7.333973407745361,133.11452300392386,133.1145231602386,-1.5631474070687545e-07,5.880442946566506e-07,2.416827226267145e-08,20,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:25 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss8,SDP,DIMACS,OPTIMAL,4.541913032531738,133.11458873614384,133.11458873454836,1.5954810805851594e-09,5.1857958079351704e-09,9.454734908598581e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss8,SDP,DIMACS,OPTIMAL,78.31024694442749,133.206421971091,133.2064255039062,-3.532815185280924e-06,1.809776268177368e-06,0.0026429235860219477,90650,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:48 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss8,SDP,DIMACS,OPTIMAL,0.618751049041748,133.11459453047246,133.11459273039674,1.8000757222580432e-06,1.4560143550748557e-10,2.0041502554605766e-08,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:49 -matlab_sdpt3,unknown,truss8,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:13 -matlab_sedumi,unknown,truss8,SDP,DIMACS,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:47 -scipy_linprog,scipy-1.15.3,truss8,SDP,DIMACS,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:49 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,arch0,SDP,SDPLIB,OPTIMAL,8.206942081451416,-0.5665172821147114,-0.5665172817725594,-3.421519734203571e-10,1.022967781834959e-07,0.0,22,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:12:17 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,arch0,SDP,SDPLIB,OPTIMAL,8.43869686126709,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,arch0,SDP,SDPLIB,OPTIMAL,8.386672973632812,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:12:25 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,arch0,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,arch0,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,arch0,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,arch0,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,arch0,SDP,SDPLIB,OPTIMAL,3.5877089500427246,-0.566517267707974,-0.5665172734748258,5.766851884914104e-09,6.702895394246997e-09,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:21:23 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),arch0,SDP,SDPLIB,OPTIMAL,1.89119475,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:06 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),arch0,SDP,SDPLIB,OPTIMAL,2.2475020833333335,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:38 -scipy_linprog,scipy-1.15.3,arch0,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:21:38 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,arch2,SDP,SDPLIB,OPTIMAL,5.150921821594238,-0.6715154099679571,-0.6715154097625702,-2.0538692968585792e-10,3.512925202723288e-08,0.0,24,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:51 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,arch2,SDP,SDPLIB,OPTIMAL,7.646672964096069,-0.6715154087273556,-0.6715154086542251,-7.313050165436152e-11,1.1755370688932572e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:59 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,arch2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,arch2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,arch2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,arch2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,arch2,SDP,SDPLIB,OPTIMAL (INACCURATE),3.7065846920013428,-0.6715149919393316,-0.6715154519149769,4.599756452394743e-07,9.880028136196605e-10,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:03 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),arch2,SDP,SDPLIB,OPTIMAL,1.86828275,-0.6715154042243952,-0.6715154083287945,4.104399375925993e-09,3.403005752654008e-10,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:13 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),arch2,SDP,SDPLIB,OPTIMAL,1.7373145833333334,-0.6715153908899425,-0.6715153884008259,2.4891165795182246e-09,2.8865480120764807e-09,6.157079870441952e-11,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:45 -scipy_linprog,scipy-1.15.3,arch2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,arch4,SDP,SDPLIB,OPTIMAL,4.8658952713012695,-0.9726274329610303,-0.9726274322104886,-7.505416288466904e-10,1.1813692812382962e-07,0.0,20,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:32 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,arch4,SDP,SDPLIB,OPTIMAL,7.340211868286133,-0.9726274304903915,-0.9726274299150273,-5.753642007277904e-10,7.421682204955683e-08,2.5603242314031326e-13,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,arch4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,arch4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,arch4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,arch4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,arch4,SDP,SDPLIB,OPTIMAL (INACCURATE),3.6738202571868896,-0.9726272676562057,-0.9726274431143305,1.7545812480701528e-07,6.41651460356969e-10,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:44 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),arch4,SDP,SDPLIB,OPTIMAL,1.705317875,-0.97262741117333,-0.972627418748867,7.57553708652381e-09,8.514427642381836e-10,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:20 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),arch4,SDP,SDPLIB,OPTIMAL,1.874344125,-0.9726274178595536,-0.9726274178395272,2.00264249627935e-11,2.8576206940232703e-09,0.0,29,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:52 -scipy_linprog,scipy-1.15.3,arch4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:44 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,arch8,SDP,SDPLIB,OPTIMAL,5.211400032043457,-7.056985719383242,-7.0569856944182865,-2.4964955436246328e-08,2.7109763353502106e-06,0.0,24,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:09 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,arch8,SDP,SDPLIB,OPTIMAL,8.097594976425171,-7.056980177129674,-7.056980175019456,-2.1102177782950093e-09,8.034408651651353e-08,1.259191489724154e-12,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:17 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,arch8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,arch8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,arch8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,arch8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,arch8,SDP,SDPLIB,OPTIMAL (INACCURATE),3.7246809005737305,-7.056979925817409,-7.056980053305484,1.2748807520779337e-07,1.428558638956882e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:21 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),arch8,SDP,SDPLIB,UNKNOWN,1.4575445,-7.056980018798058,-7.056980042117708,2.331965021085125e-08,1.4104717965201591e-08,3.5687676151979556e-13,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:27 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),arch8,SDP,SDPLIB,OPTIMAL,3.12848525,-7.056980043548424,-7.056980043508659,3.976463602839431e-11,3.648550476043381e-09,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:01 -scipy_linprog,scipy-1.15.3,arch8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control1,SDP,SDPLIB,OPTIMAL,0.014431953430175781,-18.057693540129556,-18.05769338831607,-1.5181348445025833e-07,0.02414985830941088,0.0,56,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:38 -cvxpy_cvxopt,unknown,control1,SDP,SDPLIB,ERROR,0.16951608657836914,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control1,SDP,SDPLIB,OPTIMAL (INACCURATE),0.9244139194488525,-0.002878232961825694,-20.48065620588266,20.477777972920833,0.27819661314555105,546368.1134344704,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:39 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control1,SDP,SDPLIB,OPTIMAL,0.011685848236083984,-17.78462618700244,-17.784627142638215,9.556357731810294e-07,1.9992999166489883e-09,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control1,SDP,SDPLIB,OPTIMAL,0.29932166666666665,-17.78462660868152,-17.784626742725198,1.3404367749103585e-07,6.1483802884653124e-09,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:57 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control1,SDP,SDPLIB,OPTIMAL,0.30866791666666665,-17.784626802847523,-17.784626793465566,9.38195654498486e-09,5.28282960426234e-09,0.0,30,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:52 -scipy_linprog,scipy-1.15.3,control1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control10,SDP,SDPLIB,OPTIMAL,56.15797710418701,-38.53310978438966,-38.53310974843417,-3.5955487476257986e-08,1.3387459817271676e-06,3.600325513296991e-11,44,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:13:49 -cvxpy_cvxopt,unknown,control10,SDP,SDPLIB,ERROR,27.150655031204224,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:51 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:12 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:13 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:14 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control10,SDP,SDPLIB,OPTIMAL (INACCURATE),11.48241901397705,-38.532875373216974,-38.53307092893413,0.00019555571715557107,2.813485631313094e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:01 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control10,SDP,SDPLIB,UNKNOWN,8.544497708333333,-38.53290115712743,-38.53305732276117,0.00015616563374010184,1.0306253214751266e-06,0.0,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:17 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control10,SDP,SDPLIB,NUM_ERROR,17.53509725,-38.533100875331215,-38.53309670441624,4.1709149769530995e-06,1.1942347138694803e-06,0.0,43,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:31 -scipy_linprog,scipy-1.15.3,control10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15 -cvxpy_cvxopt,unknown,control11,SDP,SDPLIB,ERROR,38.3471896648407,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:20:14 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:24 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:25 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:26 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control11,SDP,SDPLIB,OPTIMAL (INACCURATE),17.384504079818726,-31.95851149383577,-31.95870615260608,0.000194658770311662,1.7090596773415e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:11 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control11,SDP,SDPLIB,UNKNOWN,11.558988291666667,-31.958623305615316,-31.958686698445707,6.339283039125121e-05,7.853573037958292e-07,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:38 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control11,SDP,SDPLIB,NUM_ERROR,30.733073958333332,-31.958699244576298,-31.958695423512797,3.821063501163735e-06,5.312516350920055e-07,0.0,47,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:12 -scipy_linprog,scipy-1.15.3,control11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control2,SDP,SDPLIB,OPTIMAL,0.05029797554016113,-8.30000052797604,-8.300000490399094,-3.7576945999262534e-08,1.0799058809794016e-07,0.0,25,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:02 -cvxpy_cvxopt,unknown,control2,SDP,SDPLIB,ERROR,0.1693129539489746,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control2,SDP,SDPLIB,OPTIMAL (INACCURATE),4.882005929946899,-0.0019666666133589523,-1.6631072323702496,1.6611405657568907,0.166111590183817,16899.147636217396,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control2,SDP,SDPLIB,OPTIMAL,0.037503957748413086,-8.299999482545115,-8.300000044307849,5.617627341081288e-07,1.6670044255637843e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control2,SDP,SDPLIB,MAX_ITER,0.41014416666666664,-8.299999963979975,-8.300000195440187,2.3146021277398177e-07,4.880420109459047e-09,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:03 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control2,SDP,SDPLIB,OPTIMAL,0.3295910833333333,-8.300000061550637,-8.300000053303892,8.24674550869986e-09,8.92637846485658e-09,0.0,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:58 -scipy_linprog,scipy-1.15.3,control2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control3,SDP,SDPLIB,OPTIMAL,0.22819089889526367,-13.633267734899809,-13.633267702679126,-3.2220683010564244e-08,2.693486524788012e-07,0.0,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:05 -cvxpy_cvxopt,unknown,control3,SDP,SDPLIB,ERROR,0.3841969966888428,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control3,SDP,SDPLIB,OPTIMAL (INACCURATE),14.102894306182861,-0.037735833422812004,-0.27289208768706114,0.23515625426424913,0.13917932877951675,1893.5597441188274,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control3,SDP,SDPLIB,OPTIMAL (INACCURATE),0.1595902442932129,-13.633263748445593,-13.633266893655158,3.1452095647921396e-06,6.364345948755367e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:20 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control3,SDP,SDPLIB,MAX_ITER,0.5669687916666667,-13.633263261632482,-13.633267476768832,4.215136350183002e-06,8.350276043868962e-08,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:09 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control3,SDP,SDPLIB,NUM_ERROR,0.5063703333333334,-13.633266745169918,-13.633266709049082,3.612083609993988e-08,2.9250113210155247e-08,0.0,34,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:04 -scipy_linprog,scipy-1.15.3,control3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:20 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control4,SDP,SDPLIB,OPTIMAL,0.8667011260986328,-19.79423318506499,-19.79423315316147,-3.190351804960301e-08,5.103843191955561e-07,5.641713395479458e-08,32,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:14 -cvxpy_cvxopt,unknown,control4,SDP,SDPLIB,ERROR,1.2850801944732666,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control4,SDP,SDPLIB,OPTIMAL (INACCURATE),27.7015540599823,-0.002563905576329976,-2.112935527155603,2.110371621579273,0.11510210278659297,14854.924304999919,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:42 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control4,SDP,SDPLIB,OPTIMAL (INACCURATE),0.3332328796386719,-19.79422577234397,-19.7942315506204,5.778276428003437e-06,1.3327565863841907e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control4,SDP,SDPLIB,UNKNOWN,0.9797094583333333,-19.794231903242835,-19.794231015288197,8.879546378182113e-07,2.2336441257685175e-07,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:14 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control4,SDP,SDPLIB,NUM_ERROR,0.619574875,-19.79423223668097,-19.79423226601071,2.932974041414127e-08,7.34021862743097e-08,0.0,35,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:10 -scipy_linprog,scipy-1.15.3,control4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control5,SDP,SDPLIB,OPTIMAL,2.2983057498931885,-16.88364881340114,-16.883648809313648,-4.087493010729304e-09,5.620802961416378e-07,5.697256261448682e-09,35,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:35:41 -cvxpy_cvxopt,unknown,control5,SDP,SDPLIB,ERROR,2.2808189392089844,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:37 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:37 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control5,SDP,SDPLIB,OPTIMAL (INACCURATE),53.787150144577026,-0.17807903005516243,-0.23275478696713833,0.054675756911975903,0.09362750982167806,369.6736319443367,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:35 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control5,SDP,SDPLIB,OPTIMAL (INACCURATE),0.6724143028259277,-16.883575406676048,-16.883604992850316,2.9586174267848264e-05,2.7521358841549283e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:39 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control5,SDP,SDPLIB,UNKNOWN,2.211192083333333,-16.883596414614832,-16.88360083689795,4.422283119254189e-06,2.75357458891001e-07,0.0,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:21 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control5,SDP,SDPLIB,NUM_ERROR,1.1899270833333333,-16.88360792645761,-16.88360752271663,4.037409802037928e-07,4.1151459934863073e-07,0.0,35,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:16 -scipy_linprog,scipy-1.15.3,control5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:39 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control6,SDP,SDPLIB,OPTIMAL,5.778800010681152,-37.3044718247362,-37.30447181818093,-6.5552683281566715e-09,1.4634649666883939e-06,3.059050321188013e-06,42,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:59 -cvxpy_cvxopt,unknown,control6,SDP,SDPLIB,ERROR,4.976245164871216,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,control6,SDP,SDPLIB,OPTIMAL (INACCURATE),92.80738425254822,-0.5214729254574336,-1.0154678495708611,0.4939949241134275,0.08196294538901851,3266.178827189497,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:12 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control6,SDP,SDPLIB,OPTIMAL (INACCURATE),1.3343961238861084,-37.30434823321163,-37.30443772697064,8.94937590132372e-05,2.9293219588294305e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:51:01 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control6,SDP,SDPLIB,UNKNOWN,1.4893847916666667,-37.3043782593074,-37.30442450422718,4.624491977978096e-05,6.229389742583387e-07,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:28 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control6,SDP,SDPLIB,NUM_ERROR,2.2992367083333334,-37.304475715902306,-37.30447323765376,2.478248546822215e-06,1.310139383095129e-06,0.0,40,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:24 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control7,SDP,SDPLIB,OPTIMAL,10.645551919937134,-20.625077113896168,-20.625077105250966,-8.64520188770257e-09,6.579981870625703e-07,2.3499840470621547e-07,39,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:51 -cvxpy_cvxopt,unknown,control7,SDP,SDPLIB,ERROR,8.10211992263794,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:02:09 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:11 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control7,SDP,SDPLIB,OPTIMAL (INACCURATE),2.557873249053955,-20.625054215291936,-20.625079174008114,2.4958716178247187e-05,7.626469959925607e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:53 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control7,SDP,SDPLIB,UNKNOWN,2.1745322916666665,-20.62505846427079,-20.62507774002214,1.9275751348857284e-05,5.828261469963749e-08,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:37 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control7,SDP,SDPLIB,NUM_ERROR,3.7043799583333334,-20.625087691567924,-20.625088042230974,3.506630505967223e-07,4.0114303820059954e-07,0.0,40,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:34 -scipy_linprog,scipy-1.15.3,control7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control8,SDP,SDPLIB,OPTIMAL,19.99690079689026,-20.2863714283772,-20.286371308207375,-1.201698260899775e-07,5.539607872665644e-07,1.4511474711248118e-07,40,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:50 -cvxpy_cvxopt,unknown,control8,SDP,SDPLIB,ERROR,12.640835762023926,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:26 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:02 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control8,SDP,SDPLIB,OPTIMAL (INACCURATE),4.0786097049713135,-20.286315458750884,-20.286372440169522,5.698141863774708e-05,2.99146677629299e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:55 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control8,SDP,SDPLIB,UNKNOWN,3.2315104166666666,-20.286339185828837,-20.286370196182016,3.101035317953915e-05,6.98131306134552e-07,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:47 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control8,SDP,SDPLIB,NUM_ERROR,6.0665873333333336,-20.286375865662162,-20.286374249545677,1.6161164850814203e-06,4.233911977499572e-07,0.0,40,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:48 -scipy_linprog,scipy-1.15.3,control8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:04 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,control9,SDP,SDPLIB,OPTIMAL,29.05992603302002,-14.675430563285023,-14.675430500128785,-6.315623757302546e-08,1.0734959395341116e-06,0.0,35,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:34 -cvxpy_cvxopt,unknown,control9,SDP,SDPLIB,ERROR,17.646233081817627,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:11:20 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,control9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:50 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,control9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,control9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,control9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,control9,SDP,SDPLIB,OPTIMAL (INACCURATE),6.4581170082092285,-14.67540228481323,-14.675431392929916,2.910811668499491e-05,1.4589427065347405e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:41 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),control9,SDP,SDPLIB,UNKNOWN,5.164574291666667,-14.675411161814361,-14.675428193598599,1.7031784237175884e-05,3.695427597785709e-07,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:59 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),control9,SDP,SDPLIB,NUM_ERROR,10.212919458333333,-14.6754285362703,-14.675428798508477,2.622381778394356e-07,1.582313837708998e-07,0.0,40,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:05 -scipy_linprog,scipy-1.15.3,control9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,equalG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:51 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,equalG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:52 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,equalG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,equalG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,equalG11,SDP,SDPLIB,OPTIMAL,51.45907402038574,-629.1552658005733,-629.1552929633996,2.716282631354261e-05,2.369371882908525e-12,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:26:15 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),equalG11,SDP,SDPLIB,OPTIMAL,5.390393125,-629.1552924715518,-629.155292824143,3.52591200680763e-07,1.783924970601402e-12,6.427897648455087e-18,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:56 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),equalG11,SDP,SDPLIB,NUM_ERROR,40.736246875,-629.1548520668078,-629.147034816694,0.007817250113816954,2.5361087944180886e-08,4.2544376286179536e-11,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:57 -scipy_linprog,scipy-1.15.3,equalG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:54 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,equalG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:09 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,equalG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,equalG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,equalG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:11 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,equalG51,SDP,SDPLIB,OPTIMAL,97.77459287643433,-4005.6011905473815,-4005.6013169406397,0.00012639325814234326,7.832639830764701e-11,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:32:58 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),equalG51,SDP,SDPLIB,OPTIMAL,8.547652125,-4005.601288017268,-4005.601316366677,2.834940914908657e-05,5.789644333861485e-11,0.0,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:29 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),equalG51,SDP,SDPLIB,NUM_ERROR,84.32632358333333,-4005.599767044349,-4005.599767799965,7.556159289379138e-07,8.95433741624491e-09,5.676034290944519e-12,30,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:46 -scipy_linprog,scipy-1.15.3,equalG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:12 -matlab_sdpt3,unknown,gpp100,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:05 -matlab_sedumi,unknown,gpp100,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:39 -matlab_sdpt3,unknown,gpp124-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:10 -matlab_sedumi,unknown,gpp124-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:44 -matlab_sdpt3,unknown,gpp124-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:15 -matlab_sedumi,unknown,gpp124-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:49 -matlab_sdpt3,unknown,gpp124-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:20 -matlab_sedumi,unknown,gpp124-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:54 -matlab_sdpt3,unknown,gpp124-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:25 -matlab_sedumi,unknown,gpp124-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:59 -matlab_sdpt3,unknown,gpp250-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:30 -matlab_sedumi,unknown,gpp250-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:04 -matlab_sdpt3,unknown,gpp250-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:35 -matlab_sedumi,unknown,gpp250-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:09 -matlab_sdpt3,unknown,gpp250-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:40 -matlab_sedumi,unknown,gpp250-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:14 -matlab_sdpt3,unknown,gpp250-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:45 -matlab_sedumi,unknown,gpp250-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:19 -matlab_sdpt3,unknown,gpp500-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:50 -matlab_sedumi,unknown,gpp500-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:24 -matlab_sdpt3,unknown,gpp500-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:55 -matlab_sedumi,unknown,gpp500-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:29 -matlab_sdpt3,unknown,gpp500-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:59 -matlab_sedumi,unknown,gpp500-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:33 -matlab_sdpt3,unknown,gpp500-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:04 -matlab_sedumi,unknown,gpp500-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:38 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf1,SDP,SDPLIB,OPTIMAL,0.005572795867919922,-2.0326681219679923,-2.0326681159848516,-5.983140649590268e-09,1.5142732808798136e-09,5.8528406408805414e-08,27,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01 -cvxpy_cvxopt,unknown,hinf1,SDP,SDPLIB,ERROR,0.05380678176879883,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf1,SDP,SDPLIB,OPTIMAL (INACCURATE),0.5455272197723389,-2.034025995512536,-2.033865317055243,-0.00016067845729317298,2.999590308495669e-06,0.0,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf1,SDP,SDPLIB,OPTIMAL,0.008548974990844727,-2.0326162960518173,-2.0326162960518173,0.0,3.967316966357652e-09,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf1,SDP,SDPLIB,UNKNOWN,0.37224925,-2.0327304439087186,-2.032679460642064,5.098326665464725e-05,2.666994274501407e-08,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:34 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf1,SDP,SDPLIB,NUM_ERROR,0.38086575,-2.032702691217913,-2.0326573971090376,4.5294108875548744e-05,1.1139356829973714e-08,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:35 -scipy_linprog,scipy-1.15.3,hinf1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf10,SDP,SDPLIB,OPTIMAL (INACCURATE),0.006523847579956055,-108.78737562810723,-108.78736989216672,-5.73594050479187e-06,7.50016586494756e-08,8.372072031670971e-08,24,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57 -cvxpy_cvxopt,unknown,hinf10,SDP,SDPLIB,ERROR,0.0596768856048584,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf10,SDP,SDPLIB,OPTIMAL,0.7690088748931885,-109.67066975246388,-109.6700504066821,-0.0006193457817857961,2.294628633625865e-06,3.7480545771311504e-06,97050,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf10,SDP,SDPLIB,OPTIMAL (INACCURATE),0.012375831604003906,-108.86347113724204,-108.78673318394273,-0.07673795329931465,8.231747852466604e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf10,SDP,SDPLIB,UNKNOWN,0.365393375,-108.7683048840259,-108.77818212309559,0.009877239069695065,2.3595268341152298e-05,0.0,23,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:23 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf10,SDP,SDPLIB,NUM_ERROR,0.3626290833333333,-108.75993162203638,-108.75125626509862,0.008675356937757783,5.284061049311702e-07,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:24 -scipy_linprog,scipy-1.15.3,hinf10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf11,SDP,SDPLIB,OPTIMAL (INACCURATE),0.00967717170715332,-65.90991351702351,-65.90990389505751,-9.62196600085008e-06,3.264652971267897e-08,7.961207252939813e-10,25,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14 -cvxpy_cvxopt,unknown,hinf11,SDP,SDPLIB,ERROR,0.06746697425842285,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf11,SDP,SDPLIB,OPTIMAL (INACCURATE),1.2248289585113525,-67.03265487888538,-66.9425045006043,-0.09015037828108063,7.271735945414379e-06,2.372132910723892e-12,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf11,SDP,SDPLIB,OPTIMAL (INACCURATE),0.012714862823486328,-65.96092354028318,-65.91206628197119,-0.04885725831198329,4.861398484093877e-07,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf11,SDP,SDPLIB,UNKNOWN,0.4292201666666667,-65.91623172173267,-65.89340793308176,0.022823788650910615,1.465391663685626e-07,0.0,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:29 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf11,SDP,SDPLIB,NUM_ERROR,0.3754861666666667,-65.88284488105815,-65.88010110073674,0.002743780321409872,1.2872974305043217e-07,0.0,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:30 -scipy_linprog,scipy-1.15.3,hinf11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf12_sdp,SDP,SDPLIB,OPTIMAL,0.01746988296508789,-3.2433629986793885e-05,-3.2432575308661486e-05,-1.0546781323988747e-09,8.300260965155049e-06,0.0,44,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:25 -cvxpy_cvxopt,unknown,hinf12_sdp,SDP,SDPLIB,ERROR,0.3970298767089844,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:26 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf12_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf12_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf12_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf12_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf12_sdp,SDP,SDPLIB,OPTIMAL (INACCURATE),1.8517041206359863,-1.5660892533183435,-1.550972805649461,-0.015116447668882538,1.2713713263916197e-07,9.437455397904784e-07,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf12_sdp,SDP,SDPLIB,OPTIMAL (INACCURATE),0.01336216926574707,-26.28462100943706,-3.218764582272006,-23.065856427165055,0.00026649547088509193,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf12_sdp,SDP,SDPLIB,UNKNOWN,0.5892792083333334,-2.2571558268484783e-05,-2.9572121961358873e-05,7.00056369287409e-06,1.538325025557428e-12,0.0,61,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:34 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf12_sdp,SDP,SDPLIB,OPTIMAL,0.3087037083333333,-0.11791225666476954,-0.09905856082734718,0.018853695837422357,5.037944322430809e-09,0.0,29,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:35 -scipy_linprog,scipy-1.15.3,hinf12_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37 -cvxpy_clarabel,unknown,hinf13_sdp,SDP,SDPLIB,ERROR,0.014467954635620117,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39 -cvxpy_cvxopt,unknown,hinf13_sdp,SDP,SDPLIB,ERROR,0.08350205421447754,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf13_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf13_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf13_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf13_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf13_sdp,SDP,SDPLIB,OPTIMAL (INACCURATE),2.7371368408203125,-30.338550177295044,-30.33799855091353,-0.0005516263815152911,5.355726666806104e-06,9.237315025625231e-05,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf13_sdp,SDP,SDPLIB,INFEASIBLE,0.012221097946166992,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf13_sdp,SDP,SDPLIB,UNKNOWN,0.5201742916666666,-44.36054953507353,-44.352737721585974,0.0078118134875566625,2.34826882611184e-05,1.9677815225005485e-09,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:40 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf13_sdp,SDP,SDPLIB,NUM_ERROR,0.34354358333333335,-44.98782800411155,-44.73512547033813,0.2527025337734159,5.0403409648842495e-05,5.164198359985477e-07,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:41 -scipy_linprog,scipy-1.15.3,hinf13_sdp,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf14,SDP,SDPLIB,OPTIMAL (INACCURATE),0.029858112335205078,-12.991620016749662,-12.991619832202199,-1.8454746353313567e-07,7.960100598663184e-08,2.8200844817922423e-07,25,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12 -cvxpy_cvxopt,unknown,hinf14,SDP,SDPLIB,ERROR,0.1548140048980713,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf14,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf14,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf14,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf14,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf14,SDP,SDPLIB,OPTIMAL,0.260235071182251,-13.016693637637012,-13.016676436910254,-1.7200726757593543e-05,9.713120873550967e-06,3.7424537617375734e-05,7350,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf14,SDP,SDPLIB,OPTIMAL (INACCURATE),0.01812005043029785,-12.977127071396835,-13.002235688978644,0.025108617581809156,1.4121816289795736e-05,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:13 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf14,SDP,SDPLIB,UNKNOWN,0.5131727916666666,-12.989960076415304,-12.989934206347613,2.5870067691613485e-05,8.66236229712859e-08,9.648370597983024e-10,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:46 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf14,SDP,SDPLIB,NUM_ERROR,0.42435625,-12.994433062802717,-12.993857944680892,0.0005751181218247581,3.459515165126997e-07,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:47 -scipy_linprog,scipy-1.15.3,hinf14,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf15,SDP,SDPLIB,OPTIMAL (INACCURATE),0.03337883949279785,-24.823804805102615,-24.823648667307985,-0.00015613779462952948,3.8123673598819243e-06,1.3632493267012344e-06,19,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23 -cvxpy_cvxopt,unknown,hinf15,SDP,SDPLIB,ERROR,0.12059998512268066,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf15,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf15,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf15,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf15,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf15,SDP,SDPLIB,OPTIMAL (INACCURATE),4.816857099533081,-6.535899836686729,-6.535738728003019,-0.0001611086837103315,1.2124638376828503e-05,0.0007877132599741793,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf15,SDP,SDPLIB,INFEASIBLE,0.018558025360107422,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf15,SDP,SDPLIB,UNKNOWN,0.5514212916666666,-23.987835100185112,-24.001097916938342,0.0132628167532296,3.144875496622765e-05,6.997893475414923e-09,29,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:52 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf15,SDP,SDPLIB,NUM_ERROR,0.3233525,-24.83998341547683,-24.214925261340976,0.6250581541358535,0.000150801335775723,4.4160427926549335e-06,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:52 -scipy_linprog,scipy-1.15.3,hinf15,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf2,SDP,SDPLIB,OPTIMAL,0.005145072937011719,-10.967598918863468,-10.96759886205494,-5.6808527659768515e-08,1.9892414732039526e-07,0.0,17,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35 -cvxpy_cvxopt,unknown,hinf2,SDP,SDPLIB,ERROR,0.03723597526550293,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf2,SDP,SDPLIB,OPTIMAL,0.4676029682159424,-10.956014425126677,-10.95598391306363,-3.0512063046828075e-05,2.723109573191675e-06,0.00048699575464379656,74125,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf2,SDP,SDPLIB,OPTIMAL,0.009016036987304688,-10.967063926554635,-10.967063926554637,1.7763568394002505e-15,5.723703689342138e-10,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf2,SDP,SDPLIB,UNKNOWN,0.3056114583333333,-10.969253774110527,-10.968153281488807,0.0011004926217204059,3.1722464136341583e-06,0.0,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:40 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf2,SDP,SDPLIB,NUM_ERROR,0.291179125,-10.967252738065635,-10.967220837229675,3.190083596038562e-05,2.413420742969955e-07,3.97875826735212e-08,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:40 -scipy_linprog,scipy-1.15.3,hinf2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf3,SDP,SDPLIB,OPTIMAL,0.005463123321533203,-56.95458417169877,-56.954584100815666,-7.088310383096541e-08,1.2182104934532567e-06,1.935530761916017e-08,21,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27 -cvxpy_cvxopt,unknown,hinf3,SDP,SDPLIB,ERROR,0.04079627990722656,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf3,SDP,SDPLIB,OPTIMAL,0.053626060485839844,-56.95290556196835,-56.95257093437306,-0.00033462759529356845,4.360158022165924e-06,9.60043824422556e-06,7875,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf3,SDP,SDPLIB,OPTIMAL (INACCURATE),0.00951695442199707,-56.946017137117806,-56.94340849281433,-0.0026086443034785134,1.9356932179028497e-06,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf3,SDP,SDPLIB,OPTIMAL,0.3675725833333333,-56.96785514137487,-56.95432364943337,0.013531491941499496,6.41331617518588e-06,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:45 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf3,SDP,SDPLIB,NUM_ERROR,0.2846183333333333,-56.94166534866042,-56.93662791786083,0.005037430799589515,4.0341715618686706e-07,8.598366229162091e-08,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:46 -scipy_linprog,scipy-1.15.3,hinf3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf4,SDP,SDPLIB,OPTIMAL,0.005476951599121094,-274.76580456156256,-274.7658044528675,-1.0869507605093531e-07,2.9587869724570718e-08,0.0,22,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42 -cvxpy_cvxopt,unknown,hinf4,SDP,SDPLIB,ERROR,0.052572011947631836,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf4,SDP,SDPLIB,OPTIMAL,0.05102682113647461,-274.8169686239859,-274.8175011426577,0.0005325186718323494,1.5793940777175766e-05,5.0915418172079886e-09,7175,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf4,SDP,SDPLIB,OPTIMAL (INACCURATE),0.01003885269165039,-274.7642606658802,-274.7640791113404,-0.00018155453983581538,2.067736809821613e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf4,SDP,SDPLIB,MAX_ITER,0.348355125,-274.76574859289997,-274.7647974867353,0.0009511061646776398,8.935314643369996e-08,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:51 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf4,SDP,SDPLIB,OPTIMAL,0.348588375,-274.76402427242704,-274.76401549857536,8.773851675414335e-06,6.1072960080975595e-09,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:51 -scipy_linprog,scipy-1.15.3,hinf4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf5,SDP,SDPLIB,OPTIMAL (INACCURATE),0.0060749053955078125,-362.4299072470292,-362.4295803431538,-0.000326903875361495,4.958727500256144e-06,0.0,18,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50 -cvxpy_cvxopt,unknown,hinf5,SDP,SDPLIB,ERROR,0.0457768440246582,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf5,SDP,SDPLIB,OPTIMAL,0.08220601081848145,-320.9234414376666,-320.92497928960995,0.0015378519433397742,3.052930540788306e-06,0.00027660204589100273,13300,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf5,SDP,SDPLIB,OPTIMAL (INACCURATE),0.008898258209228516,-363.08837704719326,-362.65312853712743,-0.43524851006583276,0.0031096059091866054,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf5,SDP,SDPLIB,UNKNOWN,0.30704,-362.8407662937241,-362.5463311167045,0.29443517701957944,5.076986649325987e-05,0.0,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:56 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf5,SDP,SDPLIB,NUM_ERROR,0.29583345833333335,-362.1389840878955,-362.19928444461704,0.06030035672154099,4.623878615933405e-05,1.468529060102308e-08,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:57 -scipy_linprog,scipy-1.15.3,hinf5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf6,SDP,SDPLIB,OPTIMAL,0.005522966384887695,-448.95023164103816,-448.9502285290299,-3.1120082439883845e-06,4.4077878809117167e-07,0.0,23,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31 -cvxpy_cvxopt,unknown,hinf6,SDP,SDPLIB,ERROR,0.05508112907409668,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf6,SDP,SDPLIB,OPTIMAL (INACCURATE),0.6322319507598877,-245.90113198641467,-245.85737180839376,-0.043760178020903595,1.3088894176536186e-05,0.0003530484760489283,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf6,SDP,SDPLIB,OPTIMAL (INACCURATE),0.011322736740112305,-448.97876320335996,-448.9556735151818,-0.023089688178174583,3.2823630729197306e-05,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf6,SDP,SDPLIB,MAX_ITER,0.3865935,-448.94845306947616,-448.93787068369375,0.01058238578241344,1.0795193288541605e-05,2.9425725883582585e-11,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:02 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf6,SDP,SDPLIB,NUM_ERROR,0.34503904166666666,-448.93866526508225,-448.93735904243533,0.0013062226469173766,7.16453106043704e-08,1.0964487510881784e-10,23,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:02 -scipy_linprog,scipy-1.15.3,hinf6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41 -cvxpy_clarabel,unknown,hinf7,SDP,SDPLIB,ERROR,0.00506281852722168,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23 -cvxpy_cvxopt,unknown,hinf7,SDP,SDPLIB,ERROR,0.03922271728515625,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf7,SDP,SDPLIB,OPTIMAL (INACCURATE),0.6557118892669678,-389.32499417666725,-389.3066200564397,-0.018374120227520052,6.437354049320336e-06,1.5407433103673238e-06,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf7,SDP,SDPLIB,OPTIMAL (INACCURATE),0.007824182510375977,-386.2729744082578,-394.11795931873803,7.844984910480207,0.0010676527612919265,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf7,SDP,SDPLIB,OPTIMAL,0.321014,-390.8268127270961,-390.81955811039285,0.007254616703278316,5.153919837286196e-06,0.0,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:07 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf7,SDP,SDPLIB,NUM_ERROR,0.30022125,-390.4187062005368,-388.9712939688352,1.4474122317016054,2.1674897967340183e-06,1.349616784492387e-08,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:08 -scipy_linprog,scipy-1.15.3,hinf7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf8,SDP,SDPLIB,OPTIMAL (INACCURATE),0.0065250396728515625,-116.162359822706,-116.16235950573696,-3.1696903590727743e-07,7.420952338087494e-07,3.2950076855126425e-07,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07 -cvxpy_cvxopt,unknown,hinf8,SDP,SDPLIB,ERROR,0.03650498390197754,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf8,SDP,SDPLIB,OPTIMAL,0.2217872142791748,-113.4663274817136,-113.46736346299392,0.0010359812803102386,2.0881037650067233e-06,2.9352242087893714e-05,33450,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf8,SDP,SDPLIB,OPTIMAL (INACCURATE),0.008577823638916016,-116.18084367885152,-116.17297265490086,-0.007871023950656308,2.1524411488941546e-05,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf8,SDP,SDPLIB,MAX_ITER,0.3580920416666667,-116.18907747348399,-116.16764622467993,0.02143124880406333,1.107192932812266e-05,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:13 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf8,SDP,SDPLIB,NUM_ERROR,0.3128221666666667,-116.14800748522454,-116.14764044645105,0.0003670387734899805,5.243531762309649e-07,1.3890768653808889e-09,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:13 -scipy_linprog,scipy-1.15.3,hinf8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,hinf9,SDP,SDPLIB,OPTIMAL,0.006279945373535156,-236.2492537893636,-236.24925167798062,-2.111382968905673e-06,1.1227693010097353e-09,7.503567730794685e-13,27,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05 -cvxpy_cvxopt,unknown,hinf9,SDP,SDPLIB,ERROR,0.07575297355651855,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,hinf9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,hinf9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,hinf9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,hinf9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,hinf9,SDP,SDPLIB,OPTIMAL (INACCURATE),0.6299283504486084,-23.995993470322126,-23.73307395594187,-0.2629195143802576,0.0002501696048966344,4.7055340393382825e-06,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,hinf9,SDP,SDPLIB,OPTIMAL (INACCURATE),0.02733016014099121,-236.24929860181874,-236.24925825295142,-4.034886731574261e-05,6.211843885658271e-06,1.1701336108488862e-17,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),hinf9,SDP,SDPLIB,UNKNOWN,0.3677940416666667,-236.24926143119387,-236.2492582522059,3.178987981300452e-06,4.333392854983704e-07,6.696508028901661e-17,23,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:19 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),hinf9,SDP,SDPLIB,OPTIMAL,0.317706625,-236.24742814369876,-236.2473437618947,8.438180404368723e-05,5.8628976583948846e-09,6.012462469094062e-12,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:19 -scipy_linprog,scipy-1.15.3,hinf9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,infd1,SDP,SDPLIB,UNBOUNDED,0.07190108299255371,,,,,,9,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:46 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,infd1,SDP,SDPLIB,UNBOUNDED,0.0513920783996582,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:46 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,infd1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:55 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,infd1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:55 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,infd1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:55 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,infd1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:55 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,infd1,SDP,SDPLIB,UNBOUNDED,0.009742021560668945,,,,,,75,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:46 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,infd1,SDP,SDPLIB,UNBOUNDED,0.008428096771240234,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:46 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),infd1,SDP,SDPLIB,INFEASIBLE,0.7416138333333333,-4.257207829062996,0.9999999999999999,5.257207829062996,3.354815305396842,0.00036268825137415707,11,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:33 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB unknown),infd1,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:58 -scipy_linprog,scipy-1.15.3,infd1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:04:55 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,infd2,SDP,SDPLIB,UNBOUNDED,0.07816100120544434,,,,,,9,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:35 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,infd2,SDP,SDPLIB,UNBOUNDED,0.050015926361083984,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:35 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,infd2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:46 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,infd2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:46 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,infd2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:46 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,infd2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:46 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,infd2,SDP,SDPLIB,UNBOUNDED,0.007703065872192383,,,,,,50,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:35 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,infd2,SDP,SDPLIB,UNBOUNDED,0.008288145065307617,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:35 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),infd2,SDP,SDPLIB,INFEASIBLE,0.32877341666666665,5.260014414495283,1.0,4.260014414495283,1.30747142664091,0.001808820212132385,11,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:39 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB unknown),infd2,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:03 -scipy_linprog,scipy-1.15.3,infd2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:05:46 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,infp1,SDP,SDPLIB,INFEASIBLE (INACCURATE),0.05863189697265625,,,,,,6,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:29 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,infp1,SDP,SDPLIB,INFEASIBLE,0.035430192947387695,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:29 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,infp1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:40 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,infp1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:40 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,infp1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:40 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,infp1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:40 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,infp1,SDP,SDPLIB,INFEASIBLE,0.00629115104675293,,,,,,50,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:29 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,infp1,SDP,SDPLIB,INFEASIBLE,0.010022878646850586,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:29 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),infp1,SDP,SDPLIB,UNBOUNDED,0.6760695833333333,-0.9999999999999998,-9.565045088035852,8.565045088035852,0.98920907266528,0.03606835371799228,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:44 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),infp1,SDP,SDPLIB,UNBOUNDED,0.18138175,-1.0000000000000009,-1.0122985351967385e-08,0.9999999898770155,0.9892090726567477,0.03435947590638533,7,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:09 -scipy_linprog,scipy-1.15.3,infp1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:06:40 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,infp2,SDP,SDPLIB,INFEASIBLE (INACCURATE),0.057051897048950195,,,,,,6,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:27 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,infp2,SDP,SDPLIB,INFEASIBLE,0.035516977310180664,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:27 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,infp2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:39 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,infp2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:39 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,infp2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:39 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,infp2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:39 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,infp2,SDP,SDPLIB,INFEASIBLE,0.006498098373413086,,,,,,50,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:27 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,infp2,SDP,SDPLIB,INFEASIBLE,0.010500907897949219,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:27 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),infp2,SDP,SDPLIB,UNBOUNDED,0.708990875,-0.9999999999999977,-7.5658798093740085,6.565879809374011,0.9896372386599857,0.03270560748147086,31,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:50 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),infp2,SDP,SDPLIB,UNBOUNDED,0.19872808333333333,-1.0,-1.0014114498193024e-08,0.9999999899858855,0.98963723865795,0.032611884190235085,11,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:14 -scipy_linprog,scipy-1.15.3,infp2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:07:39 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,maxG11,SDP,SDPLIB,OPTIMAL,5.780447959899902,-629.1647805357129,-629.1647805350874,-6.255049811443314e-10,3.358572693912759e-15,1.776705970627518e-11,16,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:10:33 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,maxG11,SDP,SDPLIB,OPTIMAL,228.55329608917236,-629.1647801726815,-629.1647801710005,-1.6809735825518146e-09,1.2726085361287806e-12,2.1291444400788673e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:16:28 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,maxG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,maxG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,maxG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,maxG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,maxG11,SDP,SDPLIB,OPTIMAL,6.635096073150635,-629.1647613155295,-629.1647831444957,2.1828966168868646e-05,1.093272639824208e-14,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:36:57 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),maxG11,SDP,SDPLIB,OPTIMAL,2.363915125,-629.1647770178772,-629.1647830495338,6.031656539562391e-06,1.487176561555531e-13,0.0,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:07:14 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),maxG11,SDP,SDPLIB,OPTIMAL,18.21366383333333,-629.1647785850998,-629.1647785773678,7.73206920712255e-09,1.9597982503383297e-09,3.331356481626968e-11,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:48:02 -scipy_linprog,scipy-1.15.3,maxG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,maxG32,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:51 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,maxG32,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,maxG32,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,maxG32,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),maxG32,SDP,SDPLIB,OPTIMAL,15.456882125,-1567.6396346092076,-1567.6396447238442,1.011463655231637e-05,1.502035887240306e-11,0.0,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:36 -matlab_sedumi,unknown,maxG32,SDP,SDPLIB,TIMEOUT,300.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:12 -scipy_linprog,scipy-1.15.3,maxG32,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:53 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,maxG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,maxG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,maxG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,maxG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),maxG51,SDP,SDPLIB,OPTIMAL,5.433042291666666,-4006.2555195572245,-4006.2555216808855,2.1236610336927697e-06,7.797328522618889e-14,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:27 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),maxG51,SDP,SDPLIB,OPTIMAL,43.0097865,-4006.255460000534,-4006.255459886479,1.1405518307583407e-07,1.6434551009770762e-09,1.1291850783925127e-11,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:01:57 -scipy_linprog,scipy-1.15.3,maxG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,maxG55,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:56:59 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,maxG55,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:57:00 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,maxG55,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:57:00 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,maxG55,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:57:01 -matlab_sdpt3,unknown,maxG55,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:27:12 -matlab_sedumi,unknown,maxG55,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:02:41 -scipy_linprog,scipy-1.15.3,maxG55,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:57:02 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,maxG60,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:59:22 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,maxG60,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:59:24 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,maxG60,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:59:25 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,maxG60,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:59:27 -matlab_sdpt3,unknown,maxG60,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:27:58 -matlab_sedumi,unknown,maxG60,SDP,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:03:25 -scipy_linprog,scipy-1.15.3,maxG60,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:59:28 -cvxpy_clarabel,unknown,mcp100,UNKNOWN,SDPLIB,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:39 -matlab_sdpt3,unknown,mcp100,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:01 -matlab_sedumi,unknown,mcp100,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:35 -cvxpy_clarabel,unknown,mcp124-1,UNKNOWN,SDPLIB,ERROR,0.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:52 -matlab_sdpt3,unknown,mcp124-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:06 -matlab_sedumi,unknown,mcp124-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:40 -matlab_sdpt3,unknown,mcp124-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:11 -matlab_sedumi,unknown,mcp124-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:45 -matlab_sdpt3,unknown,mcp124-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:15 -matlab_sedumi,unknown,mcp124-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:50 -matlab_sdpt3,unknown,mcp124-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:20 -matlab_sedumi,unknown,mcp124-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:55 -matlab_sdpt3,unknown,mcp250-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:25 -matlab_sedumi,unknown,mcp250-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:00 -matlab_sdpt3,unknown,mcp250-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:30 -matlab_sedumi,unknown,mcp250-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:05 -matlab_sdpt3,unknown,mcp250-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:35 -matlab_sedumi,unknown,mcp250-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:10 -matlab_sdpt3,unknown,mcp250-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:40 -matlab_sedumi,unknown,mcp250-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:14 -matlab_sdpt3,unknown,mcp500-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:45 -matlab_sedumi,unknown,mcp500-1,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:19 -matlab_sdpt3,unknown,mcp500-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:50 -matlab_sedumi,unknown,mcp500-2,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:24 -matlab_sdpt3,unknown,mcp500-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:55 -matlab_sedumi,unknown,mcp500-3,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:29 -matlab_sdpt3,unknown,mcp500-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:00 -matlab_sedumi,unknown,mcp500-4,UNKNOWN,SDPLIB,ERROR,,,,,,,,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:34 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap10,SDP,SDPLIB,OPTIMAL,25.793164014816284,1092.5981048387882,1092.5981049304173,-9.162909009319264e-08,5.720872373199901e-10,1.1890157244942814e-10,26,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:11 -cvxpy_cvxopt,unknown,qap10,SDP,SDPLIB,ERROR,4.625144004821777,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:16 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap10,SDP,SDPLIB,OPTIMAL (INACCURATE),0.5981779098510742,1093.0721614033846,1092.5599703709595,0.5121910324251076,2.3061857111994798e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:12:55 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap10,SDP,SDPLIB,UNKNOWN,0.8021789583333333,1092.5398261865366,1092.5738677926238,0.03404160608715756,2.2324924926700836e-07,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:26 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap10,SDP,SDPLIB,NUM_ERROR,2.500351125,1092.5803930728775,1092.5806235221098,0.00023044923227644176,5.983215930617338e-08,0.0,26,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:50 -scipy_linprog,scipy-1.15.3,qap10,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap5,SDP,SDPLIB,OPTIMAL,0.039627790451049805,436.00000012500374,436.0000001787257,-5.3721976200904464e-08,8.543064997221504e-10,8.700480256542984e-14,9,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,qap5,SDP,SDPLIB,OPTIMAL,0.05824089050292969,436.00000638953816,436.0000103135326,-3.923994427168509e-06,6.573074355875933e-08,5.296699388254977e-12,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qap5,SDP,SDPLIB,OPTIMAL,0.015094995498657227,436.00007269274516,435.9998052039491,0.00026748879605520415,2.3053436931048306e-07,0.0,225,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap5,SDP,SDPLIB,OPTIMAL (INACCURATE),0.020327091217041016,436.0403897924358,435.9998304004548,0.04055939198099168,9.059329771695843e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap5,SDP,SDPLIB,OPTIMAL,0.4685420416666667,436.000000302473,435.9999999151769,3.872960974149464e-07,1.0352572932812939e-11,0.0,10,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:56 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap5,SDP,SDPLIB,OPTIMAL,0.2549562083333333,435.99999879051774,435.9999990246588,2.3414105498886784e-07,6.0506510269859365e-09,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:19 -scipy_linprog,scipy-1.15.3,qap5,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap6,SDP,SDPLIB,OPTIMAL (INACCURATE),0.3584439754486084,381.43279582401055,381.4327960779774,-2.539668457757216e-07,9.455201134480351e-10,4.251389530798158e-09,26,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:47 -cvxpy_cvxopt,unknown,qap6,SDP,SDPLIB,ERROR,0.4547898769378662,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:48 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qap6,SDP,SDPLIB,OPTIMAL (INACCURATE),11.140121698379517,381.1579788447341,381.2947477911839,-0.13676894644981985,2.5734585406151894e-06,0.0,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap6,SDP,SDPLIB,OPTIMAL (INACCURATE),0.09423494338989258,381.5253368559963,381.38626400064095,0.1390728553553231,4.7219042964099784e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap6,SDP,SDPLIB,OPTIMAL,0.7566619166666667,381.39365405504674,381.41637577242363,0.022721717376896322,2.8681423726442413e-07,0.0,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:02 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap6,SDP,SDPLIB,NUM_ERROR,0.3632245416666667,381.4236687453082,381.4240243638051,0.0003556184968829257,1.0256556673173296e-07,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:25 -scipy_linprog,scipy-1.15.3,qap6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap7,SDP,SDPLIB,OPTIMAL (INACCURATE),1.2171392440795898,424.81215093653674,424.8121509794146,-4.28778434979904e-08,1.4814603139603626e-09,2.3106894516466327e-09,26,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:49 -cvxpy_cvxopt,unknown,qap7,SDP,SDPLIB,ERROR,0.7405779361724854,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:50 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qap7,SDP,SDPLIB,OPTIMAL (INACCURATE),20.12582302093506,424.5225849795715,424.66763159392576,-0.14504661435427124,2.5643940808572178e-06,0.0,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap7,SDP,SDPLIB,OPTIMAL (INACCURATE),0.1465590000152588,424.8762477985437,424.79985124990344,0.07639654864027534,2.3370667875751253e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap7,SDP,SDPLIB,UNKNOWN,0.6350701666666667,424.7884026413741,424.8042332891782,0.015830647804136788,2.244805558197445e-07,1.0208979903820277e-13,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:08 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap7,SDP,SDPLIB,NUM_ERROR,0.5065246666666666,424.8083811224529,424.80858176294714,0.00020064049425627672,7.622887967153097e-08,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:30 -scipy_linprog,scipy-1.15.3,qap7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap8,SDP,SDPLIB,OPTIMAL (INACCURATE),3.9440019130706787,756.9434336934269,756.9434339047293,-2.1130244931555353e-07,1.1033134136067158e-09,1.8036454579220684e-09,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:08 -cvxpy_cvxopt,unknown,qap8,SDP,SDPLIB,ERROR,1.6612441539764404,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:09 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qap8,SDP,SDPLIB,OPTIMAL (INACCURATE),36.509506940841675,756.5711755506155,756.7533977873954,-0.18222223677992133,1.7661078048246205e-06,0.0,100000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap8,SDP,SDPLIB,OPTIMAL (INACCURATE),0.23933076858520508,757.0347850401854,756.9408334188629,0.09395162132250334,1.6356761098055173e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap8,SDP,SDPLIB,OPTIMAL,0.5659632083333334,756.8395594287458,756.8977747654171,0.05821533667131007,6.256731733516596e-07,0.0,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:14 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap8,SDP,SDPLIB,NUM_ERROR,0.8749054583333333,756.9340877297344,756.934375193232,0.0002874634975569279,3.486442395574242e-08,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:36 -scipy_linprog,scipy-1.15.3,qap8,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qap9,SDP,SDPLIB,OPTIMAL (INACCURATE),9.71919322013855,1409.9415896092542,1409.941617901437,-2.8292182832956314e-05,7.656624897637267e-08,8.594780663566562e-10,24,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:56 -cvxpy_cvxopt,unknown,qap9,SDP,SDPLIB,ERROR,2.7372238636016846,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:59 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qap9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qap9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qap9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qap9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,qap9,SDP,SDPLIB,OPTIMAL,44.790440797805786,1409.9180851457008,1409.9311892082915,-0.013104062590628018,2.0332473972900747e-05,1.2215291832739586e-08,74700,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:44 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qap9,SDP,SDPLIB,OPTIMAL (INACCURATE),0.36574411392211914,1410.25627924329,1409.8952495753765,0.361029667913499,4.0892029004511786e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:45 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qap9,SDP,SDPLIB,OPTIMAL,0.8991597916666667,1409.9186636560362,1409.9299342574086,0.011270601372416422,5.8123518858196593e-08,0.0,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:19 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qap9,SDP,SDPLIB,NUM_ERROR,1.283624125,1409.918321784674,1409.918571432121,0.00024964744716271525,9.550174489527122e-08,0.0,25,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:42 -scipy_linprog,scipy-1.15.3,qap9,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,qpG11,SDP,SDPLIB,OPTIMAL,20.110408067703247,-2448.659092952946,-2448.6590929340227,-1.892340151243843e-08,1.7496194581406766e-08,3.538743119610824e-11,15,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:49:36 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qpG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qpG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qpG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qpG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,qpG11,SDP,SDPLIB,OPTIMAL,29.925652980804443,-2448.6590489835125,-2448.6591322561353,8.327262275997782e-05,2.3298734319033554e-14,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:23 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qpG11,SDP,SDPLIB,OPTIMAL,31.200602054595947,-2448.659090183629,-2448.65913216471,4.198108126729494e-05,3.2288322455640034e-12,0.0,15,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:45:31 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),qpG11,SDP,SDPLIB,OPTIMAL,142.55485320833333,-2448.659124217068,-2448.659124204988,1.2079908628948033e-08,4.663936345007886e-09,7.389642148204685e-12,17,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:30:50 -scipy_linprog,scipy-1.15.3,qpG11,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,qpG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,qpG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,qpG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,qpG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),qpG51,SDP,SDPLIB,OPTIMAL,65.04648661613464,-11817.999949825342,-11818.000000034852,5.020950993639417e-05,1.691030179875868e-11,0.0,17,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:58:16 -scipy_linprog,scipy-1.15.3,qpG51,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,ss30,SDP,SDPLIB,OPTIMAL,41.18780493736267,-20.239510587223354,-20.239510586816014,-4.0733993955655023e-10,9.912076322563995e-08,0.0,29,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:06 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,ss30,SDP,SDPLIB,OPTIMAL,21.264667987823486,-20.239510644969997,-20.239510638137972,-6.8320247237352305e-09,8.94817783016025e-08,5.0557558792995994e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:28 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,ss30,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,ss30,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,ss30,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,ss30,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,ss30,SDP,SDPLIB,OPTIMAL (INACCURATE),7.810168981552124,-20.239507687488363,-20.23951064833439,2.960846028798869e-06,1.5496658619045873e-08,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:09:55 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),ss30,SDP,SDPLIB,UNKNOWN,2.882202875,-20.239507562642537,-20.23951068538981,3.122747273209825e-06,1.0755657434415856e-07,0.0,21,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:35 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),ss30,SDP,SDPLIB,NUM_ERROR,6.760695833333333,-20.239510592874606,-20.239510589127317,3.747288701561047e-09,3.232622404503955e-08,0.0,37,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:03 -scipy_linprog,scipy-1.15.3,ss30,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,theta1,SDP,SDPLIB,OPTIMAL,0.5781240463256836,-23.000000113696405,-23.00000006485042,-4.884598681087482e-08,1.7021181449260494e-08,1.1944769291368984e-11,12,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,theta1,SDP,SDPLIB,OPTIMAL,0.30235886573791504,-22.99999992045278,-22.999999920596142,1.4336265508063661e-10,1.1739084766113277e-16,4.107080131386077e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,theta1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,theta1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,theta1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,theta1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,theta1,SDP,SDPLIB,OPTIMAL,0.059606075286865234,-22.99957523727033,-22.999473468676786,-0.00010176859354515955,8.547389016417847e-06,2.873384339106012e-07,250,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,theta1,SDP,SDPLIB,OPTIMAL,0.025326967239379883,-22.99999909785378,-23.000000314920484,1.217066703418368e-06,5.552518868004142e-16,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta1,SDP,SDPLIB,OPTIMAL,0.3554101666666667,-22.99999966935091,-23.000000054814368,3.854634584854466e-07,1.08019134049444e-11,0.0,11,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:19 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta1,SDP,SDPLIB,OPTIMAL,0.2917774166666667,-23.00000001877833,-23.000000013317347,5.460982777094614e-09,2.5321435718789402e-09,0.0,19,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:55 -scipy_linprog,scipy-1.15.3,theta1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,theta2,SDP,SDPLIB,OPTIMAL,10.558916091918945,-32.87916985873813,-32.87916961787732,-2.4086081396035297e-07,9.043557291921717e-08,6.7143730115455886e-12,10,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:36 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,theta2,SDP,SDPLIB,OPTIMAL,2.042449951171875,-32.87916894882581,-32.87916894877984,-4.596500957632088e-11,1.4343967695977949e-12,2.2664637685921277e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,theta2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,theta2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,theta2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,theta2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,theta2,SDP,SDPLIB,OPTIMAL,0.41171908378601074,-32.879092775414236,-32.87901385888463,-7.891652960267947e-05,1.00022956740785e-06,2.3274278129605833e-07,350,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,theta2,SDP,SDPLIB,OPTIMAL,0.47716593742370605,-32.87916857824288,-32.87916905441676,4.761738736647203e-07,4.57224779883188e-15,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:39 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta2,SDP,SDPLIB,OPTIMAL,0.5580662916666667,-32.87916893679436,-32.87916903116265,9.436828918296669e-08,1.2482387284479412e-12,0.0,13,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:25 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta2,SDP,SDPLIB,OPTIMAL,0.631585375,-32.879169040448566,-32.87916903780507,2.643496088694519e-09,2.2690844865871237e-09,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:01 -scipy_linprog,scipy-1.15.3,theta2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,theta3,SDP,SDPLIB,OPTIMAL,67.7079222202301,-42.16698181950611,-42.16698175324743,-6.625868564924531e-08,2.566384582637676e-08,6.118994005248439e-14,10,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:24:54 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,theta3,SDP,SDPLIB,OPTIMAL,7.798202753067017,-42.166981272985936,-42.166981273163785,1.7784884676075308e-10,3.401035803092698e-15,3.975102289462933e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:02 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,theta3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,theta3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,theta3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,theta3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,theta3,SDP,SDPLIB,OPTIMAL,1.58660888671875,-42.166983999600596,-42.166985728095874,1.7284952775753482e-06,2.2777817734753627e-08,6.1942128146186496e-09,450,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:03 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,theta3,SDP,SDPLIB,OPTIMAL,1.048050880432129,-42.16698095442231,-42.166981616724364,6.623020567531057e-07,2.3718112851955558e-15,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:05 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta3,SDP,SDPLIB,OPTIMAL,1.1650570833333334,-42.16698130052295,-42.16698152368698,2.2316402947808456e-07,6.941267860310931e-12,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:33 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta3,SDP,SDPLIB,OPTIMAL,2.416633291666667,-42.16698154577349,-42.16698155040591,4.632418892924761e-09,4.565662075596726e-09,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:08 -scipy_linprog,scipy-1.15.3,theta3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta4,SDP,SDPLIB,OPTIMAL,1.6901592083333334,-50.321221317087485,-50.32122203998839,7.229009071352266e-07,3.4400304938930694e-13,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:09 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta4,SDP,SDPLIB,OPTIMAL,9.029102375,-50.32122201238018,-50.32122201939875,7.018570613581687e-09,4.163130295345427e-09,0.0,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:42 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta5,SDP,SDPLIB,OPTIMAL,3.2877647083333335,-57.23230683313342,-57.232307346760024,5.136266025829173e-07,4.815986565890254e-13,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:21 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta5,SDP,SDPLIB,OPTIMAL,32.23979391666666,-57.23230747485862,-57.232307354157946,1.2070067612057755e-07,4.87171381111366e-09,0.0,23,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:54:24 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),theta6,SDP,SDPLIB,OPTIMAL,5.631308958333333,-63.47708709665152,-63.477087197659806,1.010082826269354e-07,8.471542469613478e-13,0.0,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:38 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),theta6,SDP,SDPLIB,OPTIMAL,96.736359625,-63.47708710436236,-63.47708721576618,1.1140382127905468e-07,9.370169346520279e-10,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:13 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),thetaG11,SDP,SDPLIB,OPTIMAL,6.12120375,-399.9999948753643,-400.0000001208191,5.2454548153946234e-06,5.104383506653095e-13,0.0,18,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:30:23 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),thetaG11,SDP,SDPLIB,OPTIMAL,69.43002633333333,-399.9999995772125,-399.9999995761562,1.0563212526903953e-09,2.5194124567833976e-09,1.777169568338365e-12,33,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:10:16 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),thetaG51,SDP,SDPLIB,UNKNOWN,138.05433633333334,-348.9999945185722,-349.0000002426005,5.724028312670271e-06,1.8779632575768103e-08,0.0,39,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:40 -matlab_sedumi,unknown,thetaG51,SDP,SDPLIB,TIMEOUT,300.0,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:41:01 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss1,SDP,SDPLIB,OPTIMAL,0.00537109375,8.999996209209556,8.999996230766877,-2.1557321261411744e-08,1.8223965354693912e-08,9.58875201462206e-11,11,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss1,SDP,SDPLIB,OPTIMAL,0.027730941772460938,8.999996217101113,8.999996231565662,-1.446454866993463e-08,2.1552454348135378e-08,1.3113686044545564e-09,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss1,SDP,SDPLIB,OPTIMAL,0.005390167236328125,9.000014086327363,9.000007538484402,6.547842961168726e-06,7.190939502213777e-07,2.017647402124318e-05,175,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss1,SDP,SDPLIB,OPTIMAL,0.013810157775878906,8.999996508066124,8.999996257439102,2.5062702135869586e-07,3.858578150973925e-14,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss1,SDP,SDPLIB,OPTIMAL,0.24263908333333334,8.999996513737967,8.999996285281131,2.2845683567140895e-07,2.3112684240151632e-09,0.0,9,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:43 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss1,SDP,SDPLIB,OPTIMAL,0.279735125,8.999996304463258,8.999996309461777,4.998518932097795e-09,2.0925600974181833e-09,0.0,13,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:18 -scipy_linprog,scipy-1.15.3,truss1,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss2,SDP,SDPLIB,OPTIMAL,0.028374910354614258,123.38032438780319,123.38032501198148,-6.241782983806843e-07,4.5631147473518165e-07,5.400635161301182e-09,14,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss2,SDP,SDPLIB,OPTIMAL,0.34323596954345703,123.38035632795552,123.38035633377643,-5.820908199893893e-09,2.6424809145593065e-09,3.955822371523896e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss2,SDP,SDPLIB,OPTIMAL,0.8349161148071289,123.38606688355063,123.3860739362167,-7.052666077811409e-06,6.498518343337364e-06,0.0006916402494040062,20875,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:52 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss2,SDP,SDPLIB,OPTIMAL,0.07007503509521484,123.38036039934943,123.38035581736214,4.58198728381376e-06,4.557386001179585e-12,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss2,SDP,SDPLIB,OPTIMAL,0.36276016666666666,123.38035721605554,123.38035631007274,9.059828016688698e-07,9.364706977581974e-10,0.0,13,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:49 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss2,SDP,SDPLIB,OPTIMAL,0.3927455833333333,123.38035631112416,123.38035631802163,6.897465709698736e-09,2.9604864720439395e-09,3.2852692607373415e-11,20,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:24 -scipy_linprog,scipy-1.15.3,truss2,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss3,SDP,SDPLIB,OPTIMAL,0.007981061935424805,9.109996173192481,9.109996174546737,-1.3542553745082841e-09,4.4855110956190985e-09,3.2774392518465433e-10,12,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss3,SDP,SDPLIB,OPTIMAL,0.008645772933959961,9.109996173192481,9.109996174546737,-1.3542553745082841e-09,4.4855110956190985e-09,3.2774392518465433e-10,12,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss3,SDP,SDPLIB,OPTIMAL,0.05614018440246582,9.10999614243476,9.109996145768458,-3.333697762286647e-09,1.0593331383658811e-08,3.349913566356823e-10,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss3,SDP,SDPLIB,OPTIMAL,0.062148094177246094,9.10999614243476,9.109996145768458,-3.333697762286647e-09,1.0593331383658811e-08,3.349913566356823e-10,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss3,SDP,SDPLIB,OPTIMAL,0.5332508087158203,9.110041972462652,9.110042582572902,-6.101102503208722e-07,1.529861449889821e-06,1.7591794995023966e-05,44625,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss3,SDP,SDPLIB,OPTIMAL,0.5392508506774902,9.110041972462652,9.110042582572902,-6.101102503208722e-07,1.529861449889821e-06,1.7591794995023966e-05,44625,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss3,SDP,SDPLIB,OPTIMAL,0.0164947509765625,9.109996393410452,9.109996016151454,3.7725899737495183e-07,2.3142072741567036e-13,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss3,SDP,SDPLIB,OPTIMAL,0.01682901382446289,9.109996393410452,9.109996016151454,3.7725899737495183e-07,2.3142072741567036e-13,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss3,SDP,SDPLIB,OPTIMAL,0.291210125,9.109996269927667,9.109996132678651,1.3724901570810744e-07,4.320402504061065e-14,0.0,12,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:54 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss3,SDP,SDPLIB,OPTIMAL,0.2865194166666667,9.109996156256061,9.109996162091624,5.835563143818945e-09,7.261145648868141e-09,3.548770555535088e-10,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:29 -scipy_linprog,scipy-1.15.3,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -scipy_linprog,scipy-1.15.3,truss3,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss4,SDP,SDPLIB,OPTIMAL,0.005547046661376953,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss4,SDP,SDPLIB,OPTIMAL,0.005716085433959961,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss4,SDP,SDPLIB,OPTIMAL,0.03877997398376465,9.009995897864977,9.009995926940062,-2.907508545035853e-08,4.360070834724522e-08,9.499477870988926e-10,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss4,SDP,SDPLIB,OPTIMAL,0.0063629150390625,9.009997345729218,9.00999656325741,7.82471808236096e-07,1.658167187900526e-07,6.101049682851663e-06,225,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss4,SDP,SDPLIB,OPTIMAL,0.014675140380859375,9.009996558636908,9.009996064429895,4.94207013090886e-07,5.460020736031756e-14,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss4,SDP,SDPLIB,OPTIMAL,0.2855519166666667,9.009996446153833,9.009996290338277,1.5581555601329455e-07,3.83955719920538e-09,0.0,11,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:00 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss4,SDP,SDPLIB,OPTIMAL,0.26377516666666667,9.00999626294251,9.009996268263059,5.320549334442148e-09,3.507575669410203e-09,2.959835844803862e-10,14,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:35 -scipy_linprog,scipy-1.15.3,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36 -scipy_linprog,scipy-1.15.3,truss4,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss5_sdp,SDP,SDPLIB,OPTIMAL,0.49745821952819824,132.63566253199446,132.6356626115363,-7.954184866321157e-08,1.2653383845157188e-07,2.366013540423536e-09,18,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:38 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss5_sdp,SDP,SDPLIB,OPTIMAL,1.2629749774932861,132.6356762279693,132.6356762370283,-9.058993555299821e-09,1.4424052246283952e-08,3.0183302558080747e-10,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:40 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss5_sdp,SDP,SDPLIB,OPTIMAL,22.394976139068604,132.67027858454858,132.67028269707538,-4.112526795552185e-06,2.547895198115238e-06,0.002408958215925523,83775,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:03 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss5_sdp,SDP,SDPLIB,OPTIMAL,0.2245340347290039,132.63567945392438,132.63567502877513,4.4251492568037065e-06,2.494296172882748e-11,0.0,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:04 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss5_sdp,SDP,SDPLIB,OPTIMAL,1.0470835833333334,132.63567802335663,132.63567787176257,1.5159406530074193e-07,1.5244236469370746e-10,0.0,15,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:48 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss5_sdp,SDP,SDPLIB,OPTIMAL,0.5942775,132.63567716018326,132.63567716469151,4.508251549850684e-09,6.3849327558778055e-09,1.2707989194505613e-10,23,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:22 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss6,SDP,SDPLIB,OPTIMAL,0.2537209987640381,901.0002651409602,901.0002705585873,-5.41762710781768e-06,1.4882091019913554e-06,6.463946489176919e-09,25,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:33 -cvxpy_cvxopt,unknown,truss6,SDP,SDPLIB,ERROR,1.9965460300445557,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:37 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:05 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:07 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:08 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:10 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss6,SDP,SDPLIB,OPTIMAL,14.329941987991333,901.0950988636213,901.0950990173255,-1.537042635391117e-07,8.45148707615466e-06,0.013751596838046476,99775,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:53 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss6,SDP,SDPLIB,INFEASIBLE,0.29096198081970215,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:56 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss6,SDP,SDPLIB,MAX_ITER,0.5691390416666666,901.0014346379526,901.0013611282227,7.3509729872967e-05,2.233921215694808e-08,0.0,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:06 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss6,SDP,SDPLIB,NUM_ERROR,0.98678925,901.0013890792242,901.0013891465655,6.734137514285976e-08,1.8145947199046974e-08,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:42 -scipy_linprog,scipy-1.15.3,truss6,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:12 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss7,SDP,SDPLIB,OPTIMAL,0.13422012329101562,900.0010893310988,900.0010944910015,-5.159902684681583e-06,7.752164593566989e-07,0.0,22,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:38 -cvxpy_cvxopt,unknown,truss7,SDP,SDPLIB,ERROR,1.2562849521636963,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:40 -cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,truss7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:54 -cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,truss7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:55 -cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,truss7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:56 -cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,truss7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:57 -cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,truss7,SDP,SDPLIB,OPTIMAL,3.86313796043396,900.0356340281699,900.0356340614165,-3.3246692510147113e-08,9.397384533448782e-06,0.007035153135339471,59000,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:45 -cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,truss7,SDP,SDPLIB,OPTIMAL (INACCURATE),0.33388805389404297,900.0013051383315,900.0014232785333,-0.00011814020172096207,3.7841041393477322e-06,2.3476799902441506e-08,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:46 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss7,SDP,SDPLIB,UNKNOWN,0.544207125,900.001408675485,900.0013926810119,1.5994473073988047e-05,2.362075343263456e-08,0.0,22,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:13 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss7,SDP,SDPLIB,OPTIMAL,1.1931540833333334,900.0013983712862,900.0013984344562,6.316997769317823e-08,7.3597907002225245e-09,0.0,27,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:50 -scipy_linprog,scipy-1.15.3,truss7,SDP,SDPLIB,UNSUPPORTED,,,,,,,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:58 -cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,truss8_sdp,SDP,SDPLIB,OPTIMAL,8.423373937606812,133.1145235740515,133.11452372670436,-1.5265285924215277e-07,5.798818510869592e-07,1.8795571691601026e-08,20,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:13 -cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,truss8_sdp,SDP,SDPLIB,OPTIMAL,5.338012933731079,133.1145887359414,133.1145887345484,1.3930048226029612e-09,4.487143094483282e-09,9.45481793646842e-11,,443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:20 -matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),truss8_sdp,SDP,SDPLIB,OPTIMAL,1.0130884583333333,133.11458916487112,133.11458909069876,7.417236247420078e-08,1.8201739000684703e-10,0.0,16,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:56 -matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),truss8_sdp,SDP,SDPLIB,OPTIMAL,1.1123747916666666,133.11458828413384,133.11458828656077,2.426929768262198e-09,7.281149777057451e-09,2.2946480299761797e-10,24,96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:30 diff --git a/docs/pages/data/benchmark_results_all.csv b/docs/pages/data/benchmark_results_all.csv new file mode 100644 index 0000000..7c84f65 --- /dev/null +++ b/docs/pages/data/benchmark_results_all.csv @@ -0,0 +1,2118 @@ +id,solver_name,solver_version,problem_library,problem_name,problem_type,environment_info,commit_hash,timestamp,solve_time,status,primal_objective_value,dual_objective_value,duality_gap,primal_infeasibility,dual_infeasibility,iterations,memo +110,scipy_linprog,scipy-1.15.3,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:46,4.100799560546875e-05,ERROR,,,,,,, +111,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:47,1.3107497692108154,OPTIMAL,-0.05070309464849496,,,,,21, +112,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:49,2.361949920654297,OPTIMAL,-0.05070061603883091,,,,,5425, +113,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:51,1.1708378791809082,OPTIMAL,-0.050703094648322636,,,,,20, +114,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:51,3.981590270996094e-05,ERROR,,,,,,, +115,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:52,1.4645578861236572,OPTIMAL,-0.05070309469591302,,,,,, +116,cvxpy_sdpa,cvxpy-1.6.5-CLARABEL,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:45:54,1.346243143081665,OPTIMAL,-0.05070309464849496,,,,,21, +117,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:38,3.719329833984375e-05,ERROR,,,,,,, +118,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:39,1.5329699516296387,OPTIMAL,-13.012270672238593,,,,,17, +119,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:47,7.499206066131592,OPTIMAL,-13.01220020450462,,,,,20575, +120,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:48,1.4623680114746094,OPTIMAL,-13.012270674894536,,,,,19, +121,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:48,3.719329833984375e-05,ERROR,,,,,,, +122,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:51,3.0801711082458496,OPTIMAL,-13.012270457304474,,,,,, +123,cvxpy_sdpa,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:53,1.5245318412780762,OPTIMAL,-13.012270672238593,,,,,17, +124,scipy_linprog,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +125,cvxpy_clarabel,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +126,cvxpy_scs,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +127,cvxpy_ecos,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +128,cvxpy_osqp,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +129,cvxpy_cvxopt,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +130,cvxpy_sdpa,unknown,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T09:46:56,0.0,ERROR,,,,,,, +131,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:37,4.100799560546875e-05,ERROR,,,,,,, +132,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:40,2.2409873008728027,OPTIMAL,-1.6289719808523724,,,,,12, +133,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:41,1.8608348369598389,OPTIMAL,-1.6289817153541597,,,,,775, +134,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:43,1.7350881099700928,OPTIMAL,-1.628971980444936,,,,,11, +135,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:43,4.124641418457031e-05,ERROR,,,,,,, +136,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:46,2.346411943435669,OPTIMAL,-1.628971989187589,,,,,, +137,cvxpy_sdpa,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:19:48,2.3051068782806396,OPTIMAL,-1.6289719808523724,,,,,12, +138,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:42,3.910064697265625e-05,ERROR,,,,,,, +139,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:44,1.2580223083496094,OPTIMAL,-0.10256951121204069,,,,,14, +140,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:45,1.1490800380706787,OPTIMAL,-0.10257104661299753,,,,,950, +141,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:46,1.1593446731567383,OPTIMAL,-0.10256951120226779,,,,,13, +142,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:46,3.814697265625e-05,ERROR,,,,,,, +143,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:47,1.3183510303497314,OPTIMAL,-0.10256951114752975,,,,,, +144,cvxpy_sdpa,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:20:49,1.3061511516571045,OPTIMAL,-0.10256951121204069,,,,,14, +145,scipy_linprog,scipy-1.15.3,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:08,5.2928924560546875e-05,ERROR,,,,,,, +146,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,0.0001780986785888672,ERROR,,,,,,, +147,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,0.00011610984802246094,ERROR,,,,,,, +148,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,3.981590270996094e-05,ERROR,,,,,,, +149,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,4.38690185546875e-05,ERROR,,,,,,, +150,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,9.703636169433594e-05,ERROR,,,,,,, +151,cvxpy_sdpa,cvxpy-1.6.5-CLARABEL,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:22:09,0.00010633468627929688,ERROR,,,,,,, +152,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb_L2_bessel,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:28:54,46.942919969558716,OPTIMAL,-0.10256951121204069,,,,,14, +153,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T10:30:18,48.13991713523865,ERROR,,,,,,,"""Memory Error""" +154,cvxpy_sdpa,cvxpy-1.6.5-SDPA,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T13:09:05,79.02675819396973,OPTIMAL,23.439818435224183,,,,,, +155,scipy_linprog,scipy-1.15.3,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T13:10:16,4.7206878662109375e-05,ERROR,,,,,,, +158,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T23:24:20,36704.034167051315,OPTIMAL,23.59206340887288,,,,,100000, +159,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T23:24:20,3.814697265625e-05,ERROR,,,,,,, +160,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T23:24:20,3.3855438232421875e-05,ERROR,,,,,,, +161,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,bm1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ce1969a22cbeb1ef396d49cbf1142984143d1297""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ce1969a22cbeb1ef396d49cbf1142984143d1297,2025-06-22T23:39:01,880.0794627666473,OPTIMAL,23.439801459798208,,,,,, +162,scipy_linprog,scipy-1.15.3,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:11:59,7.891654968261719e-05,ERROR,,,,,,, +163,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:01,2.181784152984619,OPTIMAL,-0.05070309464849496,,,,,21, +164,cvxpy_scs,cvxpy-1.6.5-SCS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:05,4.004631996154785,OPTIMAL,-0.05070061603883091,,,,,5425, +165,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:07,1.9608960151672363,OPTIMAL,-0.050703094648322636,,,,,20, +166,cvxpy_osqp,cvxpy-1.6.5-OSQP,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:07,6.29425048828125e-05,ERROR,,,,,,, +167,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:10,2.397974967956543,OPTIMAL,-0.05070309469591302,,,,,, +168,cvxpy_sdpa,cvxpy-1.6.5-SDPA,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:12:15,5.21799898147583,OPTIMAL,-1.8772174263594055,,,,,, +169,cvxpy_scip,cvxpy-1.6.5-SCIP,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:13:03,48.382381200790405,OPTIMAL,-0.0507029966950411,,,,,, +170,cvxpy_highs,cvxpy-1.6.5-HIGHS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""82612d7c8346e9f418e4c4fb79124a2f7c3a48d4""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",82612d7c8346e9f418e4c4fb79124a2f7c3a48d4,2025-06-24T13:13:03,5.793571472167969e-05,ERROR,,,,,,, +171,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""5dd7d288c2dc25a8a93c03c618639bdd090f209a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",5dd7d288c2dc25a8a93c03c618639bdd090f209a,2025-06-24T13:22:21,2.133723258972168,OPTIMAL,-0.05070309464849496,,,,,21, +172,cvxpy_ecos,cvxpy-1.6.5-ECOS,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ca42e835dbea708cc1dcf95987b5a2e56df60642""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ca42e835dbea708cc1dcf95987b5a2e56df60642,2025-06-24T15:06:32,1.1467840671539307,OPTIMAL,-0.050703094648322636,,,,,20, +173,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""ca42e835dbea708cc1dcf95987b5a2e56df60642""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",ca42e835dbea708cc1dcf95987b5a2e56df60642,2025-06-24T15:06:34,1.4811620712280273,OPTIMAL,-0.05070309469591302,,,,,, +174,cvxpy_sdpa,cvxpy-1.6.5-SDPA-unknown,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:16:58,6.018739938735962,OPTIMAL,-1.8772174263594055,,,,,, +175,cvxpy_sdpa,cvxpy-1.6.5-SDPA-unknown,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:29:24,11.670561075210571,OPTIMAL,-13.012153111134237,,,,,, +176,cvxpy_sdpa,cvxpy-1.6.5-SDPA-unknown,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:30:03,6.01131010055542,OPTIMAL,-1.8772174263594055,,,,,, +177,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:42:45,2.3709490299224854,OPTIMAL,-0.05070309464849496,,,,,21, +178,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:42:49,4.158452987670898,OPTIMAL,-0.05070061603883091,,,,,5425, +179,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:42:51,2.0737509727478027,OPTIMAL,-0.050703094648322636,,,,,20, +180,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:42:54,2.5139200687408447,OPTIMAL,-0.05070309469591302,,,,,, +181,cvxpy_sdpa,cvxpy-1.6.5-SDPA-unknown,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:43:00,5.74547004699707,OPTIMAL,-1.8772174263594055,,,,,, +182,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:43:48,48.25754904747009,OPTIMAL,-0.0507029966950411,,,,,, +183,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e945508d6718b1edb2f579ce0b5a56da98570dbd""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e945508d6718b1edb2f579ce0b5a56da98570dbd,2025-06-25T00:47:58,5.9592790603637695,OPTIMAL,-1.8772174263594055,,,,,, +184,cvxpy_sdpa,unknown,SDPLIB,qap5,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:34:25,0.0,ERROR,,,,,,, +185,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:39:13,0.0005629062652587891,ERROR,,,,,,, +186,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:45:14,0.0002989768981933594,ERROR,,,,,,, +187,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:46:14,0.0575251579284668,OPTIMAL,-584.0007589021698,,,,,, +188,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:46:59,0.09392786026000977,OPTIMAL,-583.9999934166422,,,,,, +189,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:47:21,0.05891919136047363,UNBOUNDED,inf,,,,,, +190,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:48:56,0.09429812431335449,OPTIMAL,-583.9999934166422,,,,,, +191,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""cfc13857622458340de916f7b88e151405ec7ef9""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",cfc13857622458340de916f7b88e151405ec7ef9,2025-06-25T15:49:04,0.0945899486541748,OPTIMAL,-583.9999934166422,,,,,, +192,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T06:21:55,2.0527617931365967,OPTIMAL,-0.050703094648322636,,,,,20, +193,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:38:23,2.052264928817749,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,6.326428876756556e-14,20, +194,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:40:00,0.0739438533782959,OPTIMAL,436.00000012500374,436.0000001787257,,15.686644324177905,,9, +195,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:48:35,0.0709218978881836,OPTIMAL,436.00000012500374,436.0000001787257,-5.3721976200904464e-08,15.686644324177905,8.700480256542984e-14,9, +196,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:53:25,2.0524489879608154,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,7.810249675925604,,20, +197,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:53:44,0.07054281234741211,OPTIMAL,436.00000012500374,436.0000001787257,-5.3721976200904464e-08,8.543064997221504e-10,8.700480256542984e-14,9, +198,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:54:11,0.061167240142822266,OPTIMAL (INACCURATE),436.0403897924358,435.9998304004548,0.04055939198099168,9.059329771695843e-08,0.0,, +199,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""246332a289c6cb2d9278620672101e08a7cf767a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",246332a289c6cb2d9278620672101e08a7cf767a,2025-06-28T16:54:48,0.09554290771484375,OPTIMAL,436.00000638953816,436.0000103135326,-3.923994427168509e-06,6.573074355875933e-08,5.296699388254977e-12,, +200,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2b66a821bda2f5f8beee8a0568fea2cab5025175""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",2b66a821bda2f5f8beee8a0568fea2cab5025175,2025-06-29T15:00:51,15.003283023834229,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""cvxpy_status"": ""optimal"", ""backend_solver"": ""ECOS"", ""solver_stats"": {""solver_name"": ""ECOS"", ""solve_time"": 0.415217041, ""setup_time"": 0.006720791, ""num_iters"": 20, ""extra_stats"": {""x"": ""[-1.73041982e-03 -5.73739436e-03 -1.48616161e-02 -2.31867615e-03\n -1.10467874e-02 1.68173256e-02 9.51544749e-03 1.35808170e-02\n 9.43829264e-03 -6.05600865e-15 -1.01193171e-02 -1.13321254e-02\n -1.94602686e-02 6.65026484e-03 2.65279290e-03 1.21855518e-02\n 7.17862687e-03 5.57791228e-03 5.63837544e-03 4.74490802e-15\n 9.51544749e-03 -1.35808170e-02 -1.35968837e-02 -1.07897337e-02\n -7.42403179e-03 1.58481768e-03 -5.99262742e-03 1.26967498e-02\n -1.33954820e-03 2.48482997e-02 3.03010899e-02 -7.23485936e-15\n 7.17862687e-03 -5.57791228e-03 -1.10467874e-02 -1.68173256e-02\n -1.01193171e-02 -1.13321254e-02 -7.42403179e-03 1.58481768e-03\n -2.30466276e-02 2.89149577e-02 2.64512916e-02 2.05734879e-02\n 3.23440746e-02 8.68157542e-15 -1.33954820e-03 -2.48482997e-02\n 2.65279290e-03 -1.21855518e-02 -1.48616161e-02 2.31867615e-03\n -1.73041982e-03 -5.73739436e-03 -1.94602686e-02 6.65026484e-03\n -5.99262742e-03 1.26967498e-02 2.64512916e-02 2.05734879e-02\n 7.59362492e-03 1.74135296e-15 2.64512916e-02 -2.05734879e-02\n -5.99262742e-03 -1.26967498e-02 -1.94602686e-02 -6.65026484e-03\n -1.73041982e-03 5.73739436e-03 -1.48616161e-02 -2.31867615e-03\n 2.65279290e-03 1.21855518e-02 -1.33954820e-03 2.48482997e-02\n 3.23440746e-02 -9.20044443e-15 2.64512916e-02 -2.05734879e-02\n -2.30466276e-02 -2.89149577e-02 -7.42403179e-03 -1.58481768e-03\n -1.01193171e-02 1.13321254e-02 -1.10467874e-02 1.68173256e-02\n 7.17862687e-03 5.57791228e-03 3.03010899e-02 3.70760424e-15\n -1.33954820e-03 -2.48482997e-02 -5.99262742e-03 -1.26967498e-02\n -7.42403179e-03 -1.58481768e-03 -1.35968837e-02 1.07897337e-02\n 9.51544749e-03 1.35808170e-02 5.63837544e-03 -2.02346452e-15\n 7.17862687e-03 -5.57791228e-03 2.65279290e-03 -1.21855518e-02\n -1.94602686e-02 -6.65026484e-03 -1.01193171e-02 1.13321254e-02\n 9.43829264e-03 5.77822290e-15 9.51544749e-03 -1.35808170e-02\n -1.10467874e-02 -1.68173256e-02 -1.48616161e-02 2.31867615e-03\n -1.73041982e-03 5.73739436e-03 -5.07030946e-02]"", ""y"": ""[]"", ""z"": ""[ 6.40965515e-02 1.33934569e-02 2.20880975e-02 ... 3.87232542e-04\n 3.87232542e-04 -2.83956245e-18]"", ""s"": ""[ 6.18086218e-15 2.96424923e-14 1.79151455e-14 ... 5.07030946e-02\n -5.07030946e-02 3.71954638e-16]"", ""info"": {""exitFlag"": 0, ""pcost"": 0.05070309464832263, ""dcost"": 0.05070309464830582, ""pres"": 5.3986390035888254e-14, ""dres"": 2.0248646711209417e-13, ""pinf"": 0.0, ""dinf"": 0.0, ""pinfres"": 1.97865667778259, ""dinfres"": NaN, ""gap"": 6.509451859240631e-10, ""relgap"": 1.2838371906867692e-08, ""r0"": 1e-08, ""iter"": 20, ""mi_iter"": -1, ""infostring"": ""Optimal solution found"", ""timing"": {""runtime"": 0.421937832, ""tsetup"": 0.006720791, ""tsolve"": 0.415217041}, ""numerr"": 0}}}, ""cvxpy_version"": ""1.6.5"", ""manual_duality_used"": true, ""solver_solve_time"": 0.415217041, ""solver_setup_time"": 0.006720791, ""wall_clock_solve_time"": 14.939136981964111, ""cvxpy_overhead"": 14.523919940964111, ""overhead_percentage"": 97.22060891802995}" +201,matlab_sedumi,SeDuMi (version unknown),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""7fe9c04af0d21d63a50472b4562934160d8115c5""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",7fe9c04af0d21d63a50472b4562934160d8115c5,2025-07-01T14:49:35,5.51104998588562,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): WARNING: package sun.awt.X11 not in java.desktop; WARNING: package sun.awt.X11 not in java.desktop""}" +202,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""7fe9c04af0d21d63a50472b4562934160d8115c5""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",7fe9c04af0d21d63a50472b4562934160d8115c5,2025-07-01T14:50:11,25.45207405090332,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.916474834}" +203,matlab_sedumi,SeDuMi (version unknown),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""7fe9c04af0d21d63a50472b4562934160d8115c5""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",7fe9c04af0d21d63a50472b4562934160d8115c5,2025-07-01T15:44:25,6.848468065261841,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7929419166666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": -0.05070309464513528, ""dual_objective"": -0.05070309464949991, ""gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-02 00:44:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""temp_file_stats"": {""total_files"": 0, ""total_size_bytes"": 0, ""temp_directory"": ""/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T"", ""oldest_file"": null, ""oldest_age_hours"": 0}, ""problem_registry_loaded"": true, ""version_cache_available"": true}" +204,matlab_sedumi,SeDuMi (version unknown),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""7fe9c04af0d21d63a50472b4562934160d8115c5""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",7fe9c04af0d21d63a50472b4562934160d8115c5,2025-07-01T15:48:30,5.7359349727630615,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.576935875, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-02 00:48:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""temp_file_stats"": {""total_files"": 0, ""total_size_bytes"": 0, ""temp_directory"": ""/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T"", ""oldest_file"": null, ""oldest_age_hours"": 0}, ""problem_registry_loaded"": true, ""version_cache_available"": true}" +205,matlab_sedumi,SeDuMi (version unknown),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""7fe9c04af0d21d63a50472b4562934160d8115c5""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",7fe9c04af0d21d63a50472b4562934160d8115c5,2025-07-01T15:49:41,5.599675178527832,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.58405275, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-02 00:49:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""temp_file_stats"": {""total_files"": 0, ""total_size_bytes"": 0, ""temp_directory"": ""/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T"", ""oldest_file"": null, ""oldest_age_hours"": 0}, ""problem_registry_loaded"": true, ""version_cache_available"": true}" +207,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""a6b5437833327b41da26ca61bea8b54301d4c11e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",a6b5437833327b41da26ca61bea8b54301d4c11e,2025-07-09T08:56:12,23.54078507423401,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""solver_solve_time"": 0.689201375}" +208,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""a6b5437833327b41da26ca61bea8b54301d4c11e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",a6b5437833327b41da26ca61bea8b54301d4c11e,2025-07-09T08:56:34,10.306785106658936,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.72942325, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-09 17:56:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""temp_file_stats"": {""total_files"": 0, ""total_size_bytes"": 0, ""temp_directory"": ""/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T"", ""oldest_file"": null, ""oldest_age_hours"": 0}, ""problem_interface_available"": true, ""version_cache_available"": true}" +209,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""a6b5437833327b41da26ca61bea8b54301d4c11e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",a6b5437833327b41da26ca61bea8b54301d4c11e,2025-07-09T09:16:11,26.243193864822388,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""solver_solve_time"": 0.876805}" +210,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""a6b5437833327b41da26ca61bea8b54301d4c11e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",a6b5437833327b41da26ca61bea8b54301d4c11e,2025-07-09T10:12:53,24.842955827713013,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""solver_solve_time"": 0.700973916}" +211,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""a6b5437833327b41da26ca61bea8b54301d4c11e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",a6b5437833327b41da26ca61bea8b54301d4c11e,2025-07-09T10:13:11,6.87321400642395,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7885212083333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-09 19:13:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""temp_file_stats"": {""total_files"": 0, ""total_size_bytes"": 0, ""temp_directory"": ""/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T"", ""oldest_file"": null, ""oldest_age_hours"": 0}, ""problem_interface_available"": true, ""version_cache_available"": true}" +214,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0ee454e7fc43ae25df93351d951caa7dc0fada8b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",0ee454e7fc43ae25df93351d951caa7dc0fada8b,2025-07-12T13:37:51,5.752341985702515,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5825386666666666, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:37:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +215,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0ee454e7fc43ae25df93351d951caa7dc0fada8b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",0ee454e7fc43ae25df93351d951caa7dc0fada8b,2025-07-12T13:38:03,4.629278182983398,OPTIMAL,,,,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.939291, ""setup_time"": [], ""iterations"": 25, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:38:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +217,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0ee454e7fc43ae25df93351d951caa7dc0fada8b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",0ee454e7fc43ae25df93351d951caa7dc0fada8b,2025-07-12T13:38:49,5.693062782287598,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5549658333333334, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:38:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +218,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0ee454e7fc43ae25df93351d951caa7dc0fada8b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",0ee454e7fc43ae25df93351d951caa7dc0fada8b,2025-07-12T13:38:54,4.539752006530762,OPTIMAL,,,,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9724175416666667, ""setup_time"": [], ""iterations"": 25, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:38:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +221,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T13:44:13,5.717331886291504,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.58465775, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:44:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +222,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T13:44:19,5.567007064819336,OPTIMAL,,,,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9424599583333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 22:44:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +223,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T13:49:31,14.234610080718994,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.55783475}" +224,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T13:49:45,14.083254098892212,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""solver_solve_time"": 0.407862041}" +225,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:06:01,5.811693906784058,OPTIMAL,,,,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5324832083333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:05:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +226,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:06:12,5.6402411460876465,OPTIMAL,,,,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9719586666666666, ""setup_time"": [], ""iterations"": 25, ""primal_objective"": [], ""dual_objective"": [], ""gap"": [], ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:06:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +227,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:11:45,5.70088791847229,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6775225416666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:11:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +228,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:12:08,5.674897193908691,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9989806666666666, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:12:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +229,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:13:51,14.318236827850342,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.566578583}" +230,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:14:06,14.919658899307251,OPTIMAL,-0.05070309464830582,-0.050703094648322636,,2.4262814386207304e-12,,20,"{""solver_solve_time"": 0.440347833}" +231,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:14:12,5.69724178314209,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.59998975, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:14:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +232,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:14:18,5.579698801040649,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0018009166666666, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:14:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +233,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:22:29,14.992480993270874,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.556451209}" +234,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:24:04,14.476727962493896,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.563144123}" +235,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:24:33,14.297224998474121,OPTIMAL,-0.05070309464830916,-0.05070309464849496,,7.801537245867477e-11,,21,"{""solver_solve_time"": 0.558655542}" +236,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:25:33,14.602757930755615,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.566318623}" +237,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:26:14,14.312147855758667,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.402906375}" +238,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:27:37,14.624479055404663,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.562138001}" +239,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:27:52,14.605855941772461,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.401662}" +240,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:27:57,5.8748931884765625,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7703717083333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:27:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab""}" +241,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""736b84b8734bfd076ef9c9f505a1cf31bce807f1""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",736b84b8734bfd076ef9c9f505a1cf31bce807f1,2025-07-12T14:28:03,5.5392937660217285,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9742125, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:28:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab""}" +242,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""854a6144a0742fca829bfbfb1d89f9f2deb3580a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",854a6144a0742fca829bfbfb1d89f9f2deb3580a,2025-07-12T14:46:45,14.478132963180542,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.560601208, ""problem_class"": ""SOCP""}" +243,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""854a6144a0742fca829bfbfb1d89f9f2deb3580a""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",854a6144a0742fca829bfbfb1d89f9f2deb3580a,2025-07-12T14:47:03,5.913553237915039,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5512924583333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-12 23:46:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +244,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:28:32,15.19284987449646,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.62880275, ""problem_class"": ""SOCP""}" +245,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:30:02,15.459609985351562,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.647321916, ""problem_class"": ""SOCP""}" +246,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:30:51,15.850618839263916,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.650799, ""problem_class"": ""SOCP""}" +247,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:31:25,16.408241271972656,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.653549875, ""problem_class"": ""SOCP""}" +248,scipy_linprog,scipy-1.15.3,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:36:26,0.0,ERROR,,,,,,,"{""error_message"": ""Solver scipy_linprog cannot handle SOCP problems""}" +249,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:36:40,14.16802978515625,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.5659345, ""problem_class"": ""SOCP""}" +250,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:36:56,15.793625831604004,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.653572083, ""problem_class"": ""SOCP""}" +251,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:37:11,15.220584154129028,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.407469125, ""problem_class"": ""SOCP""}" +252,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:37:11,0.0,ERROR,,,,,,,"{""error_message"": ""Solver cvxpy_osqp cannot handle SOCP problems""}" +253,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:37:26,14.970590114593506,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +254,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:37:56,29.577348947525024,OPTIMAL (INACCURATE),-0.002033656695857644,-1.8772174263594055,1.8751837696635478,0.16647016188566816,3.539291082432821e-11,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +255,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:38:38,41.817368030548096,OPTIMAL,,-0.0507029966950411,,,1.7150846669879644e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +256,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:38:38,0.0,ERROR,,,,,,,"{""error_message"": ""Solver cvxpy_highs cannot handle SOCP problems""}" +257,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:38:44,5.810866117477417,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5818070833333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 00:38:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +258,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:38:49,5.676074981689453,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9559340833333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 00:38:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +259,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:38:49,0.0,ERROR,,,,,,,"{""error_message"": ""Solver scipy_linprog cannot handle SOCP problems""}" +260,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:39:06,16.754071950912476,OPTIMAL,-13.012270670036738,-13.012270672238593,2.20185469856915e-09,5.357543858712498e-15,1.1266917166933884e-12,17,"{""solver_solve_time"": 0.552499374, ""problem_class"": ""SOCP""}" +261,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:41:43,14.507030010223389,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +262,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:44:01,23.857765913009644,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +263,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:45:02,48.4855477809906,OPTIMAL (INACCURATE),-0.002033656695857644,-1.8772174263594055,1.8751837696635478,0.16647016188566816,3.539291082432821e-11,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +264,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""e0f440dd0fe8fd3b879b2314c64621e74e9cb065""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1750582016.0}",e0f440dd0fe8fd3b879b2314c64621e74e9cb065,2025-07-12T15:45:42,23.807657957077026,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.874906002, ""problem_class"": ""SOCP""}" +265,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""949fc80f872ff80f86f08a2b22df1565a26acc48""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",949fc80f872ff80f86f08a2b22df1565a26acc48,2025-07-13T04:20:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +266,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""949fc80f872ff80f86f08a2b22df1565a26acc48""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",949fc80f872ff80f86f08a2b22df1565a26acc48,2025-07-13T04:20:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +267,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""949fc80f872ff80f86f08a2b22df1565a26acc48""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",949fc80f872ff80f86f08a2b22df1565a26acc48,2025-07-13T04:20:50,16.301424980163574,OPTIMAL,-13.012270670036738,-13.012270672238593,2.20185469856915e-09,5.357543858712498e-15,1.1266917166933884e-12,17,"{""solver_solve_time"": 0.565587501, ""problem_class"": ""SOCP""}" +268,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:05:52,14.080224990844727,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.568606751, ""problem_class"": ""SOCP""}" +269,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:06:17,14.398108005523682,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +270,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:06:32,14.206388235092163,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.401632958, ""problem_class"": ""SOCP""}" +271,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:06:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +272,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:06:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +273,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:07:26,41.04853415489197,OPTIMAL,,-0.0507029966950411,,,1.7150846669879644e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +274,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:07:42,15.451754808425903,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.643953666, ""problem_class"": ""SOCP""}" +275,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:08:12,29.06814193725586,OPTIMAL (INACCURATE),-0.002033656695857644,-1.8772174263594055,1.8751837696635478,0.16647016188566816,3.539291082432821e-11,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +276,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:08:20,8.048792839050293,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.3277562083333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 19:08:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +277,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:08:36,5.638910293579102,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6119426666666666, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 19:08:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +278,scipy_linprog,scipy-1.15.3,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:08:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +279,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:09:36,16.796692848205566,OPTIMAL,-13.012270670036738,-13.012270672238593,2.20185469856915e-09,5.357543858712498e-15,1.1266917166933884e-12,17,"{""solver_solve_time"": 0.487794001, ""problem_class"": ""SOCP""}" +280,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:10:02,18.609934091567993,OPTIMAL,-13.012270260650567,-13.012270457304474,1.9665390738055066e-07,7.285115451032123e-13,9.002595409515661e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +281,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:10:30,16.795350790023804,OPTIMAL,-13.012270674838557,-13.012270674894536,5.597833308002009e-11,9.914510380006027e-14,1.864666515247642e-13,19,"{""solver_solve_time"": 0.489211166, ""problem_class"": ""SOCP""}" +282,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:10:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +283,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:10:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +284,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:11:50,64.57249712944031,OPTIMAL,,-12.992534672909207,,,2.152895408237386e-05,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +285,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:12:13,22.964880228042603,OPTIMAL,-13.01223863583072,-13.01220020450462,-3.843132610015232e-05,7.134210269620723e-06,1.0320214770561878e-06,20575,"{""solver_solve_time"": 6.570614666, ""problem_class"": ""SOCP""}" +286,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:13:02,37.44233822822571,OPTIMAL,-13.012153111134214,-13.012153111134237,2.3092638912203256e-14,0.09539745847209875,5.092853585115458e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +287,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:13:08,5.661326885223389,OPTIMAL,-13.012270587360916,-13.012270701517188,1.1415627199085066e-07,5.912533758053113e-11,1.1086499606208974e-11,35,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.129858958333333, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -13.012270587360916, ""dual_objective_value"": -13.012270701517188, ""duality_gap"": 1.1415627199085066e-07, ""primal_infeasibility"": 5.912533758053113e-11, ""dual_infeasibility"": 1.1086499606208974e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 19:13:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +288,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:13:13,4.513097047805786,OPTIMAL,-13.012270029385133,-13.012270026410215,2.9749180896487815e-09,1.5604221692182964e-10,2.645992296428134e-10,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8159770416666666, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -13.012270029385133, ""dual_objective_value"": -13.012270026410215, ""duality_gap"": 2.9749180896487815e-09, ""primal_infeasibility"": 1.5604221692182964e-10, ""dual_infeasibility"": 2.645992296428134e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 19:13:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +289,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:13:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +290,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:14:19,35.55278205871582,OPTIMAL,-1.6289719788841075,-1.6289719808523724,1.9682648844110417e-09,6.289904981982145e-12,4.939640235768386e-13,12,"{""solver_solve_time"": 0.925920416, ""problem_class"": ""SOCP""}" +291,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T10:15:01,40.887229919433594,OPTIMAL,-1.6289717401048371,-1.628971989187589,2.490827517576122e-07,1.2771965700046602e-09,5.012498098520504e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +292,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:21:12,34.03510904312134,OPTIMAL,-1.628971980389783,-1.628971980444936,5.515299328351375e-11,2.4371980356500406e-14,1.125402358419654e-11,11,"{""solver_solve_time"": 0.43808625, ""problem_class"": ""SOCP""}" +293,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:21:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +294,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:21:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +295,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:24:00,33.691174030303955,OPTIMAL,-1.6289712152465583,-1.6289817153541597,1.0500107601396635e-05,2.121405856474299e-05,2.3664912021212606e-07,775,"{""solver_solve_time"": 0.47297929099999997, ""problem_class"": ""SOCP""}" +296,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:26:10,7.565924644470215,OPTIMAL,-1.6289719758278038,-1.6289719649738734,1.0853930421106384e-08,1.5847819778542365e-10,2.38745041905577e-10,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.279740625, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -1.6289719758278038, ""dual_objective_value"": -1.6289719649738734, ""duality_gap"": 1.0853930421106384e-08, ""primal_infeasibility"": 1.5847819778542365e-10, ""dual_infeasibility"": 2.38745041905577e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:26:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +297,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:26:17,5.8478169441223145,OPTIMAL,-1.6289719586720264,-1.628971958012104,6.599223389969211e-10,3.7220915711599144e-11,1.8222941201475597e-10,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7119388333333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1.6289719586720264, ""dual_objective_value"": -1.628971958012104, ""duality_gap"": 6.599223389969211e-10, ""primal_infeasibility"": 3.7220915711599144e-11, ""dual_infeasibility"": 1.8222941201475597e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:26:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +298,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:26:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +299,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:28:01,17.504395723342896,OPTIMAL,-0.10256951121188174,-0.10256951121204069,1.589561815507068e-13,8.039548008470551e-16,2.720397466104802e-14,14,"{""solver_solve_time"": 0.432617, ""problem_class"": ""SOCP""}" +300,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:28:20,17.77618932723999,OPTIMAL,-0.10256950565999576,-0.10256951114752975,5.487533996650917e-09,2.6441459719661748e-11,2.0332286620010367e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +301,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:28:38,17.56754207611084,OPTIMAL,-0.10256951119546298,-0.10256951120226779,6.804806718108125e-12,3.092966674770312e-14,2.36811594750051e-13,13,"{""solver_solve_time"": 0.338675416, ""problem_class"": ""SOCP""}" +302,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:28:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +303,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:28:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +304,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:29:08,17.17594003677368,OPTIMAL,-0.10256936649935693,-0.10257104661299753,1.6801136406008332e-06,3.1910805185769294e-05,1.891547527204477e-07,950,"{""solver_solve_time"": 0.31569962500000004, ""problem_class"": ""SOCP""}" +305,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:29:14,5.600294828414917,OPTIMAL,-0.10256950754836537,-0.10256951016133178,2.612966412685047e-09,7.249211116524449e-12,2.492579880231683e-10,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.836593625, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -0.10256950754836537, ""dual_objective_value"": -0.10256951016133178, ""duality_gap"": 2.612966412685047e-09, ""primal_infeasibility"": 7.249211116524449e-12, ""dual_infeasibility"": 2.492579880231683e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:29:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +306,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:29:20,4.828796148300171,OPTIMAL,-0.1025694979041563,-0.10256951119637202,1.3292215716997902e-08,2.856571488970491e-11,7.56900876485523e-13,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.81262675, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.1025694979041563, ""dual_objective_value"": -0.10256951119637202, ""duality_gap"": 1.3292215716997902e-08, ""primal_infeasibility"": 2.856571488970491e-11, ""dual_infeasibility"": 7.56900876485523e-13, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:29:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +307,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:29:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +308,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:30:23,51.81062984466553,OPTIMAL,,-0.1025668967864537,,,1.098899869826144e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +309,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:31:03,38.577078104019165,OPTIMAL (INACCURATE),-0.10256935572921497,-0.1025694147293237,5.9000108729168055e-08,2.8997429768473637e-07,3.76033631227958e-09,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +310,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:39:49,59.989562034606934,NUM_ERROR,23.44598268573775,24.309815518761912,0.863832833024162,3.19198625458438e-06,3.967426777597085e-06,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 54.870529958333336, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 23.44598268573775, ""dual_objective_value"": 24.309815518761912, ""duality_gap"": 0.863832833024162, ""primal_infeasibility"": 3.19198625458438e-06, ""dual_infeasibility"": 3.967426777597085e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:39:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +311,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:40:08,11.592885971069336,NUM_ERROR,23.439883661510144,23.43981854369851,6.511781163354158e-05,1.129501557284527e-12,5.164319701422163e-12,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""num_error"", ""solve_time"": 6.361447625, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": 23.439883661510144, ""dual_objective_value"": 23.43981854369851, ""duality_gap"": 6.511781163354158e-05, ""primal_infeasibility"": 1.129501557284527e-12, ""dual_infeasibility"": 5.164319701422163e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 22:40:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +312,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:41:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +313,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:41:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +314,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:41:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +315,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:41:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +316,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:42:49,69.87112617492676,OPTIMAL,23.439818974587567,23.439818435224183,5.393633841777046e-07,1.589519974455338e-11,4.7948349842514454e-14,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +317,scipy_linprog,scipy-1.15.3,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:42:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +318,cvxpy_clarabel,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:48:48,1.9512720108032227,ERROR,,,,,,,"{""error_message"": ""Clarabel: unrecognized solver setting 'max_time'."", ""problem_class"": ""SDP""}" +319,cvxpy_clarabel,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:49:25,1.607564926147461,ERROR,,,,,,,"{""error_message"": ""Clarabel: unrecognized solver setting 'max_time_sec'."", ""problem_class"": ""SDP""}" +320,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.9.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:52:08,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""timeout_reason"": ""Command timeout"", ""known_issue"": ""CLARABEL SIGKILL on large SDP problems""}" +321,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:52:08,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""timeout_reason"": ""Command timeout""}" +322,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T13:52:08,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""timeout_reason"": ""Command timeout""}" +337,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:32,0.23426198959350586,OPTIMAL (INACCURATE),-1.6401068919646988e-08,-3.033602862628601e-08,1.3934959706639019e-08,7.24230986971135e-09,0.0,14,"{""solver_solve_time"": 0.18839046, ""problem_class"": ""SDP""}" +338,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:34,2.3531270027160645,OPTIMAL,-2.497696811876171e-08,-3.94442290703259e-08,1.4467260951564188e-08,7.720817848199098e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +339,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +340,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +341,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +342,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +343,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,0.09977483749389648,OPTIMAL,2.763797219494657e-06,6.008903171780412e-07,2.1629069023166157e-06,5.79374368893745e-07,2.176976834364473e-09,275,"{""solver_solve_time"": 0.055474916, ""problem_class"": ""SDP""}" +344,cvxpy_sdpa,unknown,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:35,0.13973784446716309,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +345,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:40,5.58610987663269,OPTIMAL,3.052785142731995e-10,-8.226008756477171e-10,1.1278793899209166e-09,8.989166660748627e-12,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8651230833333333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 3.052785142731995e-10, ""dual_objective_value"": -8.226008756477171e-10, ""duality_gap"": 1.1278793899209166e-09, ""primal_infeasibility"": 8.989166660748627e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:08:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +346,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:46,5.53113579750061,OPTIMAL,-6.648659598568196e-09,-6.63208127634892e-09,1.6578322219276284e-11,1.912548723169372e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7172639583333333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -6.648659598568196e-09, ""dual_objective_value"": -6.63208127634892e-09, ""duality_gap"": 1.6578322219276284e-11, ""primal_infeasibility"": 1.912548723169372e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:08:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +347,scipy_linprog,scipy-1.15.3,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:08:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +348,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:10:40,4.257943153381348,OPTIMAL (INACCURATE),-4.4884696204575136e-08,-6.567172048617617e-08,2.0787024281601034e-08,1.0638153482222468e-08,0.0,16,"{""solver_solve_time"": 3.280234458, ""problem_class"": ""SDP""}" +349,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43,62.819146156311035,OPTIMAL,-2.4827762840420875e-08,-3.392721178555364e-08,9.099448945132768e-09,4.740723896523209e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +350,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +351,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +352,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +353,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +354,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:45,1.2642018795013428,OPTIMAL,-7.956279965304347e-06,-3.197190700468751e-06,-4.759089264835596e-06,2.804389571931542e-06,8.648485158449915e-09,300,"{""solver_solve_time"": 0.282846708, ""problem_class"": ""SDP""}" +355,cvxpy_sdpa,unknown,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:48,2.2467129230499268,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +356,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:11:59,11.636394262313843,OPTIMAL,2.1934585398009077e-10,-5.412207421364536e-10,7.605665961165443e-10,4.353859708422998e-12,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.72506075, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 2.1934585398009077e-10, ""dual_objective_value"": -5.412207421364536e-10, ""duality_gap"": 7.605665961165443e-10, ""primal_infeasibility"": 4.353859708422998e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:11:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +357,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:12:28,28.6621150970459,OPTIMAL,-1.8940067866499155e-08,-1.8927203322356983e-08,1.2864544142172114e-11,3.257627120427927e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 23.552582916666665, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1.8940067866499155e-08, ""dual_objective_value"": -1.8927203322356983e-08, ""duality_gap"": 1.2864544142172114e-11, ""primal_infeasibility"": 3.257627120427927e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:12:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +358,scipy_linprog,scipy-1.15.3,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752362240.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:12:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +359,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:34,1.4079649448394775,OPTIMAL (INACCURATE),1.4161020106468114,1.4161020228518586,-1.2205047195124052e-08,1.1274549784995933e-06,6.106204455194476e-09,31,"{""solver_solve_time"": 1.372236911, ""problem_class"": ""SDP""}" +360,cvxpy_cvxopt,unknown,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:42,8.001045942306519,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +361,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +362,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +363,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +364,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:45:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +365,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:46:14,31.373349905014038,OPTIMAL (INACCURATE),1.409073703261462,1.4090806844233812,-6.981161919217271e-06,7.523837266388142e-05,3.375321326271274e-05,100000,"{""solver_solve_time"": 31.341522207999997, ""problem_class"": ""SDP""}" +366,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:46:54,39.998786211013794,OPTIMAL (INACCURATE),1.4161295151451585,1.4161284417476618,1.0733974966647963e-06,3.529475717602551e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +367,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:02,7.678075790405273,MAX_ITER,1.4161291196982995,1.416128628065133,4.916331663995521e-07,7.938472564250578e-08,0.0,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 3.09142575, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 1.4161291196982995, ""dual_objective_value"": 1.416128628065133, ""duality_gap"": 4.916331663995521e-07, ""primal_infeasibility"": 7.938472564250578e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:47:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +368,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:09,6.840111017227173,OPTIMAL,1.416129455716613,1.4161294580694332,2.3528201609224197e-09,1.2528510194570304e-09,1.5300296534754392e-08,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.4125649166666667, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": 1.416129455716613, ""dual_objective_value"": 1.4161294580694332, ""duality_gap"": 2.3528201609224197e-09, ""primal_infeasibility"": 1.2528510194570304e-09, ""dual_infeasibility"": 1.5300296534754392e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:48:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +369,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:11,1.458812952041626,OPTIMAL (INACCURATE),1.4161020106468114,1.4161020228518586,-1.2205047195124052e-08,1.1274549784995933e-06,6.106204455194476e-09,31,"{""solver_solve_time"": 1.425402127, ""problem_class"": ""SDP""}" +370,cvxpy_cvxopt,unknown,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18,7.210028886795044,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +371,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +372,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +373,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +374,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +375,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:48:49,31.47291898727417,OPTIMAL (INACCURATE),1.409073703261462,1.4090806844233812,-6.981161919217271e-06,7.523837266388142e-05,3.375321326271274e-05,100000,"{""solver_solve_time"": 31.439016208, ""problem_class"": ""SDP""}" +376,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:49:30,40.1348659992218,OPTIMAL (INACCURATE),1.4161295151451585,1.4161284417476618,1.0733974966647963e-06,3.529475717602551e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +377,scipy_linprog,scipy-1.15.3,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:49:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +389,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:13,5.549195051193237,UNKNOWN,5.992654461591593,5.981017465497352,0.01163699609424107,2.6102968408925996e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.7854669166666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 5.992654461591593, ""dual_objective_value"": 5.981017465497352, ""duality_gap"": 0.01163699609424107, ""primal_infeasibility"": 2.6102968408925996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:53:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +390,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:18,5.551377773284912,NUM_ERROR,5.981957450464189,5.982166011101507,0.00020856063731766739,7.963841922701557e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5479260833333334, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 5.981957450464189, ""dual_objective_value"": 5.982166011101507, ""duality_gap"": 0.00020856063731766739, ""primal_infeasibility"": 7.963841922701557e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-13 23:53:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +391,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:19,1.3531219959259033,OPTIMAL (INACCURATE),5.966248462567837,5.966249544813763,-1.0822459266535134e-06,9.701486038460028e-07,0.0,38,"{""solver_solve_time"": 1.3497306660000001, ""problem_class"": ""SDP""}" +392,cvxpy_cvxopt,unknown,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,0.5625021457672119,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +393,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +394,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +395,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +396,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +397,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:38,18.2932550907135,OPTIMAL (INACCURATE),5.942591741517748,5.94744385187505,-0.004852110357302486,1.128928529831279e-06,0.0,100000,"{""solver_solve_time"": 18.290127541, ""problem_class"": ""SDP""}" +398,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:39,0.13327908515930176,OPTIMAL (INACCURATE),5.9713171314052325,5.976935592929294,-0.0056184615240617575,1.08915726239491e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +399,scipy_linprog,scipy-1.15.3,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +400,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:21:49,6.828199863433838,OPTIMAL,-223.99999755382208,-224.00000119657497,3.642752886889866e-06,3.435419260401472e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.9881776666666666, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -223.99999755382208, ""dual_objective_value"": -224.00000119657497, ""duality_gap"": 3.642752886889866e-06, ""primal_infeasibility"": 3.435419260401472e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 00:21:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +401,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:22:17,28.773623943328857,OPTIMAL,-224.00000026429433,-224.00000011609177,1.4820255955783068e-07,5.2487088009421366e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 23.351098458333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -224.00000026429433, ""dual_objective_value"": -224.00000011609177, ""duality_gap"": 1.4820255955783068e-07, ""primal_infeasibility"": 5.2487088009421366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 00:22:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +402,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +403,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +404,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +405,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +406,scipy_linprog,scipy-1.15.3,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +407,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:31:13,21.987760066986084,OPTIMAL,-224.0003222026227,-224.00037351826538,5.131564267912836e-05,5.492586278581966e-07,1.2811657673655026e-08,325,"{""solver_solve_time"": 21.050265458000002, ""problem_class"": ""SDP""}" +408,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:31:20,2.6725239753723145,OPTIMAL,-223.99999657347732,-224.00000195439648,5.380919162689679e-06,7.830681581889643e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +416,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:44:47,6.90191912651062,OPTIMAL,-42.66666606990655,-42.66666679075191,7.208453638440915e-07,1.0369985582790911e-10,0.0,8,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8053178333333333, ""setup_time"": [], ""iterations"": 8, ""primal_objective_value"": -42.66666606990655, ""dual_objective_value"": -42.66666679075191, ""duality_gap"": 7.208453638440915e-07, ""primal_infeasibility"": 1.0369985582790911e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 00:44:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +417,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:03,9.566908836364746,OPTIMAL,-42.666666707488446,-42.66666670384585,3.6425973348741536e-09,2.7680298055873787e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 4.882939291666666, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -42.666666707488446, ""dual_objective_value"": -42.66666670384585, ""duality_gap"": 3.6425973348741536e-09, ""primal_infeasibility"": 2.7680298055873787e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 00:45:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +418,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +419,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +420,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +421,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +422,scipy_linprog,scipy-1.15.3,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +423,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:18,0.3216381072998047,OPTIMAL,-42.66663809919346,-42.666691827474416,5.3728280953180274e-05,3.823840598620477e-07,0.0,150,"{""solver_solve_time"": 0.260323333, ""problem_class"": ""SDP""}" +424,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:25,0.6072909832000732,OPTIMAL,-42.66666466059041,-42.66666774012631,3.0795358938462414e-06,4.494236949271214e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +425,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:38,6.381925106048584,OPTIMAL,-42.666666408791805,-42.66666641006614,1.2743370803036669e-09,3.3836883209684965e-16,4.956901572407782e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +426,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:46:05,18.875242948532104,OPTIMAL,-42.66666667203015,-42.66666666625962,-5.770530719928502e-09,1.8842178928241884e-09,8.196094314750425e-14,6,"{""solver_solve_time"": 18.824221376, ""problem_class"": ""SDP""}" +427,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:48:04,86.88486099243164,OPTIMAL,-25.599999843331616,-25.600000096699134,2.5336751718896267e-07,3.1121343206556096e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 82.61410366666667, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -25.599999843331616, ""dual_objective_value"": -25.600000096699134, ""duality_gap"": 2.5336751718896267e-07, ""primal_infeasibility"": 3.1121343206556096e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 00:48:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +428,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +429,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +430,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +431,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +432,scipy_linprog,scipy-1.15.3,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +433,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:36,5.7120819091796875,OPTIMAL,-25.599995287166273,-25.599994400951143,-8.862151297250875e-07,8.066216926898107e-08,1.0420348665432626e-09,225,"{""solver_solve_time"": 2.087001041, ""problem_class"": ""SDP""}" +435,matlab_sdpt3,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:06,5.890522003173828,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +436,matlab_sedumi,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:18,4.405834913253784,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +437,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:28,1.8724610805511475,OPTIMAL (INACCURATE),-0.9141614331465502,-0.8869089226495065,-0.02725251049704369,8.264335179641823e-08,1.6865610824784975e-07,100000,"{""solver_solve_time"": 1.866658041, ""problem_class"": ""SDP""}" +438,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:37,0.019330739974975586,OPTIMAL,-5.925342226589732e-05,-5.925213757701722e-05,-1.284688880104324e-09,1.639363195032902e-05,0.0,44,"{""solver_solve_time"": 0.015895543, ""problem_class"": ""SDP""}" +439,cvxpy_cvxopt,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:37,0.38875889778137207,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +440,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:37,0.01279592514038086,OPTIMAL (INACCURATE),-26.284632319814868,-3.218852415953317,-23.06577990386155,0.0002664963558692289,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +441,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +442,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +443,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +444,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +445,scipy_linprog,scipy-1.15.3,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:55:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +446,matlab_sdpt3,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:56:39,4.389965057373047,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +447,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:56:50,2.832101821899414,OPTIMAL (INACCURATE),-30.338550211015605,-30.33799946764806,-0.0005507433675440154,5.355649271250418e-06,9.237317500777047e-05,100000,"{""solver_solve_time"": 2.8275627909999996, ""problem_class"": ""SDP""}" +448,cvxpy_clarabel,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:56:50,0.01382899284362793,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +449,matlab_sedumi,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,4.410099029541016,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +450,cvxpy_cvxopt,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,0.07933282852172852,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +451,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,0.011415958404541016,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +452,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +453,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +454,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +455,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +456,scipy_linprog,scipy-1.15.3,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +457,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:05:15,7.069135904312134,OPTIMAL,-0.9460284865934897,-0.9460284991390998,1.2545610106329264e-08,6.250873663071201e-11,2.95124542471296e-11,37,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.060778875, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -0.9460284865934897, ""dual_objective_value"": -0.9460284991390998, ""duality_gap"": 1.2545610106329264e-08, ""primal_infeasibility"": 6.250873663071201e-11, ""dual_infeasibility"": 2.95124542471296e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:05:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +458,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:05:26,5.561333894729614,OPTIMAL,-0.9460278817820568,-0.9460275595123333,3.2226972346283134e-07,8.718969712675225e-10,1.4556998452282358e-08,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5134755416666666, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -0.9460278817820568, ""dual_objective_value"": -0.9460275595123333, ""duality_gap"": 3.2226972346283134e-07, ""primal_infeasibility"": 8.718969712675225e-10, ""dual_infeasibility"": 1.4556998452282358e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:05:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +459,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:05:58,21.510102033615112,OPTIMAL,-0.9460280973730932,-0.9460280998223545,2.4492612382687184e-09,1.956251612313512e-08,1.3360942438602618e-08,15,"{""solver_solve_time"": 0.080912458, ""problem_class"": ""SOCP""}" +460,cvxpy_cvxopt,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:20,22.299565076828003,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +461,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42,21.298002243041992,OPTIMAL (INACCURATE),-0.9460284749224446,-0.9460284748518045,-7.064004936552237e-11,3.478855069906872e-11,8.506553783847303e-09,63,"{""solver_solve_time"": 0.339001291, ""problem_class"": ""SOCP""}" +462,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +463,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +464,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:08:05,20.956520080566406,OPTIMAL,-0.9460027956114715,-0.9459981676622777,-4.627949193758418e-06,2.900046732074137e-06,1.0668505768545404e-05,475,"{""solver_solve_time"": 0.163330708, ""problem_class"": ""SOCP""}" +465,cvxpy_sdpa,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:08:54,42.34715795516968,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +466,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:09:57,57.389968156814575,OPTIMAL,,-0.9316011995967092,,,0.0004163234009667355,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +467,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:10:22,21.114145040512085,OPTIMAL (INACCURATE),-0.9460284749224446,-0.9460284748518045,-7.064004936552237e-11,3.478855069906872e-11,8.506553783847303e-09,63,"{""solver_solve_time"": 0.339042, ""problem_class"": ""SOCP""}" +468,scipy_linprog,scipy-1.15.3,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:11:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +469,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:12:13,8.729975938796997,OPTIMAL,-0.9350529216589623,-0.9350529430516714,2.1392709159684387e-08,4.568144423812863e-11,3.3090660555122834e-11,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 3.647422875, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": -0.9350529216589623, ""dual_objective_value"": -0.9350529430516714, ""duality_gap"": 2.1392709159684387e-08, ""primal_infeasibility"": 4.568144423812863e-11, ""dual_infeasibility"": 3.3090660555122834e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:12:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +470,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:12:24,4.559087753295898,OPTIMAL,-0.9350511855008967,-0.9350485012990968,2.6842017999406664e-06,5.844691781034275e-10,4.421947097574071e-08,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8408809166666666, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -0.9350511855008967, ""dual_objective_value"": -0.9350485012990968, ""duality_gap"": 2.6842017999406664e-06, ""primal_infeasibility"": 5.844691781034275e-10, ""dual_infeasibility"": 4.421947097574071e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:12:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +471,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +472,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +473,scipy_linprog,scipy-1.15.3,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +474,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:26:33,38.296096086502075,OPTIMAL,-0.9277286138855316,-0.9277286209962038,7.1106721621916336e-09,5.686816721005497e-11,1.0939141340491139e-12,58,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 31.5971865, ""setup_time"": [], ""iterations"": 58, ""primal_objective_value"": -0.9277286138855316, ""dual_objective_value"": -0.9277286209962038, ""duality_gap"": 7.1106721621916336e-09, ""primal_infeasibility"": 5.686816721005497e-11, ""dual_infeasibility"": 1.0939141340491139e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:26:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +475,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:26:57,16.849349975585938,OPTIMAL,-0.9277236542726338,-0.9277138968827718,9.757389861975163e-06,1.0298591375138612e-09,1.071058841986682e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 12.072145375, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.9277236542726338, ""dual_objective_value"": -0.9277138968827718, ""duality_gap"": 9.757389861975163e-06, ""primal_infeasibility"": 1.0298591375138612e-09, ""dual_infeasibility"": 1.071058841986682e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:26:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +476,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +477,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +478,scipy_linprog,scipy-1.15.3,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +499,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:56:01,5.668828010559082,OPTIMAL,-0.10256950754836537,-0.10256951016133178,2.612966412685047e-09,7.249211116524449e-12,2.492579880231683e-10,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8035435833333333, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -0.10256950754836537, ""dual_objective_value"": -0.10256951016133178, ""duality_gap"": 2.612966412685047e-09, ""primal_infeasibility"": 7.249211116524449e-12, ""dual_infeasibility"": 2.492579880231683e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:55:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +500,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:56:18,5.5808491706848145,OPTIMAL,-0.1025694979041563,-0.10256951119637202,1.3292215716997902e-08,2.856571488970491e-11,7.56900876485523e-13,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.49651104166666665, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.1025694979041563, ""dual_objective_value"": -0.10256951119637202, ""duality_gap"": 1.3292215716997902e-08, ""primal_infeasibility"": 2.856571488970491e-11, ""dual_infeasibility"": 7.56900876485523e-13, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 22:56:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +501,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:56:46,16.746599197387695,OPTIMAL,-0.10256951121188174,-0.10256951121204069,1.589561815507068e-13,8.039548008470551e-16,2.720397466104802e-14,14,"{""solver_solve_time"": 0.443129, ""problem_class"": ""SOCP""}" +502,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:03,17.025321006774902,OPTIMAL,-0.10256950565999576,-0.10256951114752975,5.487533996650917e-09,2.6441459719661748e-11,2.0332286620010367e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +503,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20,16.910020112991333,OPTIMAL,-0.10256951119546298,-0.10256951120226779,6.804806718108125e-12,3.092966674770312e-14,2.36811594750051e-13,13,"{""solver_solve_time"": 0.334672958, ""problem_class"": ""SOCP""}" +504,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +505,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:57:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +506,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:58:11,50.8220100402832,OPTIMAL,,-0.1025668967864537,,,1.098899869826144e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +507,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:58:59,17.142093896865845,OPTIMAL,-0.10256936649935693,-0.10257104661299753,1.6801136406008332e-06,3.1910805185769294e-05,1.891547527204477e-07,950,"{""solver_solve_time"": 0.306512833, ""problem_class"": ""SOCP""}" +508,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:59:46,37.45549201965332,OPTIMAL (INACCURATE),-0.10256935572921497,-0.1025694147293237,5.9000108729168055e-08,2.8997429768473637e-07,3.76033631227958e-09,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +509,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:59:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +510,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:02:47,4.609687089920044,UNKNOWN,-6.4966770139444625,-6.496675726860695,1.2870837675649227e-06,7.454748459602961e-09,2.2293203875515626e-08,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.715404625, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -6.4966770139444625, ""dual_objective_value"": -6.496675726860695, ""duality_gap"": 1.2870837675649227e-06, ""primal_infeasibility"": 7.454748459602961e-09, ""dual_infeasibility"": 2.2293203875515626e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 23:02:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +511,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:03:05,5.594038009643555,OPTIMAL,-6.49666909788267,-6.496669087168537,1.0714132692157818e-08,7.182734585341389e-10,3.7263864829751396e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.47516129166666665, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -6.49666909788267, ""dual_objective_value"": -6.496669087168537, ""duality_gap"": 1.0714132692157818e-08, ""primal_infeasibility"": 7.182734585341389e-10, ""dual_infeasibility"": 3.7263864829751396e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 23:03:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +512,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:04:07,52.38844394683838,OPTIMAL,-6.496675072773684,-6.496675072817704,4.4019898837177607e-11,8.612756727893201e-10,3.714323041760762e-09,19,"{""solver_solve_time"": 0.12342425, ""problem_class"": ""SOCP""}" +513,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:05:37,77.06227493286133,OPTIMAL,-6.496674199067025,-6.496674193174276,-5.892748511371337e-09,2.237809310520621e-09,8.622386895665068e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +514,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:31,52.14936709403992,OPTIMAL,-6.496675716987453,-6.496675716971549,-1.5903722783150442e-11,7.350808444749379e-13,7.798431676338478e-10,17,"{""solver_solve_time"": 0.17480625, ""problem_class"": ""SOCP""}" +515,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +516,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +517,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:12:59,57.17706084251404,OPTIMAL,-6.496662894119256,-6.496659451196209,-3.4429230471033634e-06,8.634202940522347e-08,5.405298460172423e-06,14375,"{""solver_solve_time"": 5.181465375, ""problem_class"": ""SOCP""}" +518,cvxpy_sdpa,unknown,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:14:57,104.95400619506836,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +519,scipy_linprog,scipy-1.15.3,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:14:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +520,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:19:43,6.598160266876221,UNKNOWN,-6.562707043774328,-6.562705418128809,1.625645518643637e-06,1.0393547981901797e-09,6.418055339037683e-08,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.153102083333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -6.562707043774328, ""dual_objective_value"": -6.562705418128809, ""duality_gap"": 1.625645518643637e-06, ""primal_infeasibility"": 1.0393547981901797e-09, ""dual_infeasibility"": 6.418055339037683e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 23:19:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +521,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:19:59,6.538948059082031,OPTIMAL,-6.562697214789513,-6.562697203156434,1.1633079388673195e-08,2.9305640450404797e-10,2.5921160736720044e-08,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.6807733333333332, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -6.562697214789513, ""dual_objective_value"": -6.562697203156434, ""duality_gap"": 1.1633079388673195e-08, ""primal_infeasibility"": 2.9305640450404797e-10, ""dual_infeasibility"": 2.5921160736720044e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-14 23:19:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +522,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +523,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +524,scipy_linprog,scipy-1.15.3,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +537,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:41:32,5.55631685256958,MAX_ITER,26673.095548738904,26672.99721972217,0.09832901673507877,3.15909062818255e-07,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.7122815416666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 26673.095548738904, ""dual_objective_value"": 26672.99721972217, ""duality_gap"": 0.09832901673507877, ""primal_infeasibility"": 3.15909062818255e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 00:41:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +538,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:41:45,5.536787986755371,OPTIMAL,26673.000976938325,26673.000978030293,1.0919684427790344e-06,1.0054272660303507e-09,3.565461396342987e-11,44,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6427959583333334, ""setup_time"": [], ""iterations"": 44, ""primal_objective_value"": 26673.000976938325, ""dual_objective_value"": 26673.000978030293, ""duality_gap"": 1.0919684427790344e-06, ""primal_infeasibility"": 1.0054272660303507e-09, ""dual_infeasibility"": 3.565461396342987e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 00:41:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +539,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:41:56,0.15216612815856934,OPTIMAL (INACCURATE),26673.000976502055,26673.000976503732,-1.6771082300692797e-09,6.4391229604616e-06,1.2221958605691128e-11,29,"{""solver_solve_time"": 0.095922207, ""problem_class"": ""SOCP""}" +540,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,23.28376317024231,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +541,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,0.17055892944335938,OPTIMAL,26673.000987463758,26673.000988293505,-8.297465683426708e-07,0.0008211845592554915,3.175354988442067e-09,30,"{""solver_solve_time"": 0.114245291, ""problem_class"": ""SOCP""}" +542,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +543,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +544,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:46:34,18.283209800720215,OPTIMAL (INACCURATE),35809.49201866682,36069.131423950195,-259.63940528337844,0.6278642052360084,2013643.3276811917,100000,"{""solver_solve_time"": 18.221846582999998, ""problem_class"": ""SOCP""}" +545,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:47:26,36.98214912414551,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +546,scipy_linprog,scipy-1.15.3,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:47:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +547,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:50:02,6.5833518505096436,MAX_ITER,181893.5416873559,181889.2138017401,4.3278856158140115,0.0001842777716910772,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 1.3252521666666666, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 181893.5416873559, ""dual_objective_value"": 181889.2138017401, ""duality_gap"": 4.3278856158140115, ""primal_infeasibility"": 0.0001842777716910772, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 00:49:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +548,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:50:07,5.615222930908203,OPTIMAL,181889.9393690289,181889.93942920535,6.017644773237407e-05,6.474335930554726e-08,1.9271716253657946e-10,41,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.0267285833333333, ""setup_time"": [], ""iterations"": 41, ""primal_objective_value"": 181889.9393690289, ""dual_objective_value"": 181889.93942920535, ""duality_gap"": 6.017644773237407e-05, ""primal_infeasibility"": 6.474335930554726e-08, ""dual_infeasibility"": 1.9271716253657946e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 00:50:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +549,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:50:18,0.3952810764312744,OPTIMAL (INACCURATE),181889.9302235155,181889.93017808485,4.543064278550446e-05,0.20507020561906186,1.6535033732446265e-07,30,"{""solver_solve_time"": 0.215109335, ""problem_class"": ""SOCP""}" +550,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:07,108.75608777999878,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +551,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:08,0.4621720314025879,OPTIMAL (INACCURATE),181889.9476437784,181889.94765594476,-1.216636155731976e-05,0.3529266178870372,2.339171186358583e-05,40,"{""solver_solve_time"": 0.267833375, ""problem_class"": ""SOCP""}" +552,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +553,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +554,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:59,38.64277791976929,UNBOUNDED (INACCURATE),,,,,,100000,"{""solver_solve_time"": 38.448400791, ""problem_class"": ""SOCP""}" +555,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:59:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +556,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T16:00:55,5.614400863647461,UNKNOWN,717664.7819529852,717343.935387326,320.84656565915793,1.4635089779954944e-05,0.0,30,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.008978, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": 717664.7819529852, ""dual_objective_value"": 717343.935387326, ""duality_gap"": 320.84656565915793, ""primal_infeasibility"": 1.4635089779954944e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 01:00:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +557,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T16:01:04,8.602581024169922,NUM_ERROR,717367.7873780461,717367.7875279884,0.0001499423524364829,3.2577166049237135e-05,3.822526277112251e-09,101,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.5169220416666667, ""setup_time"": [], ""iterations"": 101, ""primal_objective_value"": 717367.7873780461, ""dual_objective_value"": 717367.7875279884, ""duality_gap"": 0.0001499423524364829, ""primal_infeasibility"": 3.2577166049237135e-05, ""dual_infeasibility"": 3.822526277112251e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 01:01:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +558,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:34,1.0301058292388916,OPTIMAL (INACCURATE),717367.9694302354,717367.9693405145,8.972093928605318e-05,0.4553377125041338,1.7972121515951058e-07,29,"{""solver_solve_time"": 0.401100872, ""problem_class"": ""SOCP""}" +559,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,1.4604618549346924,OPTIMAL (INACCURATE),717387.6566034524,717387.6570615877,-0.0004581352695822716,0.010368232231233494,0.0016076899929897248,70,"{""solver_solve_time"": 0.888042958, ""problem_class"": ""SOCP""}" +560,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +561,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +562,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +563,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:28:41,69.69011402130127,OPTIMAL (INACCURATE),1426694.15480458,1426060.9124832153,633.2423213645816,4.495169240132521,668608.3395679782,100000,"{""solver_solve_time"": 69.087200041, ""problem_class"": ""SOCP""}" +564,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:30:24,10.792490005493164,MAX_ITER,141398.6133370716,141352.75901112944,45.85432594217127,2.270219537981104e-05,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 5.4686972916666665, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": 141398.6133370716, ""dual_objective_value"": 141352.75901112944, ""duality_gap"": 45.85432594217127, ""primal_infeasibility"": 2.270219537981104e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 07:30:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +565,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:30:38,13.64169192314148,INFEASIBLE,421.94187307827224,0.9999999999999997,420.94187307827224,1.3616549626114933,6.062796780357364e-09,150,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""infeasible"", ""solve_time"": 9.060077083333333, ""setup_time"": [], ""iterations"": 150, ""primal_objective_value"": 421.94187307827224, ""dual_objective_value"": 0.9999999999999997, ""duality_gap"": 420.94187307827224, ""primal_infeasibility"": 1.3616549626114933, ""dual_infeasibility"": 6.062796780357364e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-15 07:30:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +566,cvxpy_clarabel,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:46:07,4.994290113449097,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +567,cvxpy_ecos,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:47:08,6.631985902786255,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +568,cvxpy_clarabel,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:49:21,4.700660943984985,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +569,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +570,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +571,scipy_linprog,scipy-1.15.3,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +572,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:05,7.826324939727783,OPTIMAL,7.852038477343999,7.85203843733003,4.0013969027086205e-08,5.643670372617149e-10,8.132293889752614e-13,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8310375416666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 7.852038477343999, ""dual_objective_value"": 7.85203843733003, ""duality_gap"": 4.0013969027086205e-08, ""primal_infeasibility"": 5.643670372617149e-10, ""dual_infeasibility"": 8.132293889752614e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 14:57:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +573,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:10,5.541210174560547,OPTIMAL,7.8520384401152645,7.852038442629353,2.514088492944211e-09,1.8727965760166163e-11,1.9350277378313464e-10,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.526994625, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": 7.8520384401152645, ""dual_objective_value"": 7.852038442629353, ""duality_gap"": 2.514088492944211e-09, ""primal_infeasibility"": 1.8727965760166163e-11, ""dual_infeasibility"": 1.9350277378313464e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 14:57:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +574,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:19,0.1251518726348877,OPTIMAL (INACCURATE),7.852038439863746,7.852038439863737,8.881784197001252e-15,5.942633532349437e-09,3.1698625599395943e-13,26,"{""solver_solve_time"": 0.082240832, ""problem_class"": ""SOCP""}" +575,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:38,18.378044843673706,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +576,cvxpy_ecos,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:38,0.31072497367858887,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +577,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:57,18.66447901725769,OPTIMAL (INACCURATE),7.852068168748205,7.852068714033491,-5.452852862575241e-07,1.3471978048109906e-08,0.00038825804604077893,100000,"{""solver_solve_time"": 18.617637666, ""problem_class"": ""SOCP""}" +578,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +579,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +580,scipy_linprog,scipy-1.15.3,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:03:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +581,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:05:24,78.08418297767639,OPTIMAL (INACCURATE),7.852038526235663,7.852043972235164,-5.445999500253151e-06,1.669993096788863e-08,4.0060306334744484e-07,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +582,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:05:37,5.596590995788574,OPTIMAL,7.852038477343999,7.85203843733003,4.0013969027086205e-08,5.643670372617149e-10,8.132293889752614e-13,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.72104875, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 7.852038477343999, ""dual_objective_value"": 7.85203843733003, ""duality_gap"": 4.0013969027086205e-08, ""primal_infeasibility"": 5.643670372617149e-10, ""dual_infeasibility"": 8.132293889752614e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 15:05:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +583,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:05:50,5.596127033233643,OPTIMAL,7.8520384401152645,7.852038442629353,2.514088492944211e-09,1.8727965760166163e-11,1.9350277378313464e-10,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.49117570833333335, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": 7.8520384401152645, ""dual_objective_value"": 7.852038442629353, ""duality_gap"": 2.514088492944211e-09, ""primal_infeasibility"": 1.8727965760166163e-11, ""dual_infeasibility"": 1.9350277378313464e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 15:05:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +584,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:27:42,5.686886787414551,UNKNOWN,67.16504386757731,67.1650296736913,1.4193886016755641e-05,8.372561524043076e-08,0.0,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.1679639583333334, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 67.16504386757731, ""dual_objective_value"": 67.1650296736913, ""duality_gap"": 1.4193886016755641e-05, ""primal_infeasibility"": 8.372561524043076e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:27:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +585,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:27:48,5.527230978012085,OPTIMAL,67.16503131825516,67.16504436552164,1.3047266477883568e-05,1.5621088165689924e-09,1.652497306472603e-10,42,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.9435232916666667, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 67.16503131825516, ""dual_objective_value"": 67.16504436552164, ""duality_gap"": 1.3047266477883568e-05, ""primal_infeasibility"": 1.5621088165689924e-09, ""dual_infeasibility"": 1.652497306472603e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:27:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +586,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:27:58,0.3410778045654297,OPTIMAL,67.16503110771706,67.16503110770685,1.0203393685515039e-11,1.3166341677133402e-05,3.192143596063497e-10,28,"{""solver_solve_time"": 0.207739377, ""problem_class"": ""SOCP""}" +587,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:29:28,89.21416902542114,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +588,cvxpy_ecos,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:29:28,0.8036279678344727,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +589,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +590,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +591,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +592,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:02,7.929091930389404,UNKNOWN,27.33080258413944,27.33078486456531,1.7719574131547233e-05,9.835491261168821e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.7880629583333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 27.33080258413944, ""dual_objective_value"": 27.33078486456531, ""duality_gap"": 1.7719574131547233e-05, ""primal_infeasibility"": 9.835491261168821e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:32:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +593,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:07,5.567889928817749,OPTIMAL,27.33078560261699,27.330794117006498,8.5143895063311e-06,2.148011155839875e-08,7.094423477282984e-11,60,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.9609340416666667, ""setup_time"": [], ""iterations"": 60, ""primal_objective_value"": 27.33078560261699, ""dual_objective_value"": 27.330794117006498, ""duality_gap"": 8.5143895063311e-06, ""primal_infeasibility"": 2.148011155839875e-08, ""dual_infeasibility"": 7.094423477282984e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:33:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +594,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +595,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +596,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +597,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:10,8.647787094116211,UNKNOWN,51.81198120718885,51.811960258992684,2.0948196166159505e-05,9.305294462873729e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 4.962180541666667, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 51.81198120718885, ""dual_objective_value"": 51.811960258992684, ""duality_gap"": 2.0948196166159505e-05, ""primal_infeasibility"": 9.305294462873729e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:34:08"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +598,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:22,11.663788080215454,OPTIMAL,51.811964255303366,51.81205548787007,9.123256670307e-05,2.1438553479259163e-08,4.496836433724744e-09,79,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 6.1357995, ""setup_time"": [], ""iterations"": 79, ""primal_objective_value"": 51.811964255303366, ""dual_objective_value"": 51.81205548787007, ""duality_gap"": 9.123256670307e-05, ""primal_infeasibility"": 2.1438553479259163e-08, ""dual_infeasibility"": 4.496836433724744e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:34:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +599,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +600,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +601,scipy_linprog,scipy-1.15.3,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +602,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:59:50,6.541438102722168,OPTIMAL,-527.808660710369,-527.8086632131733,2.502804250070767e-06,1.4509650835086007e-11,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.6325337083333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -527.808660710369, ""dual_objective_value"": -527.8086632131733, ""duality_gap"": 2.502804250070767e-06, ""primal_infeasibility"": 1.4509650835086007e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 18:59:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +603,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:00:03,12.579945087432861,OPTIMAL,-527.8086592434917,-527.8086592306726,1.281910044781398e-08,2.098791477322716e-09,5.187620354134206e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 7.55835425, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -527.8086592434917, ""dual_objective_value"": -527.8086592306726, ""duality_gap"": 1.281910044781398e-08, ""primal_infeasibility"": 2.098791477322716e-09, ""dual_infeasibility"": 5.187620354134206e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:00:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +604,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +605,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +606,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +607,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +608,scipy_linprog,scipy-1.15.3,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +609,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:04:34,75.3174741268158,OPTIMAL,-3474.794059052365,-3474.7940824213174,2.336895249754889e-05,2.319714150200321e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 66.21210475, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -3474.794059052365, ""dual_objective_value"": -3474.7940824213174, ""duality_gap"": 2.336895249754889e-05, ""primal_infeasibility"": 2.319714150200321e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:04:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +610,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +611,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +612,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +613,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +614,scipy_linprog,scipy-1.15.3,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +615,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:14,5.600940942764282,OPTIMAL,-48340945.86330335,-48340945.949232884,0.08592953532934189,3.430228268358133e-11,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.6269358333333332, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -48340945.86330335, ""dual_objective_value"": -48340945.949232884, ""duality_gap"": 0.08592953532934189, ""primal_infeasibility"": 3.430228268358133e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:06:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +616,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:26,11.690231084823608,OPTIMAL,-48340945.69408667,-48340945.69332005,0.0007666200399398804,1.6106946788226167e-09,3.269120548119365e-16,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 7.940229291666666, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -48340945.69408667, ""dual_objective_value"": -48340945.69332005, ""duality_gap"": 0.0007666200399398804, ""primal_infeasibility"": 1.6106946788226167e-09, ""dual_infeasibility"": 3.269120548119365e-16, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:06:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +617,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +618,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +619,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +620,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +621,scipy_linprog,scipy-1.15.3,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +622,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:08:25,75.14031600952148,OPTIMAL,-318810925.66454315,-318810927.37935495,1.7148118019104004,3.472238775909382e-13,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 68.064607875, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -318810925.66454315, ""dual_objective_value"": -318810927.37935495, ""duality_gap"": 1.7148118019104004, ""primal_infeasibility"": 3.472238775909382e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:08:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +623,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +624,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +625,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +626,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +627,scipy_linprog,scipy-1.15.3,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +628,matlab_sdpt3,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:11,4.393420934677124,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +629,matlab_sedumi,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:23,4.34223198890686,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +630,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:32,0.4248371124267578,OPTIMAL (INACCURATE),132.63530797336855,132.6353098328787,-1.8595101494156552e-06,2.976961436986348e-06,6.742415211712427e-08,19,"{""solver_solve_time"": 0.38295104, ""problem_class"": ""SDP""}" +631,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,1.2074768543243408,OPTIMAL,132.63567622801477,132.63567623702812,-9.013348289954592e-09,1.4353448618618097e-08,3.018302548232494e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +632,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +633,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +634,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +635,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +636,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05,21.932883977890015,OPTIMAL,132.67032214278458,132.67032627913713,-4.136352544037436e-06,2.4188989473182798e-06,0.0024103317967444286,83675,"{""solver_solve_time"": 21.892902833, ""problem_class"": ""SDP""}" +637,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05,0.15076208114624023,OPTIMAL,132.6356794538592,132.63567502877504,4.425084171089111e-06,6.293316373095602e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +638,scipy_linprog,scipy-1.15.3,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +639,matlab_sdpt3,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:58,4.378378868103027,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +640,matlab_sedumi,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:18,4.43747615814209,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +641,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:25,7.333973407745361,OPTIMAL,133.11452300392386,133.1145231602386,-1.5631474070687545e-07,5.880442946566506e-07,2.416827226267145e-08,20,"{""solver_solve_time"": 7.194446292, ""problem_class"": ""SDP""}" +642,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,4.541913032531738,OPTIMAL,133.11458873614384,133.11458873454836,1.5954810805851594e-09,5.1857958079351704e-09,9.454734908598581e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +643,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +644,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +645,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +646,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +647,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:48,78.31024694442749,OPTIMAL,133.206421971091,133.2064255039062,-3.532815185280924e-06,1.809776268177368e-06,0.0026429235860219477,90650,"{""solver_solve_time"": 78.17087804100001, ""problem_class"": ""SDP""}" +648,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:49,0.618751049041748,OPTIMAL,133.11459453047246,133.11459273039674,1.8000757222580432e-06,1.4560143550748557e-10,2.0041502554605766e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +649,scipy_linprog,scipy-1.15.3,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +650,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:16:49,6.552584886550903,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.8054952916666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:16:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +651,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:05,6.273025035858154,OPTIMAL,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.5287795833333333, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -0.5665172725671985, ""dual_objective_value"": -0.5665172736468338, ""duality_gap"": 1.0796352700737089e-09, ""primal_infeasibility"": 8.490926777938654e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:17:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +652,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:13,8.003314018249512,OPTIMAL,-0.5665172821147114,-0.5665172817725594,-3.421519734203571e-10,1.022967781834959e-07,0.0,22,"{""solver_solve_time"": 4.988927835, ""problem_class"": ""SDP""}" +653,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,8.43869686126709,OPTIMAL,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +654,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +655,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +656,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +657,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +658,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:21:23,3.5877089500427246,OPTIMAL,-0.566517267707974,-0.5665172734748258,5.766851884914104e-09,6.702895394246997e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +659,scipy_linprog,scipy-1.15.3,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:21:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +660,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:32,6.103507041931152,OPTIMAL,-0.6715154042243952,-0.6715154083287945,4.104399375925993e-09,3.403005752654008e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.3465764166666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -0.6715154042243952, ""dual_objective_value"": -0.6715154083287945, ""duality_gap"": 4.104399375925993e-09, ""primal_infeasibility"": 3.403005752654008e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:22:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +661,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:38,6.765030860900879,OPTIMAL,-0.6715153908899425,-0.6715153884008259,2.4891165795182246e-09,2.8865480120764807e-09,6.157079870441952e-11,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.0417528333333332, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -0.6715153908899425, ""dual_objective_value"": -0.6715153884008259, ""duality_gap"": 2.4891165795182246e-09, ""primal_infeasibility"": 2.8865480120764807e-09, ""dual_infeasibility"": 6.157079870441952e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:22:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +662,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:51,5.150921821594238,OPTIMAL,-0.6715154099679571,-0.6715154097625702,-2.0538692968585792e-10,3.512925202723288e-08,0.0,24,"{""solver_solve_time"": 2.10602146, ""problem_class"": ""SDP""}" +663,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:22:59,7.646672964096069,OPTIMAL,-0.6715154087273556,-0.6715154086542251,-7.313050165436152e-11,1.1755370688932572e-08,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +664,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:03,3.7065846920013428,OPTIMAL (INACCURATE),-0.6715149919393316,-0.6715154519149769,4.599756452394743e-07,9.880028136196605e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +665,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +666,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +667,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +668,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +669,scipy_linprog,scipy-1.15.3,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +670,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:08,6.23797607421875,OPTIMAL,-0.97262741117333,-0.972627418748867,7.57553708652381e-09,8.514427642381836e-10,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5270425833333334, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -0.97262741117333, ""dual_objective_value"": -0.972627418748867, ""duality_gap"": 7.57553708652381e-09, ""primal_infeasibility"": 8.514427642381836e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:26:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +671,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:15,6.838447093963623,OPTIMAL,-0.9726274178595536,-0.9726274178395272,2.00264249627935e-11,2.8576206940232703e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.1125775416666666, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.9726274178595536, ""dual_objective_value"": -0.9726274178395272, ""duality_gap"": 2.00264249627935e-11, ""primal_infeasibility"": 2.8576206940232703e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:26:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +672,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:32,4.8658952713012695,OPTIMAL,-0.9726274329610303,-0.9726274322104886,-7.505416288466904e-10,1.1813692812382962e-07,0.0,20,"{""solver_solve_time"": 1.8078781689999999, ""problem_class"": ""SDP""}" +673,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,7.340211868286133,OPTIMAL,-0.9726274304903915,-0.9726274299150273,-5.753642007277904e-10,7.421682204955683e-08,2.5603242314031326e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +674,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +675,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +676,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +677,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +678,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:44,3.6738202571868896,OPTIMAL (INACCURATE),-0.9726272676562057,-0.9726274431143305,1.7545812480701528e-07,6.41651460356969e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +679,scipy_linprog,scipy-1.15.3,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +680,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:27:58,6.200899124145508,UNKNOWN,-7.056980018798058,-7.056980042117708,2.331965021085125e-08,1.4104717965201591e-08,3.5687676151979556e-13,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.50864925, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -7.056980018798058, ""dual_objective_value"": -7.056980042117708, ""duality_gap"": 2.331965021085125e-08, ""primal_infeasibility"": 1.4104717965201591e-08, ""dual_infeasibility"": 3.5687676151979556e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:27:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +681,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:04,6.003604173660278,OPTIMAL,-7.056980043548424,-7.056980043508659,3.976463602839431e-11,3.648550476043381e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.293280916666667, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -7.056980043548424, ""dual_objective_value"": -7.056980043508659, ""duality_gap"": 3.976463602839431e-11, ""primal_infeasibility"": 3.648550476043381e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:28:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +682,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:09,5.211400032043457,OPTIMAL,-7.056985719383242,-7.0569856944182865,-2.4964955436246328e-08,2.7109763353502106e-06,0.0,24,"{""solver_solve_time"": 2.141730209, ""problem_class"": ""SDP""}" +683,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:17,8.097594976425171,OPTIMAL,-7.056980177129674,-7.056980175019456,-2.1102177782950093e-09,8.034408651651353e-08,1.259191489724154e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +684,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:21,3.7246809005737305,OPTIMAL (INACCURATE),-7.056979925817409,-7.056980053305484,1.2748807520779337e-07,1.428558638956882e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +685,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +686,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +687,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +688,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +689,scipy_linprog,scipy-1.15.3,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +690,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:26,4.813464164733887,OPTIMAL,-17.78462660868152,-17.784626742725198,1.3404367749103585e-07,6.1483802884653124e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.30856429166666666, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -17.78462660868152, ""dual_objective_value"": -17.784626742725198, ""duality_gap"": 1.3404367749103585e-07, ""primal_infeasibility"": 6.1483802884653124e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:30:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +691,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:31,4.935827970504761,OPTIMAL,-17.784626802847523,-17.784626793465566,9.38195654498486e-09,5.28282960426234e-09,0.0,30,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.32204354166666666, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": -17.784626802847523, ""dual_objective_value"": -17.784626793465566, ""duality_gap"": 9.38195654498486e-09, ""primal_infeasibility"": 5.28282960426234e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:30:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +692,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:38,0.014431953430175781,OPTIMAL,-18.057693540129556,-18.05769338831607,-1.5181348445025833e-07,0.02414985830941088,0.0,56,"{""solver_solve_time"": 0.011695578, ""problem_class"": ""SDP""}" +693,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:39,0.9244139194488525,OPTIMAL (INACCURATE),-0.002878232961825694,-20.48065620588266,20.477777972920833,0.27819661314555105,546368.1134344704,100000,"{""solver_solve_time"": 0.921197333, ""problem_class"": ""SDP""}" +694,cvxpy_cvxopt,unknown,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,0.16951608657836914,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +695,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +696,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +697,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +698,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +699,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,0.011685848236083984,OPTIMAL,-17.78462618700244,-17.784627142638215,9.556357731810294e-07,1.9992999166489883e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +700,scipy_linprog,scipy-1.15.3,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +701,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:31:48,5.061094760894775,MAX_ITER,-8.299999963979975,-8.300000195440187,2.3146021277398177e-07,4.880420109459047e-09,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.41280133333333335, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -8.299999963979975, ""dual_objective_value"": -8.300000195440187, ""duality_gap"": 2.3146021277398177e-07, ""primal_infeasibility"": 4.880420109459047e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:31:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +702,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:31:54,5.130542039871216,OPTIMAL,-8.300000061550637,-8.300000053303892,8.24674550869986e-09,8.92637846485658e-09,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.33466908333333334, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -8.300000061550637, ""dual_objective_value"": -8.300000053303892, ""duality_gap"": 8.24674550869986e-09, ""primal_infeasibility"": 8.92637846485658e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:31:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +703,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:02,0.05029797554016113,OPTIMAL,-8.30000052797604,-8.300000490399094,-3.7576945999262534e-08,1.0799058809794016e-07,0.0,25,"{""solver_solve_time"": 0.04589692, ""problem_class"": ""SDP""}" +704,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,4.882005929946899,OPTIMAL (INACCURATE),-0.0019666666133589523,-1.6631072323702496,1.6611405657568907,0.166111590183817,16899.147636217396,100000,"{""solver_solve_time"": 4.877240708, ""problem_class"": ""SDP""}" +705,cvxpy_cvxopt,unknown,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,0.1693129539489746,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +706,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +707,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +708,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +709,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +710,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,0.037503957748413086,OPTIMAL,-8.299999482545115,-8.300000044307849,5.617627341081288e-07,1.6670044255637843e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +711,scipy_linprog,scipy-1.15.3,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +712,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:50,5.292490005493164,MAX_ITER,-13.633263261632482,-13.633267476768832,4.215136350183002e-06,8.350276043868962e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.5662195416666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -13.633263261632482, ""dual_objective_value"": -13.633267476768832, ""duality_gap"": 4.215136350183002e-06, ""primal_infeasibility"": 8.350276043868962e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:32:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +713,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:55,5.323393106460571,NUM_ERROR,-13.633266745169918,-13.633266709049082,3.612083609993988e-08,2.9250113210155247e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.479292875, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -13.633266745169918, ""dual_objective_value"": -13.633266709049082, ""duality_gap"": 3.612083609993988e-08, ""primal_infeasibility"": 2.9250113210155247e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:32:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +714,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:05,0.22819089889526367,OPTIMAL,-13.633267734899809,-13.633267702679126,-3.2220683010564244e-08,2.693486524788012e-07,0.0,29,"{""solver_solve_time"": 0.21956029, ""problem_class"": ""SDP""}" +715,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,14.102894306182861,OPTIMAL (INACCURATE),-0.037735833422812004,-0.27289208768706114,0.23515625426424913,0.13917932877951675,1893.5597441188274,100000,"{""solver_solve_time"": 14.09346725, ""problem_class"": ""SDP""}" +716,cvxpy_cvxopt,unknown,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,0.3841969966888428,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +717,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +718,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +719,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +720,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +721,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:20,0.1595902442932129,OPTIMAL (INACCURATE),-13.633263748445593,-13.633266893655158,3.1452095647921396e-06,6.364345948755367e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +722,scipy_linprog,scipy-1.15.3,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +723,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:08,5.934272050857544,UNKNOWN,-19.794231903242835,-19.794231015288197,8.879546378182113e-07,2.2336441257685175e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.0662595, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -19.794231903242835, ""dual_objective_value"": -19.794231015288197, ""duality_gap"": 8.879546378182113e-07, ""primal_infeasibility"": 2.2336441257685175e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:34:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +724,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:13,5.522533893585205,NUM_ERROR,-19.79423223668097,-19.79423226601071,2.932974041414127e-08,7.34021862743097e-08,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.6153702916666667, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -19.79423223668097, ""dual_objective_value"": -19.79423226601071, ""duality_gap"": 2.932974041414127e-08, ""primal_infeasibility"": 7.34021862743097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:34:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +725,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:14,0.8667011260986328,OPTIMAL,-19.79423318506499,-19.79423315316147,-3.190351804960301e-08,5.103843191955561e-07,5.641713395479458e-08,32,"{""solver_solve_time"": 0.849402712, ""problem_class"": ""SDP""}" +726,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:42,27.7015540599823,OPTIMAL (INACCURATE),-0.002563905576329976,-2.112935527155603,2.110371621579273,0.11510210278659297,14854.924304999919,100000,"{""solver_solve_time"": 27.679751250000002, ""problem_class"": ""SDP""}" +727,cvxpy_cvxopt,unknown,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,1.2850801944732666,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +728,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +729,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +730,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +731,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +732,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,0.3332328796386719,OPTIMAL (INACCURATE),-19.79422577234397,-19.7942315506204,5.778276428003437e-06,1.3327565863841907e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +733,scipy_linprog,scipy-1.15.3,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +734,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:35:32,6.201632738113403,UNKNOWN,-16.883596414614832,-16.88360083689795,4.422283119254189e-06,2.75357458891001e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.2019423333333332, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -16.883596414614832, ""dual_objective_value"": -16.88360083689795, ""duality_gap"": 4.422283119254189e-06, ""primal_infeasibility"": 2.75357458891001e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:35:30"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +735,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:35:38,6.2450501918792725,NUM_ERROR,-16.88360792645761,-16.88360752271663,4.037409802037928e-07,4.1151459934863073e-07,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.100189625, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -16.88360792645761, ""dual_objective_value"": -16.88360752271663, ""duality_gap"": 4.037409802037928e-07, ""primal_infeasibility"": 4.1151459934863073e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:35:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +736,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:35:41,2.2983057498931885,OPTIMAL,-16.88364881340114,-16.883648809313648,-4.087493010729304e-09,5.620802961416378e-07,5.697256261448682e-09,35,"{""solver_solve_time"": 2.262509295, ""problem_class"": ""SDP""}" +737,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:35,53.787150144577026,OPTIMAL (INACCURATE),-0.17807903005516243,-0.23275478696713833,0.054675756911975903,0.09362750982167806,369.6736319443367,100000,"{""solver_solve_time"": 53.739289541, ""problem_class"": ""SDP""}" +738,cvxpy_cvxopt,unknown,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:37,2.2808189392089844,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +739,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +740,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +741,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +742,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +743,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:39,0.6724143028259277,OPTIMAL (INACCURATE),-16.883575406676048,-16.883604992850316,2.9586174267848264e-05,2.7521358841549283e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +744,scipy_linprog,scipy-1.15.3,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +745,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:48:27,6.972930669784546,UNKNOWN,-37.3043782593074,-37.30442450422718,4.624491977978096e-05,6.229389742583387e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.591642125, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -37.3043782593074, ""dual_objective_value"": -37.30442450422718, ""duality_gap"": 4.624491977978096e-05, ""primal_infeasibility"": 6.229389742583387e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:48:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +746,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:48:33,6.547445058822632,NUM_ERROR,-37.304475715902306,-37.30447323765376,2.478248546822215e-06,1.310139383095129e-06,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.204321625, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -37.304475715902306, ""dual_objective_value"": -37.30447323765376, ""duality_gap"": 2.478248546822215e-06, ""primal_infeasibility"": 1.310139383095129e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:48:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +747,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:48:39,5.831175804138184,OPTIMAL,-37.3044718247362,-37.30447181818093,-6.5552683281566715e-09,1.4634649666883939e-06,3.059050321188013e-06,42,"{""solver_solve_time"": 5.772460962, ""problem_class"": ""SDP""}" +748,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:12,92.80738425254822,OPTIMAL (INACCURATE),-0.5214729254574336,-1.0154678495708611,0.4939949241134275,0.08196294538901851,3266.178827189497,100000,"{""solver_solve_time"": 92.711285291, ""problem_class"": ""SDP""}" +749,cvxpy_cvxopt,unknown,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,4.976245164871216,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +750,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +751,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +752,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +753,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +754,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:37,6.875578880310059,UNKNOWN,-37.3043782593074,-37.30442450422718,4.624491977978096e-05,6.229389742583387e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.5373036666666666, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -37.3043782593074, ""dual_objective_value"": -37.30442450422718, ""duality_gap"": 4.624491977978096e-05, ""primal_infeasibility"": 6.229389742583387e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:50:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +755,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:45,7.516172170639038,NUM_ERROR,-37.304475715902306,-37.30447323765376,2.478248546822215e-06,1.310139383095129e-06,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.190012041666667, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -37.304475715902306, ""dual_objective_value"": -37.30447323765376, ""duality_gap"": 2.478248546822215e-06, ""primal_infeasibility"": 1.310139383095129e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:50:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +756,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:59,5.778800010681152,OPTIMAL,-37.3044718247362,-37.30447181818093,-6.5552683281566715e-09,1.4634649666883939e-06,3.059050321188013e-06,42,"{""solver_solve_time"": 5.7201280820000004, ""problem_class"": ""SDP""}" +757,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:51:01,1.3343961238861084,OPTIMAL (INACCURATE),-37.30434823321163,-37.30443772697064,8.94937590132372e-05,2.9293219588294305e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +758,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:51:45,6.783206939697266,UNKNOWN,-20.62505846427079,-20.62507774002214,1.9275751348857284e-05,5.828261469963749e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.0850477916666668, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.62505846427079, ""dual_objective_value"": -20.62507774002214, ""duality_gap"": 1.9275751348857284e-05, ""primal_infeasibility"": 5.828261469963749e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:51:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +759,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:51:54,8.334377765655518,NUM_ERROR,-20.625087691567924,-20.625088042230974,3.506630505967223e-07,4.0114303820059954e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.5914079583333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.625087691567924, ""dual_objective_value"": -20.625088042230974, ""duality_gap"": 3.506630505967223e-07, ""primal_infeasibility"": 4.0114303820059954e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:51:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +760,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:52:05,10.574847936630249,OPTIMAL,-20.625077113896168,-20.625077105250966,-8.64520188770257e-09,6.579981870625703e-07,2.3499840470621547e-07,39,"{""solver_solve_time"": 10.475649665, ""problem_class"": ""SDP""}" +761,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:52:08,2.546146869659424,OPTIMAL (INACCURATE),-20.625054215291936,-20.625079174008114,2.4958716178247187e-05,7.626469959925607e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +762,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:52:27,9.446385860443115,UNKNOWN,-20.286339185828837,-20.286370196182016,3.101035317953915e-05,6.98131306134552e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 3.2125922916666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.286339185828837, ""dual_objective_value"": -20.286370196182016, ""duality_gap"": 3.101035317953915e-05, ""primal_infeasibility"": 6.98131306134552e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:52:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +763,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:52:40,12.659881830215454,NUM_ERROR,-20.286375865662162,-20.286374249545677,1.6161164850814203e-06,4.233911977499572e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.312520041666667, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.286375865662162, ""dual_objective_value"": -20.286374249545677, ""duality_gap"": 1.6161164850814203e-06, ""primal_infeasibility"": 4.233911977499572e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:52:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +764,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:53:01,20.004897117614746,OPTIMAL,-20.2863714283772,-20.286371308207375,-1.201698260899775e-07,5.539607872665644e-07,1.4511474711248118e-07,40,"{""solver_solve_time"": 19.842628374, ""problem_class"": ""SDP""}" +765,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:53:05,4.108912706375122,OPTIMAL (INACCURATE),-20.286315458750884,-20.286372440169522,5.698141863774708e-05,2.99146677629299e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +766,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:53:29,12.02483320236206,UNKNOWN,-14.675411161814361,-14.675428193598599,1.7031784237175884e-05,3.695427597785709e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.048848416666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -14.675411161814361, ""dual_objective_value"": -14.675428193598599, ""duality_gap"": 1.7031784237175884e-05, ""primal_infeasibility"": 3.695427597785709e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:53:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +767,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:53:47,17.167847871780396,NUM_ERROR,-14.6754285362703,-14.675428798508477,2.622381778394356e-07,1.582313837708998e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 10.196318083333333, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -14.6754285362703, ""dual_objective_value"": -14.675428798508477, ""duality_gap"": 2.622381778394356e-07, ""primal_infeasibility"": 1.582313837708998e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:53:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +768,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:54:17,29.91910195350647,OPTIMAL,-14.675430563285023,-14.675430500128785,-6.315623757302546e-08,1.0734959395341116e-06,0.0,35,"{""solver_solve_time"": 29.6817975, ""problem_class"": ""SDP""}" +769,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:54:24,6.653412103652954,OPTIMAL (INACCURATE),-14.67540228481323,-14.675431392929916,2.910811668499491e-05,1.4589427065347405e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +770,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:54:50,15.176681995391846,UNKNOWN,-38.53290115712743,-38.53305732276117,0.00015616563374010184,1.0306253214751266e-06,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 8.356905458333333, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -38.53290115712743, ""dual_objective_value"": -38.53305732276117, ""duality_gap"": 0.00015616563374010184, ""primal_infeasibility"": 1.0306253214751266e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:54:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +771,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:55:16,24.90148401260376,NUM_ERROR,-38.533100875331215,-38.53309670441624,4.1709149769530995e-06,1.1942347138694803e-06,0.0,43,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 17.833667083333335, ""setup_time"": [], ""iterations"": 43, ""primal_objective_value"": -38.533100875331215, ""dual_objective_value"": -38.53309670441624, ""duality_gap"": 4.1709149769530995e-06, ""primal_infeasibility"": 1.1942347138694803e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:55:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +772,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:56:15,58.60123419761658,OPTIMAL,-38.53310978438966,-38.53310974843417,-3.5955487476257986e-08,1.3387459817271676e-06,3.600325513296991e-11,44,"{""solver_solve_time"": 58.209529293, ""problem_class"": ""SDP""}" +773,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:56:29,13.28674602508545,OPTIMAL (INACCURATE),-38.532875373216974,-38.53307092893413,0.00019555571715557107,2.813485631313094e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +774,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:57:05,21.006484985351562,UNKNOWN,-31.958623305615316,-31.958686698445707,6.339283039125121e-05,7.853573037958292e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 11.894748666666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -31.958623305615316, ""dual_objective_value"": -31.958686698445707, ""duality_gap"": 6.339283039125121e-05, ""primal_infeasibility"": 7.853573037958292e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:57:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +775,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:57:44,38.14123892784119,NUM_ERROR,-31.958699244576298,-31.958695423512797,3.821063501163735e-06,5.312516350920055e-07,0.0,47,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 30.063784625, ""setup_time"": [], ""iterations"": 47, ""primal_objective_value"": -31.958699244576298, ""dual_objective_value"": -31.958695423512797, ""duality_gap"": 3.821063501163735e-06, ""primal_infeasibility"": 5.312516350920055e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 19:57:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +776,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:21,7.806764125823975,UNKNOWN,-20.62505846427079,-20.62507774002214,1.9275751348857284e-05,5.828261469963749e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.098992625, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.62505846427079, ""dual_objective_value"": -20.62507774002214, ""duality_gap"": 1.9275751348857284e-05, ""primal_infeasibility"": 5.828261469963749e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:01:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +777,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:31,9.282496929168701,NUM_ERROR,-20.625087691567924,-20.625088042230974,3.506630505967223e-07,4.0114303820059954e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.559211625, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.625087691567924, ""dual_objective_value"": -20.625088042230974, ""duality_gap"": 3.506630505967223e-07, ""primal_infeasibility"": 4.0114303820059954e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:01:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +778,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:51,10.645551919937134,OPTIMAL,-20.625077113896168,-20.625077105250966,-8.64520188770257e-09,6.579981870625703e-07,2.3499840470621547e-07,39,"{""solver_solve_time"": 10.542696963000001, ""problem_class"": ""SDP""}" +779,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:01:53,2.557873249053955,OPTIMAL (INACCURATE),-20.625054215291936,-20.625079174008114,2.4958716178247187e-05,7.626469959925607e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +780,cvxpy_cvxopt,unknown,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:02:09,8.10211992263794,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +781,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +782,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +783,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +784,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +785,scipy_linprog,scipy-1.15.3,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +786,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:10,9.326553106307983,UNKNOWN,-20.286339185828837,-20.286370196182016,3.101035317953915e-05,6.98131306134552e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 3.0677360416666666, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.286339185828837, ""dual_objective_value"": -20.286370196182016, ""duality_gap"": 3.101035317953915e-05, ""primal_infeasibility"": 6.98131306134552e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:05:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +787,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:22,11.393048763275146,NUM_ERROR,-20.286375865662162,-20.286374249545677,1.6161164850814203e-06,4.233911977499572e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.088460041666667, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.286375865662162, ""dual_objective_value"": -20.286374249545677, ""duality_gap"": 1.6161164850814203e-06, ""primal_infeasibility"": 4.233911977499572e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:05:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +788,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:50,19.99690079689026,OPTIMAL,-20.2863714283772,-20.286371308207375,-1.201698260899775e-07,5.539607872665644e-07,1.4511474711248118e-07,40,"{""solver_solve_time"": 19.832786835, ""problem_class"": ""SDP""}" +789,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:05:55,4.0786097049713135,OPTIMAL (INACCURATE),-20.286315458750884,-20.286372440169522,5.698141863774708e-05,2.99146677629299e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +790,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +791,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +792,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +793,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +794,scipy_linprog,scipy-1.15.3,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +795,cvxpy_cvxopt,unknown,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:26,12.640835762023926,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +796,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:09:40,10.996235847473145,UNKNOWN,-14.675411161814361,-14.675428193598599,1.7031784237175884e-05,3.695427597785709e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.005379875, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -14.675411161814361, ""dual_objective_value"": -14.675428193598599, ""duality_gap"": 1.7031784237175884e-05, ""primal_infeasibility"": 3.695427597785709e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:09:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +797,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:09:58,17.221930980682373,NUM_ERROR,-14.6754285362703,-14.675428798508477,2.622381778394356e-07,1.582313837708998e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 10.214732958333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -14.6754285362703, ""dual_objective_value"": -14.675428798508477, ""duality_gap"": 2.622381778394356e-07, ""primal_infeasibility"": 1.582313837708998e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:09:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +798,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:34,29.05992603302002,OPTIMAL,-14.675430563285023,-14.675430500128785,-6.315623757302546e-08,1.0734959395341116e-06,0.0,35,"{""solver_solve_time"": 28.788269375, ""problem_class"": ""SDP""}" +799,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:41,6.4581170082092285,OPTIMAL (INACCURATE),-14.67540228481323,-14.675431392929916,2.910811668499491e-05,1.4589427065347405e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +800,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +801,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +802,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +803,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +804,scipy_linprog,scipy-1.15.3,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +805,cvxpy_cvxopt,unknown,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:11:20,17.646233081817627,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +806,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:12:17,16.087404012680054,UNKNOWN,-38.53290115712743,-38.53305732276117,0.00015616563374010184,1.0306253214751266e-06,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 8.203628875, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -38.53290115712743, ""dual_objective_value"": -38.53305732276117, ""duality_gap"": 0.00015616563374010184, ""primal_infeasibility"": 1.0306253214751266e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:12:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +807,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:12:43,24.995198965072632,NUM_ERROR,-38.533100875331215,-38.53309670441624,4.1709149769530995e-06,1.1942347138694803e-06,0.0,43,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 17.137565416666668, ""setup_time"": [], ""iterations"": 43, ""primal_objective_value"": -38.533100875331215, ""dual_objective_value"": -38.53309670441624, ""duality_gap"": 4.1709149769530995e-06, ""primal_infeasibility"": 1.1942347138694803e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:12:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +808,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:13:49,56.15797710418701,OPTIMAL,-38.53310978438966,-38.53310974843417,-3.5955487476257986e-08,1.3387459817271676e-06,3.600325513296991e-11,44,"{""solver_solve_time"": 55.823745497, ""problem_class"": ""SDP""}" +809,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:01,11.48241901397705,OPTIMAL (INACCURATE),-38.532875373216974,-38.53307092893413,0.00019555571715557107,2.813485631313094e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +810,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +811,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +812,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +813,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +814,scipy_linprog,scipy-1.15.3,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +815,cvxpy_cvxopt,unknown,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:51,27.150655031204224,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +816,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:15:58,20.878068923950195,UNKNOWN,-31.958623305615316,-31.958686698445707,6.339283039125121e-05,7.853573037958292e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 11.885887208333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -31.958623305615316, ""dual_objective_value"": -31.958686698445707, ""duality_gap"": 6.339283039125121e-05, ""primal_infeasibility"": 7.853573037958292e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:15:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +817,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:16:38,39.034053802490234,NUM_ERROR,-31.958699244576298,-31.958695423512797,3.821063501163735e-06,5.312516350920055e-07,0.0,47,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 30.069223958333332, ""setup_time"": [], ""iterations"": 47, ""primal_objective_value"": -31.958699244576298, ""dual_objective_value"": -31.958695423512797, ""duality_gap"": 3.821063501163735e-06, ""primal_infeasibility"": 5.312516350920055e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:16:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +818,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:11,17.384504079818726,OPTIMAL (INACCURATE),-31.95851149383577,-31.95870615260608,0.000194658770311662,1.7090596773415e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +819,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +820,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +821,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +822,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +823,scipy_linprog,scipy-1.15.3,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +824,cvxpy_cvxopt,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:20:14,38.3471896648407,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +825,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:23:41,18.602707147598267,OPTIMAL,-629.1552924715518,-629.155292824143,3.52591200680763e-07,1.783924970601402e-12,6.427897648455087e-18,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.168329, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -629.1552924715518, ""dual_objective_value"": -629.155292824143, ""duality_gap"": 3.52591200680763e-07, ""primal_infeasibility"": 1.783924970601402e-12, ""dual_infeasibility"": 6.427897648455087e-18, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:23:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +826,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:24:33,52.330207109451294,NUM_ERROR,-629.1548520668078,-629.147034816694,0.007817250113816954,2.5361087944180886e-08,4.2544376286179536e-11,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 38.95986383333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -629.1548520668078, ""dual_objective_value"": -629.147034816694, ""duality_gap"": 0.007817250113816954, ""primal_infeasibility"": 2.5361087944180886e-08, ""dual_infeasibility"": 4.2544376286179536e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:24:30"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +827,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:26:15,51.45907402038574,OPTIMAL,-629.1552658005733,-629.1552929633996,2.716282631354261e-05,2.369371882908525e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +828,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:28:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +829,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:28:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +830,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:28:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +831,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:28:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +832,scipy_linprog,scipy-1.15.3,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:28:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +833,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:29:45,33.080212116241455,OPTIMAL,-4005.6012880134062,-4005.6013163667785,2.8353372272249544e-05,5.7348549598162015e-11,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 8.708667666666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -4005.6012880134062, ""dual_objective_value"": -4005.6013163667785, ""duality_gap"": 2.8353372272249544e-05, ""primal_infeasibility"": 5.7348549598162015e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:29:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +834,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:32:58,97.77459287643433,OPTIMAL,-4005.6011905473815,-4005.6013169406397,0.00012639325814234326,7.832639830764701e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +835,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +836,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +837,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +838,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +839,scipy_linprog,scipy-1.15.3,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +840,matlab_sdpt3,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:34:11,5.41062593460083,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +841,matlab_sedumi,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:34:15,4.2922632694244385,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +842,matlab_sdpt3,unknown,SDPLIB,gpp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:34:36,4.297234773635864,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +843,matlab_sedumi,unknown,SDPLIB,gpp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:34:40,4.273474931716919,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +844,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:12,4.949815988540649,OPTIMAL,-56.96785514137487,-56.95432364943337,0.013531491941499496,6.41331617518588e-06,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.38025133333333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -56.96785514137487, ""dual_objective_value"": -56.95432364943337, ""duality_gap"": 0.013531491941499496, ""primal_infeasibility"": 6.41331617518588e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:35:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +845,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:17,4.91975998878479,NUM_ERROR,-56.94166534866042,-56.93662791786083,0.005037430799589515,4.0341715618686706e-07,8.598366229162091e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.30531395833333336, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -56.94166534866042, ""dual_objective_value"": -56.93662791786083, ""duality_gap"": 0.005037430799589515, ""primal_infeasibility"": 4.0341715618686706e-07, ""dual_infeasibility"": 8.598366229162091e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-16 20:35:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +846,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27,0.005463123321533203,OPTIMAL,-56.95458417169877,-56.954584100815666,-7.088310383096541e-08,1.2182104934532567e-06,1.935530761916017e-08,21,"{""solver_solve_time"": 0.002227752, ""problem_class"": ""SDP""}" +847,cvxpy_cvxopt,unknown,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27,0.04079627990722656,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +848,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27,0.053626060485839844,OPTIMAL,-56.95290556196835,-56.95257093437306,-0.00033462759529356845,4.360158022165924e-06,9.60043824422556e-06,7875,"{""solver_solve_time"": 0.050412208, ""problem_class"": ""SDP""}" +849,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:27,0.00951695442199707,OPTIMAL (INACCURATE),-56.946017137117806,-56.94340849281433,-0.0026086443034785134,1.9356932179028497e-06,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +850,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +851,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +852,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +853,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +854,scipy_linprog,scipy-1.15.3,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +855,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:33,7.201956748962402,MAX_ITER,-274.76574859289997,-274.7647974867353,0.0009511061646776398,8.935314643369996e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.4340955833333333, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -274.76574859289997, ""dual_objective_value"": -274.7647974867353, ""duality_gap"": 0.0009511061646776398, ""primal_infeasibility"": 8.935314643369996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:16:30"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +856,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:38,5.164846897125244,OPTIMAL,-274.76402427242704,-274.76401549857536,8.773851675414335e-06,6.1072960080975595e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.513974, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -274.76402427242704, ""dual_objective_value"": -274.76401549857536, ""duality_gap"": 8.773851675414335e-06, ""primal_infeasibility"": 6.1072960080975595e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:16:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +857,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:51,0.006082057952880859,OPTIMAL,-274.76580456156256,-274.7658044528675,-1.0869507605093531e-07,2.9587869724570718e-08,0.0,22,"{""solver_solve_time"": 0.002680333, ""problem_class"": ""SDP""}" +858,cvxpy_cvxopt,unknown,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:51,0.04786086082458496,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +859,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:51,0.05469679832458496,OPTIMAL,-274.8169686239859,-274.8175011426577,0.0005325186718323494,1.5793940777175766e-05,5.0915418172079886e-09,7175,"{""solver_solve_time"": 0.051255083, ""problem_class"": ""SDP""}" +860,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:16:51,0.009414196014404297,OPTIMAL (INACCURATE),-274.7642606658802,-274.7640791113404,-0.00018155453983581538,2.067736809821613e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +861,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +862,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +863,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +864,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +865,scipy_linprog,scipy-1.15.3,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +866,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:20,4.87605094909668,UNKNOWN,-362.8407662937241,-362.5463311167045,0.29443517701957944,5.076986649325987e-05,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.2984519583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -362.8407662937241, ""dual_objective_value"": -362.5463311167045, ""duality_gap"": 0.29443517701957944, ""primal_infeasibility"": 5.076986649325987e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:17:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +867,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:25,4.9117021560668945,NUM_ERROR,-362.1389840878955,-362.19928444461704,0.06030035672154099,4.623878615933405e-05,1.468529060102308e-08,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.30733883333333334, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -362.1389840878955, ""dual_objective_value"": -362.19928444461704, ""duality_gap"": 0.06030035672154099, ""primal_infeasibility"": 4.623878615933405e-05, ""dual_infeasibility"": 1.468529060102308e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:17:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +868,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:36,0.005780935287475586,OPTIMAL (INACCURATE),-362.4299072470292,-362.4295803431538,-0.000326903875361495,4.958727500256144e-06,0.0,18,"{""solver_solve_time"": 0.001926126, ""problem_class"": ""SDP""}" +869,cvxpy_cvxopt,unknown,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:36,0.04375004768371582,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +870,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:36,0.08634090423583984,OPTIMAL,-320.9234414376666,-320.92497928960995,0.0015378519433397742,3.052930540788306e-06,0.00027660204589100273,13300,"{""solver_solve_time"": 0.082843541, ""problem_class"": ""SDP""}" +871,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:36,0.00928187370300293,OPTIMAL (INACCURATE),-363.08837704719326,-362.65312853712743,-0.43524851006583276,0.0031096059091866054,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +872,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +873,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +874,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +875,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +876,scipy_linprog,scipy-1.15.3,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +877,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:17:57,5.022402048110962,MAX_ITER,-448.94845306947616,-448.93787068369375,0.01058238578241344,1.0795193288541605e-05,2.9425725883582585e-11,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.4499312916666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -448.94845306947616, ""dual_objective_value"": -448.93787068369375, ""duality_gap"": 0.01058238578241344, ""primal_infeasibility"": 1.0795193288541605e-05, ""dual_infeasibility"": 2.9425725883582585e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:17:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +878,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:02,4.985614061355591,NUM_ERROR,-448.93866526508225,-448.93735904243533,0.0013062226469173766,7.16453106043704e-08,1.0964487510881784e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.362921875, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -448.93866526508225, ""dual_objective_value"": -448.93735904243533, ""duality_gap"": 0.0013062226469173766, ""primal_infeasibility"": 7.16453106043704e-08, ""dual_infeasibility"": 1.0964487510881784e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:17:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +879,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:02,0.005731821060180664,OPTIMAL,-448.95023164103816,-448.9502285290299,-3.1120082439883845e-06,4.4077878809117167e-07,0.0,23,"{""solver_solve_time"": 0.002473248, ""problem_class"": ""SDP""}" +880,cvxpy_cvxopt,unknown,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:02,0.058962345123291016,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +881,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,0.6459720134735107,OPTIMAL (INACCURATE),-245.90113198641467,-245.85737180839376,-0.043760178020903595,1.3088894176536186e-05,0.0003530484760489283,100000,"{""solver_solve_time"": 0.642388916, ""problem_class"": ""SDP""}" +882,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,0.011317014694213867,OPTIMAL (INACCURATE),-448.97876320335996,-448.9556735151818,-0.023089688178174583,3.2823630729197306e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +883,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +884,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +885,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +886,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +887,scipy_linprog,scipy-1.15.3,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +888,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:23,4.97474217414856,OPTIMAL,-390.8268127270961,-390.81955811039285,0.007254616703278316,5.153919837286196e-06,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3501699166666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -390.8268127270961, ""dual_objective_value"": -390.81955811039285, ""duality_gap"": 0.007254616703278316, ""primal_infeasibility"": 5.153919837286196e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:18:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +889,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:28,4.962123155593872,NUM_ERROR,-390.4187062005368,-388.9712939688352,1.4474122317016054,2.1674897967340183e-06,1.349616784492387e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3058602083333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -390.4187062005368, ""dual_objective_value"": -388.9712939688352, ""duality_gap"": 1.4474122317016054, ""primal_infeasibility"": 2.1674897967340183e-06, ""dual_infeasibility"": 1.349616784492387e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:18:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +890,cvxpy_clarabel,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:28,0.005518198013305664,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +891,cvxpy_cvxopt,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:28,0.03847193717956543,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +892,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,0.6876869201660156,OPTIMAL (INACCURATE),-389.32499417666725,-389.3066200564397,-0.018374120227520052,6.437354049320336e-06,1.5407433103673238e-06,100000,"{""solver_solve_time"": 0.6840934580000001, ""problem_class"": ""SDP""}" +893,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,0.0077250003814697266,OPTIMAL (INACCURATE),-386.2729744082578,-394.11795931873803,7.844984910480207,0.0010676527612919265,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +894,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +895,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +896,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +897,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +898,scipy_linprog,scipy-1.15.3,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:18:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +899,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:20:47,4.918865919113159,MAX_ITER,-116.18907747348399,-116.16764622467993,0.02143124880406333,1.107192932812266e-05,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.3601869166666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -116.18907747348399, ""dual_objective_value"": -116.16764622467993, ""duality_gap"": 0.02143124880406333, ""primal_infeasibility"": 1.107192932812266e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:20:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +900,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:20:52,4.99153470993042,NUM_ERROR,-116.14800748522454,-116.14764044645105,0.0003670387734899805,5.243531762309649e-07,1.3890768653808889e-09,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3221649166666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -116.14800748522454, ""dual_objective_value"": -116.14764044645105, ""duality_gap"": 0.0003670387734899805, ""primal_infeasibility"": 5.243531762309649e-07, ""dual_infeasibility"": 1.3890768653808889e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:20:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +901,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.0065250396728515625,OPTIMAL (INACCURATE),-116.162359822706,-116.16235950573696,-3.1696903590727743e-07,7.420952338087494e-07,3.2950076855126425e-07,29,"{""solver_solve_time"": 0.003015376, ""problem_class"": ""SDP""}" +902,cvxpy_cvxopt,unknown,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.03650498390197754,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +903,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.2217872142791748,OPTIMAL,-113.4663274817136,-113.46736346299392,0.0010359812803102386,2.0881037650067233e-06,2.9352242087893714e-05,33450,"{""solver_solve_time"": 0.218281083, ""problem_class"": ""SDP""}" +904,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.008577823638916016,OPTIMAL (INACCURATE),-116.18084367885152,-116.17297265490086,-0.007871023950656308,2.1524411488941546e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +905,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +906,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +907,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +908,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +909,scipy_linprog,scipy-1.15.3,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +910,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:50,4.948487043380737,UNKNOWN,-236.24926143119387,-236.2492582522059,3.178987981300452e-06,4.333392854983704e-07,6.696508028901661e-17,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.3528595, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -236.24926143119387, ""dual_objective_value"": -236.2492582522059, ""duality_gap"": 3.178987981300452e-06, ""primal_infeasibility"": 4.333392854983704e-07, ""dual_infeasibility"": 6.696508028901661e-17, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:21:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +911,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:55,4.960848808288574,OPTIMAL,-236.24742814369876,-236.2473437618947,8.438180404368723e-05,5.8628976583948846e-09,6.012462469094062e-12,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.323254625, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -236.24742814369876, ""dual_objective_value"": -236.2473437618947, ""duality_gap"": 8.438180404368723e-05, ""primal_infeasibility"": 5.8628976583948846e-09, ""dual_infeasibility"": 6.012462469094062e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:21:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +912,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05,0.006279945373535156,OPTIMAL,-236.2492537893636,-236.24925167798062,-2.111382968905673e-06,1.1227693010097353e-09,7.503567730794685e-13,27,"{""solver_solve_time"": 0.002816334, ""problem_class"": ""SDP""}" +913,cvxpy_cvxopt,unknown,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05,0.07575297355651855,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +914,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06,0.6299283504486084,OPTIMAL (INACCURATE),-23.995993470322126,-23.73307395594187,-0.2629195143802576,0.0002501696048966344,4.7055340393382825e-06,100000,"{""solver_solve_time"": 0.626416875, ""problem_class"": ""SDP""}" +915,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06,0.02733016014099121,OPTIMAL (INACCURATE),-236.24929860181874,-236.24925825295142,-4.034886731574261e-05,6.211843885658271e-06,1.1701336108488862e-17,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +916,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +917,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +918,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +919,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +920,scipy_linprog,scipy-1.15.3,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +921,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:44,4.91386604309082,UNKNOWN,-108.7683048840259,-108.77818212309559,0.009877239069695065,2.3595268341152298e-05,0.0,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.36200766666666667, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -108.7683048840259, ""dual_objective_value"": -108.77818212309559, ""duality_gap"": 0.009877239069695065, ""primal_infeasibility"": 2.3595268341152298e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:22:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +922,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:48,3.9673030376434326,NUM_ERROR,-108.75993162203638,-108.75125626509862,0.008675356937757783,5.284061049311702e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3518449166666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -108.75993162203638, ""dual_objective_value"": -108.75125626509862, ""duality_gap"": 0.008675356937757783, ""primal_infeasibility"": 5.284061049311702e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:22:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +923,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.006523847579956055,OPTIMAL (INACCURATE),-108.78737562810723,-108.78736989216672,-5.73594050479187e-06,7.50016586494756e-08,8.372072031670971e-08,24,"{""solver_solve_time"": 0.003101377, ""problem_class"": ""SDP""}" +924,cvxpy_cvxopt,unknown,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.0596768856048584,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +925,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.7690088748931885,OPTIMAL,-109.67066975246388,-109.6700504066821,-0.0006193457817857961,2.294628633625865e-06,3.7480545771311504e-06,97050,"{""solver_solve_time"": 0.765419125, ""problem_class"": ""SDP""}" +926,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.012375831604003906,OPTIMAL (INACCURATE),-108.86347113724204,-108.78673318394273,-0.07673795329931465,8.231747852466604e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +927,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +928,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +929,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +930,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +931,scipy_linprog,scipy-1.15.3,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +932,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:39,4.936923265457153,UNKNOWN,-65.91623172173267,-65.89340793308176,0.022823788650910615,1.465391663685626e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.4015208333333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -65.91623172173267, ""dual_objective_value"": -65.89340793308176, ""duality_gap"": 0.022823788650910615, ""primal_infeasibility"": 1.465391663685626e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:23:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +933,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:44,5.007129907608032,NUM_ERROR,-65.88284488105815,-65.88010110073674,0.002743780321409872,1.2872974305043217e-07,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.379976125, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -65.88284488105815, ""dual_objective_value"": -65.88010110073674, ""duality_gap"": 0.002743780321409872, ""primal_infeasibility"": 1.2872974305043217e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-17 00:23:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +934,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14,0.00967717170715332,OPTIMAL (INACCURATE),-65.90991351702351,-65.90990389505751,-9.62196600085008e-06,3.264652971267897e-08,7.961207252939813e-10,25,"{""solver_solve_time"": 0.006049124, ""problem_class"": ""SDP""}" +935,cvxpy_cvxopt,unknown,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14,0.06746697425842285,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +936,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15,1.2248289585113525,OPTIMAL (INACCURATE),-67.03265487888538,-66.9425045006043,-0.09015037828108063,7.271735945414379e-06,2.372132910723892e-12,100000,"{""solver_solve_time"": 1.2213040000000002, ""problem_class"": ""SDP""}" +937,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15,0.012714862823486328,OPTIMAL (INACCURATE),-65.96092354028318,-65.91206628197119,-0.04885725831198329,4.861398484093877e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +938,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +939,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +940,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +941,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +942,scipy_linprog,scipy-1.15.3,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +943,matlab_sdpt3,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:20,4.373261213302612,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +944,matlab_sedumi,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:24,4.34638524055481,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +945,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35,0.01759481430053711,OPTIMAL,-5.925342226589732e-05,-5.925213757701722e-05,-1.284688880104324e-09,1.639363195032902e-05,0.0,44,"{""solver_solve_time"": 0.014165622, ""problem_class"": ""SDP""}" +946,cvxpy_cvxopt,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35,0.3677828311920166,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +947,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37,1.846771001815796,OPTIMAL (INACCURATE),-0.9141614331465502,-0.8869089226495065,-0.02725251049704369,8.264335179641823e-08,1.6865610824784975e-07,100000,"{""solver_solve_time"": 1.842922833, ""problem_class"": ""SDP""}" +948,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37,0.013288259506225586,OPTIMAL (INACCURATE),-26.284632319814868,-3.218852415953317,-23.06577990386155,0.0002664963558692289,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +949,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +950,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +951,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +952,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +953,scipy_linprog,scipy-1.15.3,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +954,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:07,48.48702621459961,UNKNOWN,-2.2571558268484783e-05,-2.9572121961358873e-05,7.00056369287409e-06,1.538325025557428e-12,0.0,61,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.6598367083333334, ""setup_time"": [], ""iterations"": 61, ""primal_objective_value"": -2.2571558268484783e-05, ""dual_objective_value"": -2.9572121961358873e-05, ""duality_gap"": 7.00056369287409e-06, ""primal_infeasibility"": 1.538325025557428e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:48:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +955,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:12,5.280565977096558,OPTIMAL,-0.11791225666476954,-0.09905856082734718,0.018853695837422357,5.037944322430809e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5377166666666666, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.11791225666476954, ""dual_objective_value"": -0.09905856082734718, ""duality_gap"": 0.018853695837422357, ""primal_infeasibility"": 5.037944322430809e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:48:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +956,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:25,0.01746988296508789,OPTIMAL,-3.2433629986793885e-05,-3.2432575308661486e-05,-1.0546781323988747e-09,8.300260965155049e-06,0.0,44,"{""solver_solve_time"": 0.013888374, ""problem_class"": ""SDP""}" +957,cvxpy_cvxopt,unknown,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:26,0.3970298767089844,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +958,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28,1.8517041206359863,OPTIMAL (INACCURATE),-1.5660892533183435,-1.550972805649461,-0.015116447668882538,1.2713713263916197e-07,9.437455397904784e-07,100000,"{""solver_solve_time"": 1.846340583, ""problem_class"": ""SDP""}" +959,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28,0.01336216926574707,OPTIMAL (INACCURATE),-26.28462100943706,-3.218764582272006,-23.065856427165055,0.00026649547088509193,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +960,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +961,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +962,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +963,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +964,scipy_linprog,scipy-1.15.3,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +965,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:28,5.085371971130371,UNKNOWN,-44.36054953507353,-44.352737721585974,0.0078118134875566625,2.34826882611184e-05,1.9677815225005485e-09,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.501086125, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -44.36054953507353, ""dual_objective_value"": -44.352737721585974, ""duality_gap"": 0.0078118134875566625, ""primal_infeasibility"": 2.34826882611184e-05, ""dual_infeasibility"": 1.9677815225005485e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:50:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +966,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:33,5.072270154953003,NUM_ERROR,-44.98782800411155,-44.73512547033813,0.2527025337734159,5.0403409648842495e-05,5.164198359985477e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.373962875, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -44.98782800411155, ""dual_objective_value"": -44.73512547033813, ""duality_gap"": 0.2527025337734159, ""primal_infeasibility"": 5.0403409648842495e-05, ""dual_infeasibility"": 5.164198359985477e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:50:30"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +967,cvxpy_clarabel,unknown,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39,0.014467954635620117,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +968,cvxpy_cvxopt,unknown,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39,0.08350205421447754,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +969,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42,2.7371368408203125,OPTIMAL (INACCURATE),-30.338550177295044,-30.33799855091353,-0.0005516263815152911,5.355726666806104e-06,9.237315025625231e-05,100000,"{""solver_solve_time"": 2.731196458, ""problem_class"": ""SDP""}" +970,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42,0.012221097946166992,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +971,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +972,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +973,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +974,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +975,scipy_linprog,scipy-1.15.3,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +976,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:00,5.077782154083252,UNKNOWN,-12.989960076415304,-12.989934206347613,2.5870067691613485e-05,8.66236229712859e-08,9.648370597983024e-10,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.504, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -12.989960076415304, ""dual_objective_value"": -12.989934206347613, ""duality_gap"": 2.5870067691613485e-05, ""primal_infeasibility"": 8.66236229712859e-08, ""dual_infeasibility"": 9.648370597983024e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:51:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +977,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:05,5.142008066177368,NUM_ERROR,-12.994433062802717,-12.993857944680892,0.0005751181218247581,3.459515165126997e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.42816145833333336, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -12.994433062802717, ""dual_objective_value"": -12.993857944680892, ""duality_gap"": 0.0005751181218247581, ""primal_infeasibility"": 3.459515165126997e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:52:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +978,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.029858112335205078,OPTIMAL (INACCURATE),-12.991620016749662,-12.991619832202199,-1.8454746353313567e-07,7.960100598663184e-08,2.8200844817922423e-07,25,"{""solver_solve_time"": 0.023652419, ""problem_class"": ""SDP""}" +979,cvxpy_cvxopt,unknown,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.1548140048980713,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +980,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.260235071182251,OPTIMAL,-13.016693637637012,-13.016676436910254,-1.7200726757593543e-05,9.713120873550967e-06,3.7424537617375734e-05,7350,"{""solver_solve_time"": 0.25517412500000003, ""problem_class"": ""SDP""}" +981,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:13,0.01812005043029785,OPTIMAL (INACCURATE),-12.977127071396835,-13.002235688978644,0.025108617581809156,1.4121816289795736e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +982,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +983,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +984,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +985,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +986,scipy_linprog,scipy-1.15.3,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +987,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:10,5.2033421993255615,UNKNOWN,-23.987835100185112,-24.001097916938342,0.0132628167532296,3.144875496622765e-05,6.997893475414923e-09,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.529179125, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -23.987835100185112, ""dual_objective_value"": -24.001097916938342, ""duality_gap"": 0.0132628167532296, ""primal_infeasibility"": 3.144875496622765e-05, ""dual_infeasibility"": 6.997893475414923e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:53:08"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +988,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:16,5.02793288230896,NUM_ERROR,-24.83998341547683,-24.214925261340976,0.6250581541358535,0.000150801335775723,4.4160427926549335e-06,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.33310558333333334, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -24.83998341547683, ""dual_objective_value"": -24.214925261340976, ""duality_gap"": 0.6250581541358535, ""primal_infeasibility"": 0.000150801335775723, ""dual_infeasibility"": 4.4160427926549335e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:53:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +989,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23,0.03337883949279785,OPTIMAL (INACCURATE),-24.823804805102615,-24.823648667307985,-0.00015613779462952948,3.8123673598819243e-06,1.3632493267012344e-06,19,"{""solver_solve_time"": 0.02654958, ""problem_class"": ""SDP""}" +990,cvxpy_cvxopt,unknown,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23,0.12059998512268066,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +991,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28,4.816857099533081,OPTIMAL (INACCURATE),-6.535899836686729,-6.535738728003019,-0.0001611086837103315,1.2124638376828503e-05,0.0007877132599741793,100000,"{""solver_solve_time"": 4.811149333, ""problem_class"": ""SDP""}" +992,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28,0.018558025360107422,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +993,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +994,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +995,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +996,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +997,scipy_linprog,scipy-1.15.3,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +998,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:54:47,4.995841979980469,UNKNOWN,-2.0327304439087186,-2.032679460642064,5.098326665464725e-05,2.666994274501407e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.386292, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -2.0327304439087186, ""dual_objective_value"": -2.032679460642064, ""duality_gap"": 5.098326665464725e-05, ""primal_infeasibility"": 2.666994274501407e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:54:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +999,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:54:52,5.023981809616089,NUM_ERROR,-2.032702691217913,-2.0326573971090376,4.5294108875548744e-05,1.1139356829973714e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3865498333333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -2.032702691217913, ""dual_objective_value"": -2.0326573971090376, ""duality_gap"": 4.5294108875548744e-05, ""primal_infeasibility"": 1.1139356829973714e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:54:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1000,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01,0.005572795867919922,OPTIMAL,-2.0326681219679923,-2.0326681159848516,-5.983140649590268e-09,1.5142732808798136e-09,5.8528406408805414e-08,27,"{""solver_solve_time"": 0.002366377, ""problem_class"": ""SDP""}" +1001,cvxpy_cvxopt,unknown,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01,0.05380678176879883,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1002,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02,0.5455272197723389,OPTIMAL (INACCURATE),-2.034025995512536,-2.033865317055243,-0.00016067845729317298,2.999590308495669e-06,0.0,100000,"{""solver_solve_time"": 0.541413458, ""problem_class"": ""SDP""}" +1003,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02,0.008548974990844727,OPTIMAL,-2.0326162960518173,-2.0326162960518173,0.0,3.967316966357652e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1004,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1005,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1006,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1007,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1008,scipy_linprog,scipy-1.15.3,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1009,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:22,4.86243200302124,UNKNOWN,-10.969253774110527,-10.968153281488807,0.0011004926217204059,3.1722464136341583e-06,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.31890266666666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -10.969253774110527, ""dual_objective_value"": -10.968153281488807, ""duality_gap"": 0.0011004926217204059, ""primal_infeasibility"": 3.1722464136341583e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:57:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1010,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:27,4.949515104293823,NUM_ERROR,-10.967252738065635,-10.967220837229675,3.190083596038562e-05,2.413420742969955e-07,3.97875826735212e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.31751525, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -10.967252738065635, ""dual_objective_value"": -10.967220837229675, ""duality_gap"": 3.190083596038562e-05, ""primal_infeasibility"": 2.413420742969955e-07, ""dual_infeasibility"": 3.97875826735212e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:57:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1011,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35,0.005145072937011719,OPTIMAL,-10.967598918863468,-10.96759886205494,-5.6808527659768515e-08,1.9892414732039526e-07,0.0,17,"{""solver_solve_time"": 0.001845334, ""problem_class"": ""SDP""}" +1012,cvxpy_cvxopt,unknown,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35,0.03723597526550293,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1013,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36,0.4676029682159424,OPTIMAL,-10.956014425126677,-10.95598391306363,-3.0512063046828075e-05,2.723109573191675e-06,0.00048699575464379656,74125,"{""solver_solve_time"": 0.46430825, ""problem_class"": ""SDP""}" +1014,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36,0.009016036987304688,OPTIMAL,-10.967063926554635,-10.967063926554637,1.7763568394002505e-15,5.723703689342138e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1015,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1016,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1017,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1018,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1019,scipy_linprog,scipy-1.15.3,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1020,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:29,4.8960120677948,MAX_ITER,-274.76574859289997,-274.7647974867353,0.0009511061646776398,8.935314643369996e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.35503575, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -274.76574859289997, ""dual_objective_value"": -274.7647974867353, ""duality_gap"": 0.0009511061646776398, ""primal_infeasibility"": 8.935314643369996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:58:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1021,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:34,4.966598987579346,OPTIMAL,-274.76402427242704,-274.76401549857536,8.773851675414335e-06,6.1072960080975595e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.34887470833333334, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -274.76402427242704, ""dual_objective_value"": -274.76401549857536, ""duality_gap"": 8.773851675414335e-06, ""primal_infeasibility"": 6.1072960080975595e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:58:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1022,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.005476951599121094,OPTIMAL,-274.76580456156256,-274.7658044528675,-1.0869507605093531e-07,2.9587869724570718e-08,0.0,22,"{""solver_solve_time"": 0.002260333, ""problem_class"": ""SDP""}" +1023,cvxpy_cvxopt,unknown,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.052572011947631836,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1024,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.05102682113647461,OPTIMAL,-274.8169686239859,-274.8175011426577,0.0005325186718323494,1.5793940777175766e-05,5.0915418172079886e-09,7175,"{""solver_solve_time"": 0.047997041000000004, ""problem_class"": ""SDP""}" +1025,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.01003885269165039,OPTIMAL (INACCURATE),-274.7642606658802,-274.7640791113404,-0.00018155453983581538,2.067736809821613e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1026,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1027,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1028,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1029,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1030,scipy_linprog,scipy-1.15.3,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1031,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:37,4.805355072021484,UNKNOWN,-362.8407662937241,-362.5463311167045,0.29443517701957944,5.076986649325987e-05,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.2904674583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -362.8407662937241, ""dual_objective_value"": -362.5463311167045, ""duality_gap"": 0.29443517701957944, ""primal_infeasibility"": 5.076986649325987e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:59:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1032,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:42,4.9534101486206055,NUM_ERROR,-362.1389840878955,-362.19928444461704,0.06030035672154099,4.623878615933405e-05,1.468529060102308e-08,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.305820375, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -362.1389840878955, ""dual_objective_value"": -362.19928444461704, ""duality_gap"": 0.06030035672154099, ""primal_infeasibility"": 4.623878615933405e-05, ""dual_infeasibility"": 1.468529060102308e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 20:59:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1033,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.0060749053955078125,OPTIMAL (INACCURATE),-362.4299072470292,-362.4295803431538,-0.000326903875361495,4.958727500256144e-06,0.0,18,"{""solver_solve_time"": 0.002001209, ""problem_class"": ""SDP""}" +1034,cvxpy_cvxopt,unknown,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.0457768440246582,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1035,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.08220601081848145,OPTIMAL,-320.9234414376666,-320.92497928960995,0.0015378519433397742,3.052930540788306e-06,0.00027660204589100273,13300,"{""solver_solve_time"": 0.07908475, ""problem_class"": ""SDP""}" +1036,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.008898258209228516,OPTIMAL (INACCURATE),-363.08837704719326,-362.65312853712743,-0.43524851006583276,0.0031096059091866054,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1037,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1038,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1039,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1040,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1041,scipy_linprog,scipy-1.15.3,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1042,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:20,4.944347858428955,MAX_ITER,-448.94845306947616,-448.93787068369375,0.01058238578241344,1.0795193288541605e-05,2.9425725883582585e-11,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.4577738333333333, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -448.94845306947616, ""dual_objective_value"": -448.93787068369375, ""duality_gap"": 0.01058238578241344, ""primal_infeasibility"": 1.0795193288541605e-05, ""dual_infeasibility"": 2.9425725883582585e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:02:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1043,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:25,4.984795093536377,NUM_ERROR,-448.93866526508225,-448.93735904243533,0.0013062226469173766,7.16453106043704e-08,1.0964487510881784e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.37734158333333334, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -448.93866526508225, ""dual_objective_value"": -448.93735904243533, ""duality_gap"": 0.0013062226469173766, ""primal_infeasibility"": 7.16453106043704e-08, ""dual_infeasibility"": 1.0964487510881784e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:02:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1044,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31,0.005522966384887695,OPTIMAL,-448.95023164103816,-448.9502285290299,-3.1120082439883845e-06,4.4077878809117167e-07,0.0,23,"{""solver_solve_time"": 0.002378126, ""problem_class"": ""SDP""}" +1045,cvxpy_cvxopt,unknown,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31,0.05508112907409668,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1046,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32,0.6322319507598877,OPTIMAL (INACCURATE),-245.90113198641467,-245.85737180839376,-0.043760178020903595,1.3088894176536186e-05,0.0003530484760489283,100000,"{""solver_solve_time"": 0.627335833, ""problem_class"": ""SDP""}" +1047,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32,0.011322736740112305,OPTIMAL (INACCURATE),-448.97876320335996,-448.9556735151818,-0.023089688178174583,3.2823630729197306e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1048,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1049,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1050,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1051,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1052,scipy_linprog,scipy-1.15.3,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1053,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:12,4.8567070960998535,OPTIMAL,-390.8268127270961,-390.81955811039285,0.007254616703278316,5.153919837286196e-06,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.32100379166666665, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -390.8268127270961, ""dual_objective_value"": -390.81955811039285, ""duality_gap"": 0.007254616703278316, ""primal_infeasibility"": 5.153919837286196e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:03:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1054,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:17,4.883062124252319,NUM_ERROR,-390.4187062005368,-388.9712939688352,1.4474122317016054,2.1674897967340183e-06,1.349616784492387e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.29440333333333335, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -390.4187062005368, ""dual_objective_value"": -388.9712939688352, ""duality_gap"": 1.4474122317016054, ""primal_infeasibility"": 2.1674897967340183e-06, ""dual_infeasibility"": 1.349616784492387e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:03:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1055,cvxpy_clarabel,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23,0.00506281852722168,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1056,cvxpy_cvxopt,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23,0.03922271728515625,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1057,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24,0.6557118892669678,OPTIMAL (INACCURATE),-389.32499417666725,-389.3066200564397,-0.018374120227520052,6.437354049320336e-06,1.5407433103673238e-06,100000,"{""solver_solve_time"": 0.652232833, ""problem_class"": ""SDP""}" +1058,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24,0.007824182510375977,OPTIMAL (INACCURATE),-386.2729744082578,-394.11795931873803,7.844984910480207,0.0010676527612919265,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1059,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1060,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1061,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1062,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1063,scipy_linprog,scipy-1.15.3,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1108,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:09:51,14.502842903137207,OPTIMAL,-629.1647770178772,-629.1647830495338,6.031656539562391e-06,1.487176561555531e-13,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.857293916666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -629.1647770178772, ""dual_objective_value"": -629.1647830495338, ""duality_gap"": 6.031656539562391e-06, ""primal_infeasibility"": 1.487176561555531e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:09:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1109,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:10:21,28.946648120880127,OPTIMAL,-629.1647785850998,-629.1647785773678,7.73206920712255e-09,1.9597982503383297e-09,3.331356481626968e-11,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 18.808365375, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -629.1647785850998, ""dual_objective_value"": -629.1647785773678, ""duality_gap"": 7.73206920712255e-09, ""primal_infeasibility"": 1.9597982503383297e-09, ""dual_infeasibility"": 3.331356481626968e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:10:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1110,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:10:33,5.780447959899902,OPTIMAL,-629.1647805357129,-629.1647805350874,-6.255049811443314e-10,3.358572693912759e-15,1.776705970627518e-11,16,"{""solver_solve_time"": 2.942479084, ""problem_class"": ""SDP""}" +1111,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:16:28,228.55329608917236,OPTIMAL,-629.1647801726815,-629.1647801710005,-1.6809735825518146e-09,1.2726085361287806e-12,2.1291444400788673e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1112,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:36:57,6.635096073150635,OPTIMAL,-629.1647613155295,-629.1647831444957,2.1828966168868646e-05,1.093272639824208e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1113,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1114,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1115,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1116,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1117,scipy_linprog,scipy-1.15.3,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1118,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:42:46,161.42489886283875,OPTIMAL,-1567.6396346092076,-1567.6396447238442,1.011463655231637e-05,1.502035887240306e-11,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 15.476917375, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1567.6396346092076, ""dual_objective_value"": -1567.6396447238442, ""duality_gap"": 1.011463655231637e-05, ""primal_infeasibility"": 1.502035887240306e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:42:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1119,matlab_sedumi,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:12,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1120,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1121,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1122,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1123,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1124,scipy_linprog,scipy-1.15.3,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1125,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:49:58,25.425204277038574,OPTIMAL,-4006.2555195572245,-4006.2555216808855,2.1236610336927697e-06,7.797328522618889e-14,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.223092875, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -4006.2555195572245, ""dual_objective_value"": -4006.2555216808855, ""duality_gap"": 2.1236610336927697e-06, ""primal_infeasibility"": 7.797328522618889e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:49:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1126,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:50:57,59.53362798690796,OPTIMAL,-4006.255460000534,-4006.255459886479,1.1405518307583407e-07,1.6434551009770762e-09,1.1291850783925127e-11,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 43.29670183333333, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -4006.255460000534, ""dual_objective_value"": -4006.255459886479, ""duality_gap"": 1.1405518307583407e-07, ""primal_infeasibility"": 1.6434551009770762e-09, ""dual_infeasibility"": 1.1291850783925127e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 21:50:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1127,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1128,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1129,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1130,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1131,scipy_linprog,scipy-1.15.3,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1146,matlab_sdpt3,unknown,SDPLIB,mcp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:22,3.569775104522705,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1147,matlab_sedumi,unknown,SDPLIB,mcp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:26,4.319256067276001,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1148,cvxpy_clarabel,unknown,SDPLIB,mcp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:39,0.0,ERROR,,,,,,,"{""error_message"": ""Benchmark execution failed: Failed to load problem mcp100: could not convert string to float: '{+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}'""}" +1149,cvxpy_clarabel,unknown,SDPLIB,mcp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:00:52,0.0,ERROR,,,,,,,"{""error_message"": ""Benchmark execution failed: Failed to load problem mcp124-1: could not convert string to float: '{+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}'""}" +1150,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:43,4.137083053588867,OPTIMAL,436.000000302473,435.9999999151769,3.872960974149464e-07,1.0352572932812939e-11,0.0,10,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.4589776666666667, ""setup_time"": [], ""iterations"": 10, ""primal_objective_value"": 436.000000302473, ""dual_objective_value"": 435.9999999151769, ""duality_gap"": 3.872960974149464e-07, ""primal_infeasibility"": 1.0352572932812939e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:01:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1151,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:48,5.012485980987549,OPTIMAL,435.99999879051774,435.9999990246588,2.3414105498886784e-07,6.0506510269859365e-09,0.0,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.29023525, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 435.99999879051774, ""dual_objective_value"": 435.9999990246588, ""duality_gap"": 2.3414105498886784e-07, ""primal_infeasibility"": 6.0506510269859365e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:01:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1152,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.039627790451049805,OPTIMAL,436.00000012500374,436.0000001787257,-5.3721976200904464e-08,8.543064997221504e-10,8.700480256542984e-14,9,"{""solver_solve_time"": 0.036510792, ""problem_class"": ""SDP""}" +1153,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.05824089050292969,OPTIMAL,436.00000638953816,436.0000103135326,-3.923994427168509e-06,6.573074355875933e-08,5.296699388254977e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1154,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.015094995498657227,OPTIMAL,436.00007269274516,435.9998052039491,0.00026748879605520415,2.3053436931048306e-07,0.0,225,"{""solver_solve_time"": 0.012320290999999999, ""problem_class"": ""SDP""}" +1155,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.020327091217041016,OPTIMAL (INACCURATE),436.0403897924358,435.9998304004548,0.04055939198099168,9.059329771695843e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1156,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1157,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1158,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1159,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1160,scipy_linprog,scipy-1.15.3,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1161,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:36,5.690578937530518,OPTIMAL,381.39365405504674,381.41637577242363,0.022721717376896322,2.8681423726442413e-07,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.91437, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 381.39365405504674, ""dual_objective_value"": 381.41637577242363, ""duality_gap"": 0.022721717376896322, ""primal_infeasibility"": 2.8681423726442413e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:04:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1162,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:41,5.050200700759888,NUM_ERROR,381.4236687453082,381.4240243638051,0.0003556184968829257,1.0256556673173296e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3709242916666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 381.4236687453082, ""dual_objective_value"": 381.4240243638051, ""duality_gap"": 0.0003556184968829257, ""primal_infeasibility"": 1.0256556673173296e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:04:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1163,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:47,0.3584439754486084,OPTIMAL (INACCURATE),381.43279582401055,381.4327960779774,-2.539668457757216e-07,9.455201134480351e-10,4.251389530798158e-09,26,"{""solver_solve_time"": 0.353374376, ""problem_class"": ""SDP""}" +1164,cvxpy_cvxopt,unknown,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:48,0.4547898769378662,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1165,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59,11.140121698379517,OPTIMAL (INACCURATE),381.1579788447341,381.2947477911839,-0.13676894644981985,2.5734585406151894e-06,0.0,100000,"{""solver_solve_time"": 11.135406458, ""problem_class"": ""SDP""}" +1166,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59,0.09423494338989258,OPTIMAL (INACCURATE),381.5253368559963,381.38626400064095,0.1390728553553231,4.7219042964099784e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1167,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1168,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1169,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1170,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1171,scipy_linprog,scipy-1.15.3,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1172,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:36,5.414994239807129,UNKNOWN,424.7884026413741,424.8042332891782,0.015830647804136788,2.244805558197445e-07,1.0208979903820277e-13,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.710025875, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 424.7884026413741, ""dual_objective_value"": 424.8042332891782, ""duality_gap"": 0.015830647804136788, ""primal_infeasibility"": 2.244805558197445e-07, ""dual_infeasibility"": 1.0208979903820277e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:05:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1173,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:41,4.324882984161377,NUM_ERROR,424.8083811224529,424.80858176294714,0.00020064049425627672,7.622887967153097e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5528550833333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 424.8083811224529, ""dual_objective_value"": 424.80858176294714, ""duality_gap"": 0.00020064049425627672, ""primal_infeasibility"": 7.622887967153097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:05:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1174,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:49,1.2171392440795898,OPTIMAL (INACCURATE),424.81215093653674,424.8121509794146,-4.28778434979904e-08,1.4814603139603626e-09,2.3106894516466327e-09,26,"{""solver_solve_time"": 1.208488294, ""problem_class"": ""SDP""}" +1175,cvxpy_cvxopt,unknown,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:50,0.7405779361724854,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1176,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10,20.12582302093506,OPTIMAL (INACCURATE),424.5225849795715,424.66763159392576,-0.14504661435427124,2.5643940808572178e-06,0.0,100000,"{""solver_solve_time"": 20.117360833, ""problem_class"": ""SDP""}" +1177,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10,0.1465590000152588,OPTIMAL (INACCURATE),424.8762477985437,424.79985124990344,0.07639654864027534,2.3370667875751253e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1178,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1179,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1180,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1181,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1182,scipy_linprog,scipy-1.15.3,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1183,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:49,4.285322904586792,OPTIMAL,756.8395594287458,756.8977747654171,0.05821533667131007,6.256731733516596e-07,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5856180833333333, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 756.8395594287458, ""dual_objective_value"": 756.8977747654171, ""duality_gap"": 0.05821533667131007, ""primal_infeasibility"": 6.256731733516596e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:06:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1184,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:55,5.6087799072265625,NUM_ERROR,756.9340877297344,756.934375193232,0.0002874634975569279,3.486442395574242e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.862835625, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 756.9340877297344, ""dual_objective_value"": 756.934375193232, ""duality_gap"": 0.0002874634975569279, ""primal_infeasibility"": 3.486442395574242e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:06:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1185,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:08,3.9440019130706787,OPTIMAL (INACCURATE),756.9434336934269,756.9434339047293,-2.1130244931555353e-07,1.1033134136067158e-09,1.8036454579220684e-09,29,"{""solver_solve_time"": 3.928795753, ""problem_class"": ""SDP""}" +1186,cvxpy_cvxopt,unknown,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:09,1.6612441539764404,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1187,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46,36.509506940841675,OPTIMAL (INACCURATE),756.5711755506155,756.7533977873954,-0.18222223677992133,1.7661078048246205e-06,0.0,100000,"{""solver_solve_time"": 36.495549333, ""problem_class"": ""SDP""}" +1188,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46,0.23933076858520508,OPTIMAL (INACCURATE),757.0347850401854,756.9408334188629,0.09395162132250334,1.6356761098055173e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1189,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1190,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1191,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1192,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1193,scipy_linprog,scipy-1.15.3,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1194,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:32,5.600432872772217,OPTIMAL,1409.9186636560362,1409.9299342574086,0.011270601372416422,5.8123518858196593e-08,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8264437916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 1409.9186636560362, ""dual_objective_value"": 1409.9299342574086, ""duality_gap"": 0.011270601372416422, ""primal_infeasibility"": 5.8123518858196593e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:08:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1195,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:39,6.16489315032959,NUM_ERROR,1409.918321784674,1409.918571432121,0.00024964744716271525,9.550174489527122e-08,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.32479125, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 1409.918321784674, ""dual_objective_value"": 1409.918571432121, ""duality_gap"": 0.00024964744716271525, ""primal_infeasibility"": 9.550174489527122e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:08:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1196,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:56,9.71919322013855,OPTIMAL (INACCURATE),1409.9415896092542,1409.941617901437,-2.8292182832956314e-05,7.656624897637267e-08,8.594780663566562e-10,24,"{""solver_solve_time"": 9.690633708, ""problem_class"": ""SDP""}" +1197,cvxpy_cvxopt,unknown,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:59,2.7372238636016846,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1198,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:44,44.790440797805786,OPTIMAL,1409.9180851457008,1409.9311892082915,-0.013104062590628018,2.0332473972900747e-05,1.2215291832739586e-08,74700,"{""solver_solve_time"": 44.763336166, ""problem_class"": ""SDP""}" +1199,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:45,0.36574411392211914,OPTIMAL (INACCURATE),1410.25627924329,1409.8952495753765,0.361029667913499,4.0892029004511786e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1200,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1201,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1202,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1203,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1204,scipy_linprog,scipy-1.15.3,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1205,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:10:29,5.8064398765563965,UNKNOWN,1092.5398261865366,1092.5738677926238,0.03404160608715756,2.2324924926700836e-07,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.859712, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 1092.5398261865366, ""dual_objective_value"": 1092.5738677926238, ""duality_gap"": 0.03404160608715756, ""primal_infeasibility"": 2.2324924926700836e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:10:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1206,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:10:37,7.553555965423584,NUM_ERROR,1092.5803930728775,1092.5806235221098,0.00023044923227644176,5.983215930617338e-08,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.5975340416666666, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 1092.5803930728775, ""dual_objective_value"": 1092.5806235221098, ""duality_gap"": 0.00023044923227644176, ""primal_infeasibility"": 5.983215930617338e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:10:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1207,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:11,25.793164014816284,OPTIMAL,1092.5981048387882,1092.5981049304173,-9.162909009319264e-08,5.720872373199901e-10,1.1890157244942814e-10,26,"{""solver_solve_time"": 25.738914749, ""problem_class"": ""SDP""}" +1208,cvxpy_cvxopt,unknown,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:16,4.625144004821777,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1209,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:12:55,0.5981779098510742,OPTIMAL (INACCURATE),1093.0721614033846,1092.5599703709595,0.5121910324251076,2.3061857111994798e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1210,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1211,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1212,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1213,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1214,scipy_linprog,scipy-1.15.3,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1215,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:45:31,31.200602054595947,OPTIMAL,-2448.659090183629,-2448.65913216471,4.198108126729494e-05,3.2288322455640034e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.784308541666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -2448.659090183629, ""dual_objective_value"": -2448.65913216471, ""duality_gap"": 4.198108126729494e-05, ""primal_infeasibility"": 3.2288322455640034e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:45:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1216,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:49:36,20.110408067703247,OPTIMAL,-2448.659092952946,-2448.6590929340227,-1.892340151243843e-08,1.7496194581406766e-08,3.538743119610824e-11,15,"{""solver_solve_time"": 3.195941749, ""problem_class"": ""SDP""}" +1217,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:23,29.925652980804443,OPTIMAL,-2448.6590489835125,-2448.6591322561353,8.327262275997782e-05,2.3298734319033554e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1218,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1219,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1220,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1221,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1222,scipy_linprog,scipy-1.15.3,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1223,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:58:16,65.04648661613464,OPTIMAL,-11817.999949825342,-11818.000000034852,5.020950993639417e-05,1.691030179875868e-11,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 4.866530833333333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -11817.999949825342, ""dual_objective_value"": -11818.000000034852, ""duality_gap"": 5.020950993639417e-05, ""primal_infeasibility"": 1.691030179875868e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 22:58:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1224,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1225,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1226,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1227,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1228,scipy_linprog,scipy-1.15.3,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1229,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:05:03,8.209748983383179,UNKNOWN,-20.239507562642537,-20.23951068538981,3.122747273209825e-06,1.0755657434415856e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 3.0873134583333335, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -20.239507562642537, ""dual_objective_value"": -20.23951068538981, ""duality_gap"": 3.122747273209825e-06, ""primal_infeasibility"": 1.0755657434415856e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:05:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1230,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:05:17,13.37722110748291,NUM_ERROR,-20.239510592874606,-20.239510589127317,3.747288701561047e-09,3.232622404503955e-08,0.0,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 9.496570375, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -20.239510592874606, ""dual_objective_value"": -20.239510589127317, ""duality_gap"": 3.747288701561047e-09, ""primal_infeasibility"": 3.232622404503955e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:05:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1231,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:06,41.18780493736267,OPTIMAL,-20.239510587223354,-20.239510586816014,-4.0733993955655023e-10,9.912076322563995e-08,0.0,29,"{""solver_solve_time"": 34.756203417, ""problem_class"": ""SDP""}" +1232,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:28,21.264667987823486,OPTIMAL,-20.239510644969997,-20.239510638137972,-6.8320247237352305e-09,8.94817783016025e-08,5.0557558792995994e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1233,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:09:55,7.810168981552124,OPTIMAL (INACCURATE),-20.239507687488363,-20.23951064833439,2.960846028798869e-06,1.5496658619045873e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1234,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1235,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1236,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1237,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1238,scipy_linprog,scipy-1.15.3,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1239,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:51,5.080946922302246,OPTIMAL,-22.99999966935091,-23.000000054814368,3.854634584854466e-07,1.08019134049444e-11,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.39615579166666665, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": -22.99999966935091, ""dual_objective_value"": -23.000000054814368, ""duality_gap"": 3.854634584854466e-07, ""primal_infeasibility"": 1.08019134049444e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:10:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1240,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:56,5.039260149002075,OPTIMAL,-23.00000001877833,-23.000000013317347,5.460982777094614e-09,2.5321435718789402e-09,0.0,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.299004125, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -23.00000001877833, ""dual_objective_value"": -23.000000013317347, ""duality_gap"": 5.460982777094614e-09, ""primal_infeasibility"": 2.5321435718789402e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:10:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1241,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.5781240463256836,OPTIMAL,-23.000000113696405,-23.00000006485042,-4.884598681087482e-08,1.7021181449260494e-08,1.1944769291368984e-11,12,"{""solver_solve_time"": 0.573968168, ""problem_class"": ""SDP""}" +1242,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.30235886573791504,OPTIMAL,-22.99999992045278,-22.999999920596142,1.4336265508063661e-10,1.1739084766113277e-16,4.107080131386077e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1243,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.059606075286865234,OPTIMAL,-22.99957523727033,-22.999473468676786,-0.00010176859354515955,8.547389016417847e-06,2.873384339106012e-07,250,"{""solver_solve_time"": 0.055213041, ""problem_class"": ""SDP""}" +1244,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.025326967239379883,OPTIMAL,-22.99999909785378,-23.000000314920484,1.217066703418368e-06,5.552518868004142e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1245,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1246,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1247,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1248,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1249,scipy_linprog,scipy-1.15.3,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1250,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:11,5.340824842453003,OPTIMAL,-32.87916893679436,-32.87916903116265,9.436828918296669e-08,1.2482387284479412e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5564947916666667, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -32.87916893679436, ""dual_objective_value"": -32.87916903116265, ""duality_gap"": 9.436828918296669e-08, ""primal_infeasibility"": 1.2482387284479412e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:12:08"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1251,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:16,4.532660961151123,OPTIMAL,-32.879169040448566,-32.87916903780507,2.643496088694519e-09,2.2690844865871237e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.721409625, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -32.879169040448566, ""dual_objective_value"": -32.87916903780507, ""duality_gap"": 2.643496088694519e-09, ""primal_infeasibility"": 2.2690844865871237e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:12:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1252,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:36,10.558916091918945,OPTIMAL,-32.87916985873813,-32.87916961787732,-2.4086081396035297e-07,9.043557291921717e-08,6.7143730115455886e-12,10,"{""solver_solve_time"": 10.531377999, ""problem_class"": ""SDP""}" +1253,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38,2.042449951171875,OPTIMAL,-32.87916894882581,-32.87916894877984,-4.596500957632088e-11,1.4343967695977949e-12,2.2664637685921277e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1254,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38,0.41171908378601074,OPTIMAL,-32.879092775414236,-32.87901385888463,-7.891652960267947e-05,1.00022956740785e-06,2.3274278129605833e-07,350,"{""solver_solve_time"": 0.3871845, ""problem_class"": ""SDP""}" +1255,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:39,0.47716593742370605,OPTIMAL,-32.87916857824288,-32.87916905441676,4.761738736647203e-07,4.57224779883188e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1256,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1257,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1258,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1259,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1260,scipy_linprog,scipy-1.15.3,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1261,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:23:31,5.14396595954895,OPTIMAL,-42.16698130052295,-42.16698152368698,2.2316402947808456e-07,6.941267860310931e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0262072916666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -42.16698130052295, ""dual_objective_value"": -42.16698152368698, ""duality_gap"": 2.2316402947808456e-07, ""primal_infeasibility"": 6.941267860310931e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:23:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1262,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:23:38,6.509634017944336,OPTIMAL,-42.16698154577349,-42.16698155040591,4.632418892924761e-09,4.565662075596726e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.401252125, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -42.16698154577349, ""dual_objective_value"": -42.16698155040591, ""duality_gap"": 4.632418892924761e-09, ""primal_infeasibility"": 4.565662075596726e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:23:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1263,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:24:54,67.7079222202301,OPTIMAL,-42.16698181950611,-42.16698175324743,-6.625868564924531e-08,2.566384582637676e-08,6.118994005248439e-14,10,"{""solver_solve_time"": 67.592432958, ""problem_class"": ""SDP""}" +1264,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:02,7.798202753067017,OPTIMAL,-42.166981272985936,-42.166981273163785,1.7784884676075308e-10,3.401035803092698e-15,3.975102289462933e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1265,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:03,1.58660888671875,OPTIMAL,-42.166983999600596,-42.166985728095874,1.7284952775753482e-06,2.2777817734753627e-08,6.1942128146186496e-09,450,"{""solver_solve_time"": 1.477760083, ""problem_class"": ""SDP""}" +1266,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:05,1.048050880432129,OPTIMAL,-42.16698095442231,-42.166981616724364,6.623020567531057e-07,2.3718112851955558e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1267,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1268,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1269,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1270,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1271,scipy_linprog,scipy-1.15.3,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1272,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:32,7.635164976119995,OPTIMAL,-50.321221317087485,-50.32122203998839,7.229009071352266e-07,3.4400304938930694e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.695165875, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -50.321221317087485, ""dual_objective_value"": -50.32122203998839, ""duality_gap"": 7.229009071352266e-07, ""primal_infeasibility"": 3.4400304938930694e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:25:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1273,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:45,12.677574157714844,OPTIMAL,-50.32122201238018,-50.32122201939875,7.018570613581687e-09,4.163130295345427e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 7.63776375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -50.32122201238018, ""dual_objective_value"": -50.32122201939875, ""duality_gap"": 7.018570613581687e-09, ""primal_infeasibility"": 4.163130295345427e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:25:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1274,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:55,9.572349309921265,OPTIMAL,-57.23230683313342,-57.232307346760024,5.136266025829173e-07,4.815986565890254e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.878710125, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -57.23230683313342, ""dual_objective_value"": -57.232307346760024, ""duality_gap"": 5.136266025829173e-07, ""primal_infeasibility"": 4.815986565890254e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:25:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1275,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:26:30,33.82769799232483,OPTIMAL,-57.23230747485862,-57.232307354157946,1.2070067612057755e-07,4.87171381111366e-09,0.0,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 27.11175225, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -57.23230747485862, ""dual_objective_value"": -57.232307354157946, ""duality_gap"": 1.2070067612057755e-07, ""primal_infeasibility"": 4.87171381111366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:26:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1276,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:26:47,16.618361234664917,OPTIMAL,-63.47708709665152,-63.477087197659806,1.010082826269354e-07,8.471542469613478e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.670787375, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -63.47708709665152, ""dual_objective_value"": -63.477087197659806, ""duality_gap"": 1.010082826269354e-07, ""primal_infeasibility"": 8.471542469613478e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:26:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1277,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:29:08,91.52134919166565,OPTIMAL,-63.47708710436236,-63.47708721576618,1.1140382127905468e-07,9.370169346520279e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 80.89928704166667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -63.47708710436236, ""dual_objective_value"": -63.47708721576618, ""duality_gap"": 1.1140382127905468e-07, ""primal_infeasibility"": 9.370169346520279e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:29:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1278,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:30:01,34.29532480239868,OPTIMAL,-399.9999948753643,-400.0000001208191,5.2454548153946234e-06,5.104383506653095e-13,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.048874666666666, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -399.9999948753643, ""dual_objective_value"": -400.0000001208191, ""duality_gap"": 5.2454548153946234e-06, ""primal_infeasibility"": 5.104383506653095e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:29:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1279,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:31:34,92.35972785949707,OPTIMAL,-399.9999995772125,-399.9999995761562,1.0563212526903953e-09,2.5194124567833976e-09,1.777169568338365e-12,33,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 65.081882375, ""setup_time"": [], ""iterations"": 33, ""primal_objective_value"": -399.9999995772125, ""dual_objective_value"": -399.9999995761562, ""duality_gap"": 1.0563212526903953e-09, ""primal_infeasibility"": 2.5194124567833976e-09, ""dual_infeasibility"": 1.777169568338365e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:31:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1280,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:35:44,241.1041750907898,UNKNOWN,-348.9999945185722,-349.0000002426005,5.724028312670271e-06,1.8779632575768103e-08,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 116.13666708333334, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": -348.9999945185722, ""dual_objective_value"": -349.0000002426005, ""duality_gap"": 5.724028312670271e-06, ""primal_infeasibility"": 1.8779632575768103e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-18 23:35:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1281,matlab_sedumi,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:41:01,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1282,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:15,10.543416023254395,OPTIMAL,8.999996513737967,8.999996285281131,2.2845683567140895e-07,2.3112684240151632e-09,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.44853316666666665, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": 8.999996513737967, ""dual_objective_value"": 8.999996285281131, ""duality_gap"": 2.2845683567140895e-07, ""primal_infeasibility"": 2.3112684240151632e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:05:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1283,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:21,5.028787851333618,OPTIMAL,8.999996304463258,8.999996309461777,4.998518932097795e-09,2.0925600974181833e-09,0.0,13,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.42363433333333333, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 8.999996304463258, ""dual_objective_value"": 8.999996309461777, ""duality_gap"": 4.998518932097795e-09, ""primal_infeasibility"": 2.0925600974181833e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:05:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1284,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:27,0.0055849552154541016,OPTIMAL,8.999996209209556,8.999996230766877,-2.1557321261411744e-08,1.8223965354693912e-08,9.58875201462206e-11,11,"{""solver_solve_time"": 0.000157167, ""problem_class"": ""SDP""}" +1285,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:27,0.021031856536865234,OPTIMAL,8.999996217101113,8.999996231565662,-1.446454866993463e-08,2.1552454348135378e-08,1.3113686044545564e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1286,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:27,0.005464076995849609,OPTIMAL,9.000014086327363,9.000007538484402,6.547842961168726e-06,7.190939502213777e-07,2.017647402124318e-05,175,"{""solver_solve_time"": 0.000432083, ""problem_class"": ""SDP""}" +1287,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:27,0.015557050704956055,OPTIMAL,8.999996508066124,8.999996257439102,2.5062702135869586e-07,3.858578150973925e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1288,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1289,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1290,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1291,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1292,scipy_linprog,scipy-1.15.3,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:05:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1293,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:01,6.63208794593811,OPTIMAL,123.38035721605554,123.38035631007274,9.059828016688698e-07,9.364706977581974e-10,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.450353, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 123.38035721605554, ""dual_objective_value"": 123.38035631007274, ""duality_gap"": 9.059828016688698e-07, ""primal_infeasibility"": 9.364706977581974e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:05:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1294,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:06,5.089740991592407,OPTIMAL,123.38035631112416,123.38035631802163,6.897465709698736e-09,2.9604864720439395e-09,3.2852692607373415e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.39883325, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 123.38035631112416, ""dual_objective_value"": 123.38035631802163, ""duality_gap"": 6.897465709698736e-09, ""primal_infeasibility"": 2.9604864720439395e-09, ""dual_infeasibility"": 3.2852692607373415e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:06:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1295,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:13,0.031990766525268555,OPTIMAL,123.38032438780319,123.38032501198148,-6.241782983806843e-07,4.5631147473518165e-07,5.400635161301182e-09,14,"{""solver_solve_time"": 0.005764081, ""problem_class"": ""SDP""}" +1296,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:13,0.35665202140808105,OPTIMAL,123.38035632795552,123.38035633377643,-5.820908199893893e-09,2.6424809145593065e-09,3.955822371523896e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1297,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:14,0.8292007446289062,OPTIMAL,123.38606688355063,123.3860739362167,-7.052666077811409e-06,6.498518343337364e-06,0.0006916402494040062,20875,"{""solver_solve_time"": 0.804396958, ""problem_class"": ""SDP""}" +1298,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:14,0.06996703147888184,OPTIMAL,123.38036039934943,123.38035581736214,4.58198728381376e-06,4.557386001179585e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1299,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1300,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1301,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1302,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1303,scipy_linprog,scipy-1.15.3,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1304,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:47,5.025975227355957,OPTIMAL,9.109996269927667,9.109996132678651,1.3724901570810744e-07,4.320402504061065e-14,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.33348833333333333, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": 9.109996269927667, ""dual_objective_value"": 9.109996132678651, ""duality_gap"": 1.3724901570810744e-07, ""primal_infeasibility"": 4.320402504061065e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:06:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1305,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:06:52,4.912085056304932,OPTIMAL,9.109996156256061,9.109996162091624,5.835563143818945e-09,7.261145648868141e-09,3.548770555535088e-10,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3005470416666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 9.109996156256061, ""dual_objective_value"": 9.109996162091624, ""duality_gap"": 5.835563143818945e-09, ""primal_infeasibility"": 7.261145648868141e-09, ""dual_infeasibility"": 3.548770555535088e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:06:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1306,matlab_sdpt3,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:04,4.419965982437134,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1307,matlab_sedumi,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:08,4.3709330558776855,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1308,matlab_sdpt3,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:12,4.355494260787964,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1309,matlab_sedumi,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:17,4.373051881790161,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1310,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:21,3.8298470973968506,OPTIMAL,9.109996269927667,9.109996132678651,1.3724901570810744e-07,4.320402504061065e-14,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3171707916666667, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": 9.109996269927667, ""dual_objective_value"": 9.109996132678651, ""duality_gap"": 1.3724901570810744e-07, ""primal_infeasibility"": 4.320402504061065e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1311,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:26,4.933191776275635,OPTIMAL,9.109996156256061,9.109996162091624,5.835563143818945e-09,7.261145648868141e-09,3.548770555535088e-10,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.28215783333333333, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 9.109996156256061, ""dual_objective_value"": 9.109996162091624, ""duality_gap"": 5.835563143818945e-09, ""primal_infeasibility"": 7.261145648868141e-09, ""dual_infeasibility"": 3.548770555535088e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1312,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:30,4.786700010299683,OPTIMAL,9.009996446153833,9.009996290338277,1.5581555601329455e-07,3.83955719920538e-09,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.2753730833333333, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": 9.009996446153833, ""dual_objective_value"": 9.009996290338277, ""duality_gap"": 1.5581555601329455e-07, ""primal_infeasibility"": 3.83955719920538e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1313,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:35,4.920204162597656,OPTIMAL,9.00999626294251,9.009996268263059,5.320549334442148e-09,3.507575669410203e-09,2.959835844803862e-10,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.271228375, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 9.00999626294251, ""dual_objective_value"": 9.009996268263059, ""duality_gap"": 5.320549334442148e-09, ""primal_infeasibility"": 3.507575669410203e-09, ""dual_infeasibility"": 2.959835844803862e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1314,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:42,4.366755962371826,MAX_ITER,901.0014346379526,901.0013611282227,7.3509729872967e-05,2.233921215694808e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.6308557916666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 901.0014346379526, ""dual_objective_value"": 901.0013611282227, ""duality_gap"": 7.3509729872967e-05, ""primal_infeasibility"": 2.233921215694808e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1315,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:49,5.764998912811279,NUM_ERROR,901.0013890792242,901.0013891465655,6.734137514285976e-08,1.8145947199046974e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.9387889583333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 901.0013890792242, ""dual_objective_value"": 901.0013891465655, ""duality_gap"": 6.734137514285976e-08, ""primal_infeasibility"": 1.8145947199046974e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1316,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:07:56,5.24981689453125,UNKNOWN,900.001408675485,900.0013926810119,1.5994473073988047e-05,2.362075343263456e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.537898, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 900.001408675485, ""dual_objective_value"": 900.0013926810119, ""duality_gap"": 1.5994473073988047e-05, ""primal_infeasibility"": 2.362075343263456e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1317,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:01,4.921502351760864,OPTIMAL,900.0013983712862,900.0013984344562,6.316997769317823e-08,7.3597907002225245e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.21663925, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 900.0013983712862, ""dual_objective_value"": 900.0013984344562, ""duality_gap"": 6.316997769317823e-08, ""primal_infeasibility"": 7.3597907002225245e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:07:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1318,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.00537109375,OPTIMAL,8.999996209209556,8.999996230766877,-2.1557321261411744e-08,1.8223965354693912e-08,9.58875201462206e-11,11,"{""solver_solve_time"": 0.000160999, ""problem_class"": ""SDP""}" +1319,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.027730941772460938,OPTIMAL,8.999996217101113,8.999996231565662,-1.446454866993463e-08,2.1552454348135378e-08,1.3113686044545564e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1320,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.005390167236328125,OPTIMAL,9.000014086327363,9.000007538484402,6.547842961168726e-06,7.190939502213777e-07,2.017647402124318e-05,175,"{""solver_solve_time"": 0.000392291, ""problem_class"": ""SDP""}" +1321,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.013810157775878906,OPTIMAL,8.999996508066124,8.999996257439102,2.5062702135869586e-07,3.858578150973925e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1322,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.028374910354614258,OPTIMAL,123.38032438780319,123.38032501198148,-6.241782983806843e-07,4.5631147473518165e-07,5.400635161301182e-09,14,"{""solver_solve_time"": 0.003692876, ""problem_class"": ""SDP""}" +1323,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.34323596954345703,OPTIMAL,123.38035632795552,123.38035633377643,-5.820908199893893e-09,2.6424809145593065e-09,3.955822371523896e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1324,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:52,0.8349161148071289,OPTIMAL,123.38606688355063,123.3860739362167,-7.052666077811409e-06,6.498518343337364e-06,0.0006916402494040062,20875,"{""solver_solve_time"": 0.810098083, ""problem_class"": ""SDP""}" +1325,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.07007503509521484,OPTIMAL,123.38036039934943,123.38035581736214,4.58198728381376e-06,4.557386001179585e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1326,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.007981061935424805,OPTIMAL,9.109996173192481,9.109996174546737,-1.3542553745082841e-09,4.4855110956190985e-09,3.2774392518465433e-10,12,"{""solver_solve_time"": 0.002694167, ""problem_class"": ""SDP""}" +1327,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.05614018440246582,OPTIMAL,9.10999614243476,9.109996145768458,-3.333697762286647e-09,1.0593331383658811e-08,3.349913566356823e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1328,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.5332508087158203,OPTIMAL,9.110041972462652,9.110042582572902,-6.101102503208722e-07,1.529861449889821e-06,1.7591794995023966e-05,44625,"{""solver_solve_time"": 0.5268769160000001, ""problem_class"": ""SDP""}" +1329,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.0164947509765625,OPTIMAL,9.109996393410452,9.109996016151454,3.7725899737495183e-07,2.3142072741567036e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1330,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.005547046661376953,OPTIMAL,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,"{""solver_solve_time"": 0.000317915, ""problem_class"": ""SDP""}" +1331,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:54,0.040513038635253906,OPTIMAL,9.009995897864977,9.009995926940062,-2.907508545035853e-08,4.360070834724522e-08,9.499477870988926e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1332,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:54,0.006245851516723633,OPTIMAL,9.009997345729218,9.00999656325741,7.82471808236096e-07,1.658167187900526e-07,6.101049682851663e-06,225,"{""solver_solve_time"": 0.001088625, ""problem_class"": ""SDP""}" +1333,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:54,0.014287710189819336,OPTIMAL,9.009996558636908,9.009996064429895,4.94207013090886e-07,5.460020736031756e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1334,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:56,0.25171804428100586,OPTIMAL,901.0002651409602,901.0002705585873,-5.41762710781768e-06,1.4882091019913554e-06,6.463946489176919e-09,25,"{""solver_solve_time"": 0.023413668, ""problem_class"": ""SDP""}" +1335,cvxpy_cvxopt,unknown,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:00,2.006617784500122,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1336,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:16,14.444201946258545,OPTIMAL,901.0950988636213,901.0950990173255,-1.537042635391117e-07,8.45148707615466e-06,0.013751596838046476,99775,"{""solver_solve_time"": 14.213166083, ""problem_class"": ""SDP""}" +1337,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:18,0.3029501438140869,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1338,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:19,0.12482285499572754,OPTIMAL,900.0010893310988,900.0010944910015,-5.159902684681583e-06,7.752164593566989e-07,0.0,22,"{""solver_solve_time"": 0.006725375, ""problem_class"": ""SDP""}" +1339,cvxpy_cvxopt,unknown,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:22,1.2377231121063232,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1340,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:26,3.880141019821167,OPTIMAL,900.0356340281699,900.0356340614165,-3.3246692510147113e-08,9.397384533448782e-06,0.007035153135339471,59000,"{""solver_solve_time"": 3.757820333, ""problem_class"": ""SDP""}" +1341,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:28,0.333240270614624,OPTIMAL (INACCURATE),900.0013051383315,900.0014232785333,-0.00011814020172096207,3.7841041393477322e-06,2.3476799902441506e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1342,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1343,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1344,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1345,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1346,scipy_linprog,scipy-1.15.3,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1347,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1348,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1349,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1350,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1351,scipy_linprog,scipy-1.15.3,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1352,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1353,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1354,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1355,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1356,scipy_linprog,scipy-1.15.3,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1357,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1358,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1359,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1360,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1361,scipy_linprog,scipy-1.15.3,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1362,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1363,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1364,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1365,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1366,scipy_linprog,scipy-1.15.3,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:45,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1367,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1368,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:47,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1369,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1370,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1371,scipy_linprog,scipy-1.15.3,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1372,matlab_sdpt3,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:10:18,4.58935284614563,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1373,matlab_sedumi,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:10:22,4.376220941543579,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1374,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:10:48,6.57210898399353,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.736989375, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:10:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1375,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:10:55,7.028964996337891,OPTIMAL,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.271947208333333, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -0.5665172725671985, ""dual_objective_value"": -0.5665172736468338, ""duality_gap"": 1.0796352700737089e-09, ""primal_infeasibility"": 8.490926777938654e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:10:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1376,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:10,6.399893045425415,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.682455875, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1377,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:17,6.221850872039795,OPTIMAL,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.44971225, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -0.5665172725671985, ""dual_objective_value"": -0.5665172736468338, ""duality_gap"": 1.0796352700737089e-09, ""primal_infeasibility"": 8.490926777938654e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1378,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:23,6.2794270515441895,OPTIMAL,-0.6715154042243952,-0.6715154083287945,4.104399375925993e-09,3.403005752654008e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.55073325, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -0.6715154042243952, ""dual_objective_value"": -0.6715154083287945, ""duality_gap"": 4.104399375925993e-09, ""primal_infeasibility"": 3.403005752654008e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1379,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:30,6.7028679847717285,OPTIMAL,-0.6715153908899425,-0.6715153884008259,2.4891165795182246e-09,2.8865480120764807e-09,6.157079870441952e-11,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.9857934166666666, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -0.6715153908899425, ""dual_objective_value"": -0.6715153884008259, ""duality_gap"": 2.4891165795182246e-09, ""primal_infeasibility"": 2.8865480120764807e-09, ""dual_infeasibility"": 6.157079870441952e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1380,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:36,6.247876882553101,OPTIMAL,-0.97262741117333,-0.972627418748867,7.57553708652381e-09,8.514427642381836e-10,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5343246666666666, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -0.97262741117333, ""dual_objective_value"": -0.972627418748867, ""duality_gap"": 7.57553708652381e-09, ""primal_infeasibility"": 8.514427642381836e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1381,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:43,6.909981966018677,OPTIMAL,-0.9726274178595536,-0.9726274178395272,2.00264249627935e-11,2.8576206940232703e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.1732149166666668, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.9726274178595536, ""dual_objective_value"": -0.9726274178395272, ""duality_gap"": 2.00264249627935e-11, ""primal_infeasibility"": 2.8576206940232703e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1382,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:50,6.386530637741089,UNKNOWN,-7.056980018798058,-7.056980042117708,2.331965021085125e-08,1.4104717965201591e-08,3.5687676151979556e-13,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.6728169583333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -7.056980018798058, ""dual_objective_value"": -7.056980042117708, ""duality_gap"": 2.331965021085125e-08, ""primal_infeasibility"": 1.4104717965201591e-08, ""dual_infeasibility"": 3.5687676151979556e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1383,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:11:57,7.051914930343628,OPTIMAL,-7.056980043548424,-7.056980043508659,3.976463602839431e-11,3.648550476043381e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.284110958333333, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -7.056980043548424, ""dual_objective_value"": -7.056980043508659, ""duality_gap"": 3.976463602839431e-11, ""primal_infeasibility"": 3.648550476043381e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:11:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1384,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:12:17,8.206942081451416,OPTIMAL,-0.5665172821147114,-0.5665172817725594,-3.421519734203571e-10,1.022967781834959e-07,0.0,22,"{""solver_solve_time"": 5.106811166, ""problem_class"": ""SDP""}" +1385,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:12:25,8.386672973632812,OPTIMAL,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1386,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:14:36,18.91683077812195,OPTIMAL,-629.1552923299075,-629.1552928252305,4.953229790771729e-07,4.481328896581869e-12,6.4689153410981875e-18,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.186532833333334, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -629.1552923299075, ""dual_objective_value"": -629.1552928252305, ""duality_gap"": 4.953229790771729e-07, ""primal_infeasibility"": 4.481328896581869e-12, ""dual_infeasibility"": 6.4689153410981875e-18, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:14:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1387,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:15:30,52.876553773880005,NUM_ERROR,-629.1548520668078,-629.147034816694,0.007817250113816954,2.5361087944180886e-08,4.2544376286179536e-11,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 39.53807716666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -629.1548520668078, ""dual_objective_value"": -629.147034816694, ""duality_gap"": 0.007817250113816954, ""primal_infeasibility"": 2.5361087944180886e-08, ""dual_infeasibility"": 4.2544376286179536e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:15:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1388,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1389,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1390,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1391,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1392,scipy_linprog,scipy-1.15.3,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1393,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:18,6.544732093811035,MAX_ITER,901.0014346379526,901.0013611282227,7.3509729872967e-05,2.233921215694808e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.6247799583333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 901.0014346379526, ""dual_objective_value"": 901.0013611282227, ""duality_gap"": 7.3509729872967e-05, ""primal_infeasibility"": 2.233921215694808e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:27:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1394,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:25,4.718091011047363,NUM_ERROR,901.0013890792242,901.0013891465655,6.734137514285976e-08,1.8145947199046974e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.908533125, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 901.0013890792242, ""dual_objective_value"": 901.0013891465655, ""duality_gap"": 6.734137514285976e-08, ""primal_infeasibility"": 1.8145947199046974e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:27:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1395,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:33,0.2537209987640381,OPTIMAL,901.0002651409602,901.0002705585873,-5.41762710781768e-06,1.4882091019913554e-06,6.463946489176919e-09,25,"{""solver_solve_time"": 0.023302585, ""problem_class"": ""SDP""}" +1396,cvxpy_cvxopt,unknown,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:37,1.9965460300445557,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1397,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:53,14.329941987991333,OPTIMAL,901.0950988636213,901.0950990173255,-1.537042635391117e-07,8.45148707615466e-06,0.013751596838046476,99775,"{""solver_solve_time"": 14.097880625, ""problem_class"": ""SDP""}" +1398,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:56,0.29096198081970215,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1399,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1400,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1401,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1402,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1403,scipy_linprog,scipy-1.15.3,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1404,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:24,5.20724892616272,UNKNOWN,900.001408675485,900.0013926810119,1.5994473073988047e-05,2.362075343263456e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.551001875, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 900.001408675485, ""dual_objective_value"": 900.0013926810119, ""duality_gap"": 1.5994473073988047e-05, ""primal_infeasibility"": 2.362075343263456e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:28:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1405,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:30,5.02426815032959,OPTIMAL,900.0013983712862,900.0013984344562,6.316997769317823e-08,7.3597907002225245e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.2694272916666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 900.0013983712862, ""dual_objective_value"": 900.0013984344562, ""duality_gap"": 6.316997769317823e-08, ""primal_infeasibility"": 7.3597907002225245e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:28:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1406,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:38,0.13422012329101562,OPTIMAL,900.0010893310988,900.0010944910015,-5.159902684681583e-06,7.752164593566989e-07,0.0,22,"{""solver_solve_time"": 0.006702831, ""problem_class"": ""SDP""}" +1407,cvxpy_cvxopt,unknown,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:40,1.2562849521636963,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1408,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:45,3.86313796043396,OPTIMAL,900.0356340281699,900.0356340614165,-3.3246692510147113e-08,9.397384533448782e-06,0.007035153135339471,59000,"{""solver_solve_time"": 3.7472856660000002, ""problem_class"": ""SDP""}" +1409,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:46,0.33388805389404297,OPTIMAL (INACCURATE),900.0013051383315,900.0014232785333,-0.00011814020172096207,3.7841041393477322e-06,2.3476799902441506e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1410,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1411,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1412,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1413,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1414,scipy_linprog,scipy-1.15.3,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1415,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.008645772933959961,OPTIMAL,9.109996173192481,9.109996174546737,-1.3542553745082841e-09,4.4855110956190985e-09,3.2774392518465433e-10,12,"{""solver_solve_time"": 0.002515546, ""problem_class"": ""SDP""}" +1416,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.062148094177246094,OPTIMAL,9.10999614243476,9.109996145768458,-3.333697762286647e-09,1.0593331383658811e-08,3.349913566356823e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1417,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.5392508506774902,OPTIMAL,9.110041972462652,9.110042582572902,-6.101102503208722e-07,1.529861449889821e-06,1.7591794995023966e-05,44625,"{""solver_solve_time"": 0.533749833, ""problem_class"": ""SDP""}" +1418,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.01682901382446289,OPTIMAL,9.109996393410452,9.109996016151454,3.7725899737495183e-07,2.3142072741567036e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1419,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1420,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1421,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1422,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1423,scipy_linprog,scipy-1.15.3,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1424,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:59,4.789407014846802,OPTIMAL,9.009996446153833,9.009996290338277,1.5581555601329455e-07,3.83955719920538e-09,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.2749352916666667, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": 9.009996446153833, ""dual_objective_value"": 9.009996290338277, ""duality_gap"": 1.5581555601329455e-07, ""primal_infeasibility"": 3.83955719920538e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:33:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1425,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:04,4.88458776473999,OPTIMAL,9.00999626294251,9.009996268263059,5.320549334442148e-09,3.507575669410203e-09,2.959835844803862e-10,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.27098816666666664, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 9.00999626294251, ""dual_objective_value"": 9.009996268263059, ""duality_gap"": 5.320549334442148e-09, ""primal_infeasibility"": 3.507575669410203e-09, ""dual_infeasibility"": 2.959835844803862e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:34:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1426,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:10,5.213371992111206,OPTIMAL,132.63567802335663,132.63567787176257,1.5159406530074193e-07,1.5244236469370746e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5105302916666666, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 132.63567802335663, ""dual_objective_value"": 132.63567787176257, ""duality_gap"": 1.5159406530074193e-07, ""primal_infeasibility"": 1.5244236469370746e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:34:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1427,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:16,5.2311460971832275,OPTIMAL,132.63567716018326,132.63567716469151,4.508251549850684e-09,6.3849327558778055e-09,1.2707989194505613e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.45464245833333333, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 132.63567716018326, ""dual_objective_value"": 132.63567716469151, ""duality_gap"": 4.508251549850684e-09, ""primal_infeasibility"": 6.3849327558778055e-09, ""dual_infeasibility"": 1.2707989194505613e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:34:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1428,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:23,5.613719940185547,OPTIMAL,133.11458916487112,133.11458909069876,7.417236247420078e-08,1.8201739000684703e-10,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7749886666666667, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 133.11458916487112, ""dual_objective_value"": 133.11458909069876, ""duality_gap"": 7.417236247420078e-08, ""primal_infeasibility"": 1.8201739000684703e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:34:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1429,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:30,5.908622980117798,OPTIMAL,133.11458828413384,133.11458828656077,2.426929768262198e-09,7.281149777057451e-09,2.2946480299761797e-10,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.014568875, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 133.11458828413384, ""dual_objective_value"": 133.11458828656077, ""duality_gap"": 2.426929768262198e-09, ""primal_infeasibility"": 7.281149777057451e-09, ""dual_infeasibility"": 2.2946480299761797e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 01:34:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1430,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:37,0.005964040756225586,OPTIMAL,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,"{""solver_solve_time"": 0.000393664, ""problem_class"": ""SDP""}" +1431,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:37,0.03595900535583496,OPTIMAL,9.009995897864977,9.009995926940062,-2.907508545035853e-08,4.360070834724522e-08,9.499477870988926e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1432,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:37,0.00639796257019043,OPTIMAL,9.009997345729218,9.00999656325741,7.82471808236096e-07,1.658167187900526e-07,6.101049682851663e-06,225,"{""solver_solve_time"": 0.001100375, ""problem_class"": ""SDP""}" +1433,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:37,0.014657020568847656,OPTIMAL,9.009996558636908,9.009996064429895,4.94207013090886e-07,5.460020736031756e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1434,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:38,0.49745821952819824,OPTIMAL,132.63566253199446,132.6356626115363,-7.954184866321157e-08,1.2653383845157188e-07,2.366013540423536e-09,18,"{""solver_solve_time"": 0.382465791, ""problem_class"": ""SDP""}" +1435,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:40,1.2629749774932861,OPTIMAL,132.6356762279693,132.6356762370283,-9.058993555299821e-09,1.4424052246283952e-08,3.0183302558080747e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1436,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:03,22.394976139068604,OPTIMAL,132.67027858454858,132.67028269707538,-4.112526795552185e-06,2.547895198115238e-06,0.002408958215925523,83775,"{""solver_solve_time"": 22.277485625, ""problem_class"": ""SDP""}" +1437,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:04,0.2245340347290039,OPTIMAL,132.63567945392438,132.63567502877513,4.4251492568037065e-06,2.494296172882748e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1438,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:13,8.423373937606812,OPTIMAL,133.1145235740515,133.11452372670436,-1.5265285924215277e-07,5.798818510869592e-07,1.8795571691601026e-08,20,"{""solver_solve_time"": 7.601113419, ""problem_class"": ""SDP""}" +1439,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:20,5.338012933731079,OPTIMAL,133.1145887359414,133.1145887345484,1.3930048226029612e-09,4.487143094483282e-09,9.45481793646842e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1440,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.005716085433959961,OPTIMAL,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,"{""solver_solve_time"": 0.000377085, ""problem_class"": ""SDP""}" +1441,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.03877997398376465,OPTIMAL,9.009995897864977,9.009995926940062,-2.907508545035853e-08,4.360070834724522e-08,9.499477870988926e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1442,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.0063629150390625,OPTIMAL,9.009997345729218,9.00999656325741,7.82471808236096e-07,1.658167187900526e-07,6.101049682851663e-06,225,"{""solver_solve_time"": 0.001095791, ""problem_class"": ""SDP""}" +1443,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.014675140380859375,OPTIMAL,9.009996558636908,9.009996064429895,4.94207013090886e-07,5.460020736031756e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1444,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1445,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1446,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1447,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1448,scipy_linprog,scipy-1.15.3,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1452,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:47,0.5915824583333333,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5915824583333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1453,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:53,0.8812795416666667,OPTIMAL,-13.012270029385133,-13.012270026410215,2.9749180896487815e-09,1.5604221692182964e-10,2.645992296428134e-10,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8812795416666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -13.012270029385133, ""dual_objective_value"": -13.012270026410215, ""duality_gap"": 2.9749180896487815e-09, ""primal_infeasibility"": 1.5604221692182964e-10, ""dual_infeasibility"": 2.645992296428134e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1454,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:58,0.602918625,OPTIMAL,-1.6289719586720264,-1.628971958012104,6.599223389969211e-10,3.7220915711599144e-11,1.8222941201475597e-10,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.602918625, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1.6289719586720264, ""dual_objective_value"": -1.628971958012104, ""duality_gap"": 6.599223389969211e-10, ""primal_infeasibility"": 3.7220915711599144e-11, ""dual_infeasibility"": 1.8222941201475597e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1455,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:11:04,0.6093694583333333,OPTIMAL,-0.1025694979041563,-0.10256951119637202,1.3292215716997902e-08,2.856571488970491e-11,7.56900876485523e-13,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6093694583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.1025694979041563, ""dual_objective_value"": -0.10256951119637202, ""duality_gap"": 1.3292215716997902e-08, ""primal_infeasibility"": 2.856571488970491e-11, ""dual_infeasibility"": 7.56900876485523e-13, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:11:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1456,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:04,54.54148845833333,NUM_ERROR,23.44598268573775,24.309815518761912,0.863832833024162,3.19198625458438e-06,3.967426777597085e-06,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 54.54148845833333, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 23.44598268573775, ""dual_objective_value"": 24.309815518761912, ""duality_gap"": 0.863832833024162, ""primal_infeasibility"": 3.19198625458438e-06, ""dual_infeasibility"": 3.967426777597085e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1459,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:18,0.6905710833333333,OPTIMAL,-6.648659598568196e-09,-6.63208127634892e-09,1.6578322219276284e-11,1.912548723169372e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6905710833333333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -6.648659598568196e-09, ""dual_objective_value"": -6.63208127634892e-09, ""duality_gap"": 1.6578322219276284e-11, ""primal_infeasibility"": 1.912548723169372e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1460,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:46,23.723182375,OPTIMAL,-1.8940067866499155e-08,-1.8927203322356983e-08,1.2864544142172114e-11,3.257627120427927e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 23.723182375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1.8940067866499155e-08, ""dual_objective_value"": -1.8927203322356983e-08, ""duality_gap"": 1.2864544142172114e-11, ""primal_infeasibility"": 3.257627120427927e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1461,matlab_sedumi,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:54:06,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1462,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:38,2.2475020833333335,OPTIMAL,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.2475020833333335, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -0.5665172725671985, ""dual_objective_value"": -0.5665172736468338, ""duality_gap"": 1.0796352700737089e-09, ""primal_infeasibility"": 8.490926777938654e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1463,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:45,1.7373145833333334,OPTIMAL,-0.6715153908899425,-0.6715153884008259,2.4891165795182246e-09,2.8865480120764807e-09,6.157079870441952e-11,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.7373145833333334, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -0.6715153908899425, ""dual_objective_value"": -0.6715153884008259, ""duality_gap"": 2.4891165795182246e-09, ""primal_infeasibility"": 2.8865480120764807e-09, ""dual_infeasibility"": 6.157079870441952e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1464,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:52,1.874344125,OPTIMAL,-0.9726274178595536,-0.9726274178395272,2.00264249627935e-11,2.8576206940232703e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.874344125, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.9726274178595536, ""dual_objective_value"": -0.9726274178395272, ""duality_gap"": 2.00264249627935e-11, ""primal_infeasibility"": 2.8576206940232703e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1465,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:01,3.12848525,OPTIMAL,-7.056980043548424,-7.056980043508659,3.976463602839431e-11,3.648550476043381e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 3.12848525, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -7.056980043548424, ""dual_objective_value"": -7.056980043508659, ""duality_gap"": 3.976463602839431e-11, ""primal_infeasibility"": 3.648550476043381e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1466,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:07,0.8317842916666667,OPTIMAL,1.416129455716613,1.4161294580694332,2.3528201609224197e-09,1.2528510194570304e-09,1.5300296534754392e-08,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8317842916666667, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": 1.416129455716613, ""dual_objective_value"": 1.4161294580694332, ""duality_gap"": 2.3528201609224197e-09, ""primal_infeasibility"": 1.2528510194570304e-09, ""dual_infeasibility"": 1.5300296534754392e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1468,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:19,0.5304792916666666,NUM_ERROR,5.981957450464189,5.982166011101507,0.00020856063731766739,7.963841922701557e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5304792916666666, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 5.981957450464189, ""dual_objective_value"": 5.982166011101507, ""duality_gap"": 0.00020856063731766739, ""primal_infeasibility"": 7.963841922701557e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1469,matlab_sedumi,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:24,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1470,matlab_sedumi,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:29,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1471,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:35,0.38086575,NUM_ERROR,-2.032702691217913,-2.0326573971090376,4.5294108875548744e-05,1.1139356829973714e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.38086575, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -2.032702691217913, ""dual_objective_value"": -2.0326573971090376, ""duality_gap"": 4.5294108875548744e-05, ""primal_infeasibility"": 1.1139356829973714e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1472,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:40,0.291179125,NUM_ERROR,-10.967252738065635,-10.967220837229675,3.190083596038562e-05,2.413420742969955e-07,3.97875826735212e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.291179125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -10.967252738065635, ""dual_objective_value"": -10.967220837229675, ""duality_gap"": 3.190083596038562e-05, ""primal_infeasibility"": 2.413420742969955e-07, ""dual_infeasibility"": 3.97875826735212e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1473,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:46,0.2846183333333333,NUM_ERROR,-56.94166534866042,-56.93662791786083,0.005037430799589515,4.0341715618686706e-07,8.598366229162091e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.2846183333333333, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -56.94166534866042, ""dual_objective_value"": -56.93662791786083, ""duality_gap"": 0.005037430799589515, ""primal_infeasibility"": 4.0341715618686706e-07, ""dual_infeasibility"": 8.598366229162091e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1474,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:51,0.348588375,OPTIMAL,-274.76402427242704,-274.76401549857536,8.773851675414335e-06,6.1072960080975595e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.348588375, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -274.76402427242704, ""dual_objective_value"": -274.76401549857536, ""duality_gap"": 8.773851675414335e-06, ""primal_infeasibility"": 6.1072960080975595e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1475,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:57,0.29583345833333335,NUM_ERROR,-362.1389840878955,-362.19928444461704,0.06030035672154099,4.623878615933405e-05,1.468529060102308e-08,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.29583345833333335, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -362.1389840878955, ""dual_objective_value"": -362.19928444461704, ""duality_gap"": 0.06030035672154099, ""primal_infeasibility"": 4.623878615933405e-05, ""dual_infeasibility"": 1.468529060102308e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1476,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:02,0.34503904166666666,NUM_ERROR,-448.93866526508225,-448.93735904243533,0.0013062226469173766,7.16453106043704e-08,1.0964487510881784e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.34503904166666666, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -448.93866526508225, ""dual_objective_value"": -448.93735904243533, ""duality_gap"": 0.0013062226469173766, ""primal_infeasibility"": 7.16453106043704e-08, ""dual_infeasibility"": 1.0964487510881784e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1477,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:08,0.30022125,NUM_ERROR,-390.4187062005368,-388.9712939688352,1.4474122317016054,2.1674897967340183e-06,1.349616784492387e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.30022125, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -390.4187062005368, ""dual_objective_value"": -388.9712939688352, ""duality_gap"": 1.4474122317016054, ""primal_infeasibility"": 2.1674897967340183e-06, ""dual_infeasibility"": 1.349616784492387e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1478,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:13,0.3128221666666667,NUM_ERROR,-116.14800748522454,-116.14764044645105,0.0003670387734899805,5.243531762309649e-07,1.3890768653808889e-09,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3128221666666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -116.14800748522454, ""dual_objective_value"": -116.14764044645105, ""duality_gap"": 0.0003670387734899805, ""primal_infeasibility"": 5.243531762309649e-07, ""dual_infeasibility"": 1.3890768653808889e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1479,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:19,0.317706625,OPTIMAL,-236.24742814369876,-236.2473437618947,8.438180404368723e-05,5.8628976583948846e-09,6.012462469094062e-12,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.317706625, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -236.24742814369876, ""dual_objective_value"": -236.2473437618947, ""duality_gap"": 8.438180404368723e-05, ""primal_infeasibility"": 5.8628976583948846e-09, ""dual_infeasibility"": 6.012462469094062e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1480,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:24,0.3626290833333333,NUM_ERROR,-108.75993162203638,-108.75125626509862,0.008675356937757783,5.284061049311702e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3626290833333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -108.75993162203638, ""dual_objective_value"": -108.75125626509862, ""duality_gap"": 0.008675356937757783, ""primal_infeasibility"": 5.284061049311702e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1481,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:30,0.3754861666666667,NUM_ERROR,-65.88284488105815,-65.88010110073674,0.002743780321409872,1.2872974305043217e-07,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3754861666666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -65.88284488105815, ""dual_objective_value"": -65.88010110073674, ""duality_gap"": 0.002743780321409872, ""primal_infeasibility"": 1.2872974305043217e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1482,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:35,0.3087037083333333,OPTIMAL,-0.11791225666476954,-0.09905856082734718,0.018853695837422357,5.037944322430809e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3087037083333333, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.11791225666476954, ""dual_objective_value"": -0.09905856082734718, ""duality_gap"": 0.018853695837422357, ""primal_infeasibility"": 5.037944322430809e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1483,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:41,0.34354358333333335,NUM_ERROR,-44.98782800411155,-44.73512547033813,0.2527025337734159,5.0403409648842495e-05,5.164198359985477e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.34354358333333335, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -44.98782800411155, ""dual_objective_value"": -44.73512547033813, ""duality_gap"": 0.2527025337734159, ""primal_infeasibility"": 5.0403409648842495e-05, ""dual_infeasibility"": 5.164198359985477e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1484,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:47,0.42435625,NUM_ERROR,-12.994433062802717,-12.993857944680892,0.0005751181218247581,3.459515165126997e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.42435625, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -12.994433062802717, ""dual_objective_value"": -12.993857944680892, ""duality_gap"": 0.0005751181218247581, ""primal_infeasibility"": 3.459515165126997e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1485,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:52,0.3233525,NUM_ERROR,-24.83998341547683,-24.214925261340976,0.6250581541358535,0.000150801335775723,4.4160427926549335e-06,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3233525, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -24.83998341547683, ""dual_objective_value"": -24.214925261340976, ""duality_gap"": 0.6250581541358535, ""primal_infeasibility"": 0.000150801335775723, ""dual_infeasibility"": 4.4160427926549335e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1490,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:19,0.2549562083333333,OPTIMAL,435.99999879051774,435.9999990246588,2.3414105498886784e-07,6.0506510269859365e-09,0.0,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2549562083333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 435.99999879051774, ""dual_objective_value"": 435.9999990246588, ""duality_gap"": 2.3414105498886784e-07, ""primal_infeasibility"": 6.0506510269859365e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1491,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:25,0.3632245416666667,NUM_ERROR,381.4236687453082,381.4240243638051,0.0003556184968829257,1.0256556673173296e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3632245416666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 381.4236687453082, ""dual_objective_value"": 381.4240243638051, ""duality_gap"": 0.0003556184968829257, ""primal_infeasibility"": 1.0256556673173296e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1492,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:30,0.5065246666666666,NUM_ERROR,424.8083811224529,424.80858176294714,0.00020064049425627672,7.622887967153097e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5065246666666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 424.8083811224529, ""dual_objective_value"": 424.80858176294714, ""duality_gap"": 0.00020064049425627672, ""primal_infeasibility"": 7.622887967153097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1493,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:36,0.8749054583333333,NUM_ERROR,756.9340877297344,756.934375193232,0.0002874634975569279,3.486442395574242e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.8749054583333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 756.9340877297344, ""dual_objective_value"": 756.934375193232, ""duality_gap"": 0.0002874634975569279, ""primal_infeasibility"": 3.486442395574242e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1494,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:42,1.283624125,NUM_ERROR,1409.918321784674,1409.918571432121,0.00024964744716271525,9.550174489527122e-08,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.283624125, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 1409.918321784674, ""dual_objective_value"": 1409.918571432121, ""duality_gap"": 0.00024964744716271525, ""primal_infeasibility"": 9.550174489527122e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1495,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:50,2.500351125,NUM_ERROR,1092.5803930728775,1092.5806235221098,0.00023044923227644176,5.983215930617338e-08,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.500351125, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 1092.5803930728775, ""dual_objective_value"": 1092.5806235221098, ""duality_gap"": 0.00023044923227644176, ""primal_infeasibility"": 5.983215930617338e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1496,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:03,6.760695833333333,NUM_ERROR,-20.239510592874606,-20.239510589127317,3.747288701561047e-09,3.232622404503955e-08,0.0,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.760695833333333, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -20.239510592874606, ""dual_objective_value"": -20.239510589127317, ""duality_gap"": 3.747288701561047e-09, ""primal_infeasibility"": 3.232622404503955e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:41:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1497,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:57,40.736246875,NUM_ERROR,-629.1548520668078,-629.147034816694,0.007817250113816954,2.5361087944180886e-08,4.2544376286179536e-11,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 40.736246875, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -629.1548520668078, ""dual_objective_value"": -629.147034816694, ""duality_gap"": 0.007817250113816954, ""primal_infeasibility"": 2.5361087944180886e-08, ""dual_infeasibility"": 4.2544376286179536e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:41:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1498,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:46,84.32632358333333,NUM_ERROR,-4005.599767044349,-4005.599767799965,7.556159289379138e-07,8.95433741624491e-09,5.676034290944519e-12,30,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 84.32632358333333, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": -4005.599767044349, ""dual_objective_value"": -4005.599767799965, ""duality_gap"": 7.556159289379138e-07, ""primal_infeasibility"": 8.95433741624491e-09, ""dual_infeasibility"": 5.676034290944519e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1499,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:52,0.30866791666666665,OPTIMAL,-17.784626802847523,-17.784626793465566,9.38195654498486e-09,5.28282960426234e-09,0.0,30,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.30866791666666665, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": -17.784626802847523, ""dual_objective_value"": -17.784626793465566, ""duality_gap"": 9.38195654498486e-09, ""primal_infeasibility"": 5.28282960426234e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1500,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:58,0.3295910833333333,OPTIMAL,-8.300000061550637,-8.300000053303892,8.24674550869986e-09,8.92637846485658e-09,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3295910833333333, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -8.300000061550637, ""dual_objective_value"": -8.300000053303892, ""duality_gap"": 8.24674550869986e-09, ""primal_infeasibility"": 8.92637846485658e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1501,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:04,0.5063703333333334,NUM_ERROR,-13.633266745169918,-13.633266709049082,3.612083609993988e-08,2.9250113210155247e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5063703333333334, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -13.633266745169918, ""dual_objective_value"": -13.633266709049082, ""duality_gap"": 3.612083609993988e-08, ""primal_infeasibility"": 2.9250113210155247e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1502,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:10,0.619574875,NUM_ERROR,-19.79423223668097,-19.79423226601071,2.932974041414127e-08,7.34021862743097e-08,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.619574875, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -19.79423223668097, ""dual_objective_value"": -19.79423226601071, ""duality_gap"": 2.932974041414127e-08, ""primal_infeasibility"": 7.34021862743097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1503,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:16,1.1899270833333333,NUM_ERROR,-16.88360792645761,-16.88360752271663,4.037409802037928e-07,4.1151459934863073e-07,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.1899270833333333, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -16.88360792645761, ""dual_objective_value"": -16.88360752271663, ""duality_gap"": 4.037409802037928e-07, ""primal_infeasibility"": 4.1151459934863073e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1504,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:24,2.2992367083333334,NUM_ERROR,-37.304475715902306,-37.30447323765376,2.478248546822215e-06,1.310139383095129e-06,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.2992367083333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -37.304475715902306, ""dual_objective_value"": -37.30447323765376, ""duality_gap"": 2.478248546822215e-06, ""primal_infeasibility"": 1.310139383095129e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1505,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:34,3.7043799583333334,NUM_ERROR,-20.625087691567924,-20.625088042230974,3.506630505967223e-07,4.0114303820059954e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.7043799583333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.625087691567924, ""dual_objective_value"": -20.625088042230974, ""duality_gap"": 3.506630505967223e-07, ""primal_infeasibility"": 4.0114303820059954e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1506,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:48,6.0665873333333336,NUM_ERROR,-20.286375865662162,-20.286374249545677,1.6161164850814203e-06,4.233911977499572e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.0665873333333336, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.286375865662162, ""dual_objective_value"": -20.286374249545677, ""duality_gap"": 1.6161164850814203e-06, ""primal_infeasibility"": 4.233911977499572e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1507,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:05,10.212919458333333,NUM_ERROR,-14.6754285362703,-14.675428798508477,2.622381778394356e-07,1.582313837708998e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 10.212919458333333, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -14.6754285362703, ""dual_objective_value"": -14.675428798508477, ""duality_gap"": 2.622381778394356e-07, ""primal_infeasibility"": 1.582313837708998e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:45:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1508,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:31,17.53509725,NUM_ERROR,-38.533100875331215,-38.53309670441624,4.1709149769530995e-06,1.1942347138694803e-06,0.0,43,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 17.53509725, ""setup_time"": [], ""iterations"": 43, ""primal_objective_value"": -38.533100875331215, ""dual_objective_value"": -38.53309670441624, ""duality_gap"": 4.1709149769530995e-06, ""primal_infeasibility"": 1.1942347138694803e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:45:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1509,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:12,30.733073958333332,NUM_ERROR,-31.958699244576298,-31.958695423512797,3.821063501163735e-06,5.312516350920055e-07,0.0,47,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 30.733073958333332, ""setup_time"": [], ""iterations"": 47, ""primal_objective_value"": -31.958699244576298, ""dual_objective_value"": -31.958695423512797, ""duality_gap"": 3.821063501163735e-06, ""primal_infeasibility"": 5.312516350920055e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1510,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:18,0.279735125,OPTIMAL,8.999996304463258,8.999996309461777,4.998518932097795e-09,2.0925600974181833e-09,0.0,13,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.279735125, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 8.999996304463258, ""dual_objective_value"": 8.999996309461777, ""duality_gap"": 4.998518932097795e-09, ""primal_infeasibility"": 2.0925600974181833e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1511,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:24,0.3927455833333333,OPTIMAL,123.38035631112416,123.38035631802163,6.897465709698736e-09,2.9604864720439395e-09,3.2852692607373415e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3927455833333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 123.38035631112416, ""dual_objective_value"": 123.38035631802163, ""duality_gap"": 6.897465709698736e-09, ""primal_infeasibility"": 2.9604864720439395e-09, ""dual_infeasibility"": 3.2852692607373415e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1512,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:29,0.2865194166666667,OPTIMAL,9.109996156256061,9.109996162091624,5.835563143818945e-09,7.261145648868141e-09,3.548770555535088e-10,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2865194166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 9.109996156256061, ""dual_objective_value"": 9.109996162091624, ""duality_gap"": 5.835563143818945e-09, ""primal_infeasibility"": 7.261145648868141e-09, ""dual_infeasibility"": 3.548770555535088e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1513,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:35,0.26377516666666667,OPTIMAL,9.00999626294251,9.009996268263059,5.320549334442148e-09,3.507575669410203e-09,2.959835844803862e-10,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.26377516666666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 9.00999626294251, ""dual_objective_value"": 9.009996268263059, ""duality_gap"": 5.320549334442148e-09, ""primal_infeasibility"": 3.507575669410203e-09, ""dual_infeasibility"": 2.959835844803862e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1514,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:42,0.98678925,NUM_ERROR,901.0013890792242,901.0013891465655,6.734137514285976e-08,1.8145947199046974e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.98678925, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 901.0013890792242, ""dual_objective_value"": 901.0013891465655, ""duality_gap"": 6.734137514285976e-08, ""primal_infeasibility"": 1.8145947199046974e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1515,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:50,1.1931540833333334,OPTIMAL,900.0013983712862,900.0013984344562,6.316997769317823e-08,7.3597907002225245e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1931540833333334, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 900.0013983712862, ""dual_objective_value"": 900.0013984344562, ""duality_gap"": 6.316997769317823e-08, ""primal_infeasibility"": 7.3597907002225245e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1516,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:55,0.2917774166666667,OPTIMAL,-23.00000001877833,-23.000000013317347,5.460982777094614e-09,2.5321435718789402e-09,0.0,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2917774166666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -23.00000001877833, ""dual_objective_value"": -23.000000013317347, ""duality_gap"": 5.460982777094614e-09, ""primal_infeasibility"": 2.5321435718789402e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1517,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:01,0.631585375,OPTIMAL,-32.879169040448566,-32.87916903780507,2.643496088694519e-09,2.2690844865871237e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.631585375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -32.879169040448566, ""dual_objective_value"": -32.87916903780507, ""duality_gap"": 2.643496088694519e-09, ""primal_infeasibility"": 2.2690844865871237e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1518,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:08,2.416633291666667,OPTIMAL,-42.16698154577349,-42.16698155040591,4.632418892924761e-09,4.565662075596726e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.416633291666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -42.16698154577349, ""dual_objective_value"": -42.16698155040591, ""duality_gap"": 4.632418892924761e-09, ""primal_infeasibility"": 4.565662075596726e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1519,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:15,0.4045484166666667,OPTIMAL,-0.9460278817820568,-0.9460275595123333,3.2226972346283134e-07,8.718969712675225e-10,1.4556998452282358e-08,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.4045484166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -0.9460278817820568, ""dual_objective_value"": -0.9460275595123333, ""duality_gap"": 3.2226972346283134e-07, ""primal_infeasibility"": 8.718969712675225e-10, ""dual_infeasibility"": 1.4556998452282358e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1521,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:27,0.49142,OPTIMAL,-6.49666909788267,-6.496669087168537,1.0714132692157818e-08,7.182734585341389e-10,3.7263864829751396e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.49142, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -6.49666909788267, ""dual_objective_value"": -6.496669087168537, ""duality_gap"": 1.0714132692157818e-08, ""primal_infeasibility"": 7.182734585341389e-10, ""dual_infeasibility"": 3.7263864829751396e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1523,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:48:02,18.21366383333333,OPTIMAL,-629.1647785850998,-629.1647785773678,7.73206920712255e-09,1.9597982503383297e-09,3.331356481626968e-11,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 18.21366383333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -629.1647785850998, ""dual_objective_value"": -629.1647785773678, ""duality_gap"": 7.73206920712255e-09, ""primal_infeasibility"": 1.9597982503383297e-09, ""dual_infeasibility"": 3.331356481626968e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:48:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1524,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:09,0.7506059583333333,OPTIMAL,26673.000976938325,26673.000978030293,1.0919684427790344e-06,1.0054272660303507e-09,3.565461396342987e-11,44,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7506059583333333, ""setup_time"": [], ""iterations"": 44, ""primal_objective_value"": 26673.000976938325, ""dual_objective_value"": 26673.000978030293, ""duality_gap"": 1.0919684427790344e-06, ""primal_infeasibility"": 1.0054272660303507e-09, ""dual_infeasibility"": 3.565461396342987e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1525,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:16,1.1841420833333334,OPTIMAL,181889.9393690289,181889.93942920535,6.017644773237407e-05,6.474335930554726e-08,1.9271716253657946e-10,41,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1841420833333334, ""setup_time"": [], ""iterations"": 41, ""primal_objective_value"": 181889.9393690289, ""dual_objective_value"": 181889.93942920535, ""duality_gap"": 6.017644773237407e-05, ""primal_infeasibility"": 6.474335930554726e-08, ""dual_infeasibility"": 1.9271716253657946e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1526,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:21,0.514955,OPTIMAL,7.8520384401152645,7.852038442629353,2.514088492944211e-09,1.8727965760166163e-11,1.9350277378313464e-10,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.514955, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": 7.8520384401152645, ""dual_objective_value"": 7.852038442629353, ""duality_gap"": 2.514088492944211e-09, ""primal_infeasibility"": 1.8727965760166163e-11, ""dual_infeasibility"": 1.9350277378313464e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1527,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:27,1.0436247916666668,OPTIMAL,67.16503131825516,67.16504436552164,1.3047266477883568e-05,1.5621088165689924e-09,1.652497306472603e-10,42,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.0436247916666668, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 67.16503131825516, ""dual_objective_value"": 67.16504436552164, ""duality_gap"": 1.3047266477883568e-05, ""primal_infeasibility"": 1.5621088165689924e-09, ""dual_infeasibility"": 1.652497306472603e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1528,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:42,9.029102375,OPTIMAL,-50.32122201238018,-50.32122201939875,7.018570613581687e-09,4.163130295345427e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.029102375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -50.32122201238018, ""dual_objective_value"": -50.32122201939875, ""duality_gap"": 7.018570613581687e-09, ""primal_infeasibility"": 4.163130295345427e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1529,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:54:24,32.23979391666666,OPTIMAL,-57.23230747485862,-57.232307354157946,1.2070067612057755e-07,4.87171381111366e-09,0.0,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 32.23979391666666, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -57.23230747485862, ""dual_objective_value"": -57.232307354157946, ""duality_gap"": 1.2070067612057755e-07, ""primal_infeasibility"": 4.87171381111366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:54:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1530,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:13,96.736359625,OPTIMAL,-63.47708710436236,-63.47708721576618,1.1140382127905468e-07,9.370169346520279e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 96.736359625, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -63.47708710436236, ""dual_objective_value"": -63.47708721576618, ""duality_gap"": 1.1140382127905468e-07, ""primal_infeasibility"": 9.370169346520279e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1531,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:19,0.9663814166666667,OPTIMAL,-0.9350511855008967,-0.9350485012990968,2.6842017999406664e-06,5.844691781034275e-10,4.421947097574071e-08,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.9663814166666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -0.9350511855008967, ""dual_objective_value"": -0.9350485012990968, ""duality_gap"": 2.6842017999406664e-06, ""primal_infeasibility"": 5.844691781034275e-10, ""dual_infeasibility"": 4.421947097574071e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1532,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:38,12.182909208333333,OPTIMAL,-0.9277236542726338,-0.9277138968827718,9.757389861975163e-06,1.0298591375138612e-09,1.071058841986682e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 12.182909208333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.9277236542726338, ""dual_objective_value"": -0.9277138968827718, ""duality_gap"": 9.757389861975163e-06, ""primal_infeasibility"": 1.0298591375138612e-09, ""dual_infeasibility"": 1.071058841986682e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1535,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:57:30,1.614889625,OPTIMAL,-6.562697214789513,-6.562697203156434,1.1633079388673195e-08,2.9305640450404797e-10,2.5921160736720044e-08,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.614889625, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -6.562697214789513, ""dual_objective_value"": -6.562697203156434, ""duality_gap"": 1.1633079388673195e-08, ""primal_infeasibility"": 2.9305640450404797e-10, ""dual_infeasibility"": 2.5921160736720044e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:57:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1538,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:23,3.3865474583333333,NUM_ERROR,717367.7873780461,717367.7875279884,0.0001499423524364829,3.2577166049237135e-05,3.822526277112251e-09,101,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.3865474583333333, ""setup_time"": [], ""iterations"": 101, ""primal_objective_value"": 717367.7873780461, ""dual_objective_value"": 717367.7875279884, ""duality_gap"": 0.0001499423524364829, ""primal_infeasibility"": 3.2577166049237135e-05, ""dual_infeasibility"": 3.822526277112251e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1539,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:38,9.316090291666667,INFEASIBLE,421.94187307827224,0.9999999999999997,420.94187307827224,1.3616549626114933,6.062796780357364e-09,150,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""infeasible"", ""solve_time"": 9.316090291666667, ""setup_time"": [], ""iterations"": 150, ""primal_objective_value"": 421.94187307827224, ""dual_objective_value"": 0.9999999999999997, ""duality_gap"": 420.94187307827224, ""primal_infeasibility"": 1.3616549626114933, ""dual_infeasibility"": 6.062796780357364e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1540,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:45,1.767578,OPTIMAL,27.33078560261699,27.330794117006498,8.5143895063311e-06,2.148011155839875e-08,7.094423477282984e-11,60,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.767578, ""setup_time"": [], ""iterations"": 60, ""primal_objective_value"": 27.33078560261699, ""dual_objective_value"": 27.330794117006498, ""duality_gap"": 8.5143895063311e-06, ""primal_infeasibility"": 2.148011155839875e-08, ""dual_infeasibility"": 7.094423477282984e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1541,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:56,5.779061583333333,OPTIMAL,51.811964255303366,51.81205548787007,9.123256670307e-05,2.1438553479259163e-08,4.496836433724744e-09,79,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 5.779061583333333, ""setup_time"": [], ""iterations"": 79, ""primal_objective_value"": 51.811964255303366, ""dual_objective_value"": 51.81205548787007, ""duality_gap"": 9.123256670307e-05, ""primal_infeasibility"": 2.1438553479259163e-08, ""dual_infeasibility"": 4.496836433724744e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1542,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:01:57,43.0097865,OPTIMAL,-4006.255460000534,-4006.255459886479,1.1405518307583407e-07,1.6434551009770762e-09,1.1291850783925127e-11,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 43.0097865, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -4006.255460000534, ""dual_objective_value"": -4006.255459886479, ""duality_gap"": 1.1405518307583407e-07, ""primal_infeasibility"": 1.6434551009770762e-09, ""dual_infeasibility"": 1.1291850783925127e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:01:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1545,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:03:39,8.568708083333334,OPTIMAL,-48340945.69408667,-48340945.69332005,0.0007666200399398804,1.6106946788226167e-09,3.269120548119365e-16,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 8.568708083333334, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -48340945.69408667, ""dual_objective_value"": -48340945.69332005, ""duality_gap"": 0.0007666200399398804, ""primal_infeasibility"": 1.6106946788226167e-09, ""dual_infeasibility"": 3.269120548119365e-16, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:03:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1546,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:10:16,69.43002633333333,OPTIMAL,-399.9999995772125,-399.9999995761562,1.0563212526903953e-09,2.5194124567833976e-09,1.777169568338365e-12,33,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 69.43002633333333, ""setup_time"": [], ""iterations"": 33, ""primal_objective_value"": -399.9999995772125, ""dual_objective_value"": -399.9999995761562, ""duality_gap"": 1.0563212526903953e-09, ""primal_infeasibility"": 2.5194124567833976e-09, ""dual_infeasibility"": 1.777169568338365e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:10:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1547,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:22,0.5942775,OPTIMAL,132.63567716018326,132.63567716469151,4.508251549850684e-09,6.3849327558778055e-09,1.2707989194505613e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5942775, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 132.63567716018326, ""dual_objective_value"": 132.63567716469151, ""duality_gap"": 4.508251549850684e-09, ""primal_infeasibility"": 6.3849327558778055e-09, ""dual_infeasibility"": 1.2707989194505613e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:15:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1548,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:30,1.1123747916666666,OPTIMAL,133.11458828413384,133.11458828656077,2.426929768262198e-09,7.281149777057451e-09,2.2946480299761797e-10,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1123747916666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 133.11458828413384, ""dual_objective_value"": 133.11458828656077, ""duality_gap"": 2.426929768262198e-09, ""primal_infeasibility"": 7.281149777057451e-09, ""dual_infeasibility"": 2.2946480299761797e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:15:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1549,matlab_sedumi,unknown,SDPLIB,mcp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:35,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1550,matlab_sedumi,unknown,SDPLIB,mcp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:40,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1551,matlab_sedumi,unknown,SDPLIB,mcp124-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:45,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1552,matlab_sedumi,unknown,SDPLIB,mcp124-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:50,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1553,matlab_sedumi,unknown,SDPLIB,mcp124-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:55,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1554,matlab_sedumi,unknown,SDPLIB,mcp250-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:00,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1555,matlab_sedumi,unknown,SDPLIB,mcp250-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:05,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1556,matlab_sedumi,unknown,SDPLIB,mcp250-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:10,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1557,matlab_sedumi,unknown,SDPLIB,mcp250-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:14,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1558,matlab_sedumi,unknown,SDPLIB,mcp500-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:19,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1559,matlab_sedumi,unknown,SDPLIB,mcp500-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:24,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1560,matlab_sedumi,unknown,SDPLIB,mcp500-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:29,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1561,matlab_sedumi,unknown,SDPLIB,mcp500-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:34,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1562,matlab_sedumi,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:39,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1563,matlab_sedumi,unknown,SDPLIB,gpp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:44,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1564,matlab_sedumi,unknown,SDPLIB,gpp124-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:49,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1565,matlab_sedumi,unknown,SDPLIB,gpp124-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:54,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1566,matlab_sedumi,unknown,SDPLIB,gpp124-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:16:59,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1567,matlab_sedumi,unknown,SDPLIB,gpp250-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:04,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1568,matlab_sedumi,unknown,SDPLIB,gpp250-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:09,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1569,matlab_sedumi,unknown,SDPLIB,gpp250-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:14,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1570,matlab_sedumi,unknown,SDPLIB,gpp250-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:19,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1571,matlab_sedumi,unknown,SDPLIB,gpp500-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:24,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1572,matlab_sedumi,unknown,SDPLIB,gpp500-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:29,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1573,matlab_sedumi,unknown,SDPLIB,gpp500-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:33,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1574,matlab_sedumi,unknown,SDPLIB,gpp500-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:38,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1575,matlab_sedumi,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:42,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1576,matlab_sedumi,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:17:47,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1577,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:22:59,5.317319375,OPTIMAL,-42.666666707488446,-42.66666670384585,3.6425973348741536e-09,2.7680298055873787e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 5.317319375, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -42.666666707488446, ""dual_objective_value"": -42.66666670384585, ""duality_gap"": 3.6425973348741536e-09, ""primal_infeasibility"": 2.7680298055873787e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:22:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1578,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:30:50,142.55485320833333,OPTIMAL,-2448.659124217068,-2448.659124204988,1.2079908628948033e-08,4.663936345007886e-09,7.389642148204685e-12,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 142.55485320833333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -2448.659124217068, ""dual_objective_value"": -2448.659124204988, ""duality_gap"": 1.2079908628948033e-08, ""primal_infeasibility"": 4.663936345007886e-09, ""dual_infeasibility"": 7.389642148204685e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:30:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1579,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:36:22,26.297596458333334,OPTIMAL,-224.00000026429433,-224.00000011609177,1.4820255955783068e-07,5.2487088009421366e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 26.297596458333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -224.00000026429433, ""dual_objective_value"": -224.00000011609177, ""duality_gap"": 1.4820255955783068e-07, ""primal_infeasibility"": 5.2487088009421366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:36:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1582,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:37:03,7.601006166666667,OPTIMAL,-527.8086592434917,-527.8086592306726,1.281910044781398e-08,2.098791477322716e-09,5.187620354134206e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 7.601006166666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -527.8086592434917, ""dual_objective_value"": -527.8086592306726, ""duality_gap"": 1.281910044781398e-08, ""primal_infeasibility"": 2.098791477322716e-09, ""dual_infeasibility"": 5.187620354134206e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:37:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1584,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:40,0.96570575,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.96570575, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1585,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:47,1.7669237083333333,OPTIMAL,-13.012270587360916,-13.012270701517188,1.1415627199085066e-07,5.912533758053113e-11,1.1086499606208974e-11,35,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.7669237083333333, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -13.012270587360916, ""dual_objective_value"": -13.012270701517188, ""duality_gap"": 1.1415627199085066e-07, ""primal_infeasibility"": 5.912533758053113e-11, ""dual_infeasibility"": 1.1086499606208974e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1586,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:52,0.9697343333333334,OPTIMAL,-1.6289719758296834,-1.6289719649739611,1.0855722321068129e-08,1.2364826274510168e-10,2.3874355910020744e-10,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9697343333333334, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -1.6289719758296834, ""dual_objective_value"": -1.6289719649739611, ""duality_gap"": 1.0855722321068129e-08, ""primal_infeasibility"": 1.2364826274510168e-10, ""dual_infeasibility"": 2.3874355910020744e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1587,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:59,0.7735605,OPTIMAL,-0.10256950754836537,-0.10256951016133178,2.612966412685047e-09,7.249211116524449e-12,2.492579880231683e-10,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7735605, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -0.10256950754836537, ""dual_objective_value"": -0.10256951016133178, ""duality_gap"": 2.612966412685047e-09, ""primal_infeasibility"": 7.249211116524449e-12, ""dual_infeasibility"": 2.492579880231683e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1590,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:15,0.8339302916666667,OPTIMAL,3.052785142731995e-10,-8.226008756477171e-10,1.1278793899209166e-09,8.989166660748627e-12,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8339302916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 3.052785142731995e-10, ""dual_objective_value"": -8.226008756477171e-10, ""duality_gap"": 1.1278793899209166e-09, ""primal_infeasibility"": 8.989166660748627e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1591,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:27,6.8528615,OPTIMAL,2.1934585398009077e-10,-5.412207421364536e-10,7.605665961165443e-10,4.353859708422998e-12,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.8528615, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 2.1934585398009077e-10, ""dual_objective_value"": -5.412207421364536e-10, ""duality_gap"": 7.605665961165443e-10, ""primal_infeasibility"": 4.353859708422998e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1592,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:35,3.385503375,MAX_ITER,1.4161291196982995,1.416128628065133,4.916331663995521e-07,7.938472564250578e-08,0.0,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 3.385503375, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 1.4161291196982995, ""dual_objective_value"": 1.416128628065133, ""duality_gap"": 4.916331663995521e-07, ""primal_infeasibility"": 7.938472564250578e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1594,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:49,0.9657167916666667,UNKNOWN,5.992654461591593,5.981017465497352,0.01163699609424107,2.6102968408925996e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.9657167916666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 5.992654461591593, ""dual_objective_value"": 5.981017465497352, ""duality_gap"": 0.01163699609424107, ""primal_infeasibility"": 2.6102968408925996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1595,matlab_sdpt3,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:54,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1596,matlab_sdpt3,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:59,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1597,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:06,1.89119475,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.89119475, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1598,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:13,1.86828275,OPTIMAL,-0.6715154042243952,-0.6715154083287945,4.104399375925993e-09,3.403005752654008e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.86828275, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -0.6715154042243952, ""dual_objective_value"": -0.6715154083287945, ""duality_gap"": 4.104399375925993e-09, ""primal_infeasibility"": 3.403005752654008e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1599,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:20,1.705317875,OPTIMAL,-0.97262741117333,-0.972627418748867,7.57553708652381e-09,8.514427642381836e-10,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.705317875, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -0.97262741117333, ""dual_objective_value"": -0.972627418748867, ""duality_gap"": 7.57553708652381e-09, ""primal_infeasibility"": 8.514427642381836e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1600,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:27,1.4575445,UNKNOWN,-7.056980018798058,-7.056980042117708,2.331965021085125e-08,1.4104717965201591e-08,3.5687676151979556e-13,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.4575445, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -7.056980018798058, ""dual_objective_value"": -7.056980042117708, ""duality_gap"": 2.331965021085125e-08, ""primal_infeasibility"": 1.4104717965201591e-08, ""dual_infeasibility"": 3.5687676151979556e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1605,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:56,0.4685420416666667,OPTIMAL,436.000000302473,435.9999999151769,3.872960974149464e-07,1.0352572932812939e-11,0.0,10,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.4685420416666667, ""setup_time"": [], ""iterations"": 10, ""primal_objective_value"": 436.000000302473, ""dual_objective_value"": 435.9999999151769, ""duality_gap"": 3.872960974149464e-07, ""primal_infeasibility"": 1.0352572932812939e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1606,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:02,0.7566619166666667,OPTIMAL,381.39365405504674,381.41637577242363,0.022721717376896322,2.8681423726442413e-07,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7566619166666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 381.39365405504674, ""dual_objective_value"": 381.41637577242363, ""duality_gap"": 0.022721717376896322, ""primal_infeasibility"": 2.8681423726442413e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1607,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:08,0.6350701666666667,UNKNOWN,424.7884026413741,424.8042332891782,0.015830647804136788,2.244805558197445e-07,1.0208979903820277e-13,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.6350701666666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 424.7884026413741, ""dual_objective_value"": 424.8042332891782, ""duality_gap"": 0.015830647804136788, ""primal_infeasibility"": 2.244805558197445e-07, ""dual_infeasibility"": 1.0208979903820277e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1608,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:14,0.5659632083333334,OPTIMAL,756.8395594287458,756.8977747654171,0.05821533667131007,6.256731733516596e-07,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5659632083333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 756.8395594287458, ""dual_objective_value"": 756.8977747654171, ""duality_gap"": 0.05821533667131007, ""primal_infeasibility"": 6.256731733516596e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1609,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:19,0.8991597916666667,OPTIMAL,1409.9186636560362,1409.9299342574086,0.011270601372416422,5.8123518858196593e-08,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8991597916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 1409.9186636560362, ""dual_objective_value"": 1409.9299342574086, ""duality_gap"": 0.011270601372416422, ""primal_infeasibility"": 5.8123518858196593e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1610,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:26,0.8021789583333333,UNKNOWN,1092.5398261865366,1092.5738677926238,0.03404160608715756,2.2324924926700836e-07,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.8021789583333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 1092.5398261865366, ""dual_objective_value"": 1092.5738677926238, ""duality_gap"": 0.03404160608715756, ""primal_infeasibility"": 2.2324924926700836e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1611,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:35,2.882202875,UNKNOWN,-20.239507562642537,-20.23951068538981,3.122747273209825e-06,1.0755657434415856e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.882202875, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -20.239507562642537, ""dual_objective_value"": -20.23951068538981, ""duality_gap"": 3.122747273209825e-06, ""primal_infeasibility"": 1.0755657434415856e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1612,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:56,5.390393125,OPTIMAL,-629.1552924715518,-629.155292824143,3.52591200680763e-07,1.783924970601402e-12,6.427897648455087e-18,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.390393125, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -629.1552924715518, ""dual_objective_value"": -629.155292824143, ""duality_gap"": 3.52591200680763e-07, ""primal_infeasibility"": 1.783924970601402e-12, ""dual_infeasibility"": 6.427897648455087e-18, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1613,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:29,8.547652125,OPTIMAL,-4005.601288017268,-4005.601316366677,2.834940914908657e-05,5.789644333861485e-11,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 8.547652125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -4005.601288017268, ""dual_objective_value"": -4005.601316366677, ""duality_gap"": 2.834940914908657e-05, ""primal_infeasibility"": 5.789644333861485e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1614,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:34,0.37224925,UNKNOWN,-2.0327304439087186,-2.032679460642064,5.098326665464725e-05,2.666994274501407e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.37224925, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -2.0327304439087186, ""dual_objective_value"": -2.032679460642064, ""duality_gap"": 5.098326665464725e-05, ""primal_infeasibility"": 2.666994274501407e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1615,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:40,0.3056114583333333,UNKNOWN,-10.969253774110527,-10.968153281488807,0.0011004926217204059,3.1722464136341583e-06,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.3056114583333333, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -10.969253774110527, ""dual_objective_value"": -10.968153281488807, ""duality_gap"": 0.0011004926217204059, ""primal_infeasibility"": 3.1722464136341583e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1616,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:45,0.3675725833333333,OPTIMAL,-56.96785514137487,-56.95432364943337,0.013531491941499496,6.41331617518588e-06,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3675725833333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -56.96785514137487, ""dual_objective_value"": -56.95432364943337, ""duality_gap"": 0.013531491941499496, ""primal_infeasibility"": 6.41331617518588e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1617,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:51,0.348355125,MAX_ITER,-274.76574859289997,-274.7647974867353,0.0009511061646776398,8.935314643369996e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.348355125, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -274.76574859289997, ""dual_objective_value"": -274.7647974867353, ""duality_gap"": 0.0009511061646776398, ""primal_infeasibility"": 8.935314643369996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1618,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:56,0.30704,UNKNOWN,-362.8407662937241,-362.5463311167045,0.29443517701957944,5.076986649325987e-05,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.30704, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -362.8407662937241, ""dual_objective_value"": -362.5463311167045, ""duality_gap"": 0.29443517701957944, ""primal_infeasibility"": 5.076986649325987e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1619,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:02,0.3865935,MAX_ITER,-448.94845306947616,-448.93787068369375,0.01058238578241344,1.0795193288541605e-05,2.9425725883582585e-11,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.3865935, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -448.94845306947616, ""dual_objective_value"": -448.93787068369375, ""duality_gap"": 0.01058238578241344, ""primal_infeasibility"": 1.0795193288541605e-05, ""dual_infeasibility"": 2.9425725883582585e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1620,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:07,0.321014,OPTIMAL,-390.8268127270961,-390.81955811039285,0.007254616703278316,5.153919837286196e-06,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.321014, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -390.8268127270961, ""dual_objective_value"": -390.81955811039285, ""duality_gap"": 0.007254616703278316, ""primal_infeasibility"": 5.153919837286196e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1621,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:13,0.3580920416666667,MAX_ITER,-116.18907747348399,-116.16764622467993,0.02143124880406333,1.107192932812266e-05,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.3580920416666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -116.18907747348399, ""dual_objective_value"": -116.16764622467993, ""duality_gap"": 0.02143124880406333, ""primal_infeasibility"": 1.107192932812266e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1622,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:19,0.3677940416666667,UNKNOWN,-236.24926143119387,-236.2492582522059,3.178987981300452e-06,4.333392854983704e-07,6.696508028901661e-17,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.3677940416666667, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -236.24926143119387, ""dual_objective_value"": -236.2492582522059, ""duality_gap"": 3.178987981300452e-06, ""primal_infeasibility"": 4.333392854983704e-07, ""dual_infeasibility"": 6.696508028901661e-17, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1623,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:23,0.365393375,UNKNOWN,-108.7683048840259,-108.77818212309559,0.009877239069695065,2.3595268341152298e-05,0.0,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.365393375, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -108.7683048840259, ""dual_objective_value"": -108.77818212309559, ""duality_gap"": 0.009877239069695065, ""primal_infeasibility"": 2.3595268341152298e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1624,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:29,0.4292201666666667,UNKNOWN,-65.91623172173267,-65.89340793308176,0.022823788650910615,1.465391663685626e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.4292201666666667, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -65.91623172173267, ""dual_objective_value"": -65.89340793308176, ""duality_gap"": 0.022823788650910615, ""primal_infeasibility"": 1.465391663685626e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1625,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:34,0.5892792083333334,UNKNOWN,-2.2571558268484783e-05,-2.9572121961358873e-05,7.00056369287409e-06,1.538325025557428e-12,0.0,61,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5892792083333334, ""setup_time"": [], ""iterations"": 61, ""primal_objective_value"": -2.2571558268484783e-05, ""dual_objective_value"": -2.9572121961358873e-05, ""duality_gap"": 7.00056369287409e-06, ""primal_infeasibility"": 1.538325025557428e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1626,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:40,0.5201742916666666,UNKNOWN,-44.36054953507353,-44.352737721585974,0.0078118134875566625,2.34826882611184e-05,1.9677815225005485e-09,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5201742916666666, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -44.36054953507353, ""dual_objective_value"": -44.352737721585974, ""duality_gap"": 0.0078118134875566625, ""primal_infeasibility"": 2.34826882611184e-05, ""dual_infeasibility"": 1.9677815225005485e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1627,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:46,0.5131727916666666,UNKNOWN,-12.989960076415304,-12.989934206347613,2.5870067691613485e-05,8.66236229712859e-08,9.648370597983024e-10,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5131727916666666, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -12.989960076415304, ""dual_objective_value"": -12.989934206347613, ""duality_gap"": 2.5870067691613485e-05, ""primal_infeasibility"": 8.66236229712859e-08, ""dual_infeasibility"": 9.648370597983024e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1628,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:52,0.5514212916666666,UNKNOWN,-23.987835100185112,-24.001097916938342,0.0132628167532296,3.144875496622765e-05,6.997893475414923e-09,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5514212916666666, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -23.987835100185112, ""dual_objective_value"": -24.001097916938342, ""duality_gap"": 0.0132628167532296, ""primal_infeasibility"": 3.144875496622765e-05, ""dual_infeasibility"": 6.997893475414923e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1629,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:57,0.29932166666666665,OPTIMAL,-17.78462660868152,-17.784626742725198,1.3404367749103585e-07,6.1483802884653124e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.29932166666666665, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -17.78462660868152, ""dual_objective_value"": -17.784626742725198, ""duality_gap"": 1.3404367749103585e-07, ""primal_infeasibility"": 6.1483802884653124e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1630,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:03,0.41014416666666664,MAX_ITER,-8.299999963979975,-8.300000195440187,2.3146021277398177e-07,4.880420109459047e-09,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.41014416666666664, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -8.299999963979975, ""dual_objective_value"": -8.300000195440187, ""duality_gap"": 2.3146021277398177e-07, ""primal_infeasibility"": 4.880420109459047e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1631,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:09,0.5669687916666667,MAX_ITER,-13.633263261632482,-13.633267476768832,4.215136350183002e-06,8.350276043868962e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.5669687916666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -13.633263261632482, ""dual_objective_value"": -13.633267476768832, ""duality_gap"": 4.215136350183002e-06, ""primal_infeasibility"": 8.350276043868962e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1632,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:14,0.9797094583333333,UNKNOWN,-19.794231903242835,-19.794231015288197,8.879546378182113e-07,2.2336441257685175e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.9797094583333333, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -19.794231903242835, ""dual_objective_value"": -19.794231015288197, ""duality_gap"": 8.879546378182113e-07, ""primal_infeasibility"": 2.2336441257685175e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1633,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:21,2.211192083333333,UNKNOWN,-16.883596414614832,-16.88360083689795,4.422283119254189e-06,2.75357458891001e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.211192083333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -16.883596414614832, ""dual_objective_value"": -16.88360083689795, ""duality_gap"": 4.422283119254189e-06, ""primal_infeasibility"": 2.75357458891001e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1634,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:28,1.4893847916666667,UNKNOWN,-37.3043782593074,-37.30442450422718,4.624491977978096e-05,6.229389742583387e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.4893847916666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -37.3043782593074, ""dual_objective_value"": -37.30442450422718, ""duality_gap"": 4.624491977978096e-05, ""primal_infeasibility"": 6.229389742583387e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1635,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:37,2.1745322916666665,UNKNOWN,-20.62505846427079,-20.62507774002214,1.9275751348857284e-05,5.828261469963749e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.1745322916666665, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.62505846427079, ""dual_objective_value"": -20.62507774002214, ""duality_gap"": 1.9275751348857284e-05, ""primal_infeasibility"": 5.828261469963749e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1636,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:47,3.2315104166666666,UNKNOWN,-20.286339185828837,-20.286370196182016,3.101035317953915e-05,6.98131306134552e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 3.2315104166666666, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.286339185828837, ""dual_objective_value"": -20.286370196182016, ""duality_gap"": 3.101035317953915e-05, ""primal_infeasibility"": 6.98131306134552e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1637,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:59,5.164574291666667,UNKNOWN,-14.675411161814361,-14.675428193598599,1.7031784237175884e-05,3.695427597785709e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.164574291666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -14.675411161814361, ""dual_objective_value"": -14.675428193598599, ""duality_gap"": 1.7031784237175884e-05, ""primal_infeasibility"": 3.695427597785709e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1638,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:17,8.544497708333333,UNKNOWN,-38.53290115712743,-38.53305732276117,0.00015616563374010184,1.0306253214751266e-06,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 8.544497708333333, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -38.53290115712743, ""dual_objective_value"": -38.53305732276117, ""duality_gap"": 0.00015616563374010184, ""primal_infeasibility"": 1.0306253214751266e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1639,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:38,11.558988291666667,UNKNOWN,-31.958623305615316,-31.958686698445707,6.339283039125121e-05,7.853573037958292e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 11.558988291666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -31.958623305615316, ""dual_objective_value"": -31.958686698445707, ""duality_gap"": 6.339283039125121e-05, ""primal_infeasibility"": 7.853573037958292e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1640,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:43,0.24263908333333334,OPTIMAL,8.999996513737967,8.999996285281131,2.2845683567140895e-07,2.3112684240151632e-09,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.24263908333333334, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": 8.999996513737967, ""dual_objective_value"": 8.999996285281131, ""duality_gap"": 2.2845683567140895e-07, ""primal_infeasibility"": 2.3112684240151632e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1641,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:49,0.36276016666666666,OPTIMAL,123.38035721605554,123.38035631007274,9.059828016688698e-07,9.364706977581974e-10,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.36276016666666666, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 123.38035721605554, ""dual_objective_value"": 123.38035631007274, ""duality_gap"": 9.059828016688698e-07, ""primal_infeasibility"": 9.364706977581974e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1642,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:54,0.291210125,OPTIMAL,9.109996269927667,9.109996132678651,1.3724901570810744e-07,4.320402504061065e-14,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.291210125, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": 9.109996269927667, ""dual_objective_value"": 9.109996132678651, ""duality_gap"": 1.3724901570810744e-07, ""primal_infeasibility"": 4.320402504061065e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1643,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:00,0.2855519166666667,OPTIMAL,9.009996446153833,9.009996290338277,1.5581555601329455e-07,3.83955719920538e-09,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.2855519166666667, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": 9.009996446153833, ""dual_objective_value"": 9.009996290338277, ""duality_gap"": 1.5581555601329455e-07, ""primal_infeasibility"": 3.83955719920538e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1644,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:06,0.5691390416666666,MAX_ITER,901.0014346379526,901.0013611282227,7.3509729872967e-05,2.233921215694808e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.5691390416666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 901.0014346379526, ""dual_objective_value"": 901.0013611282227, ""duality_gap"": 7.3509729872967e-05, ""primal_infeasibility"": 2.233921215694808e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1645,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:13,0.544207125,UNKNOWN,900.001408675485,900.0013926810119,1.5994473073988047e-05,2.362075343263456e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.544207125, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 900.001408675485, ""dual_objective_value"": 900.0013926810119, ""duality_gap"": 1.5994473073988047e-05, ""primal_infeasibility"": 2.362075343263456e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1646,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:19,0.3554101666666667,OPTIMAL,-22.99999966935091,-23.000000054814368,3.854634584854466e-07,1.08019134049444e-11,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3554101666666667, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": -22.99999966935091, ""dual_objective_value"": -23.000000054814368, ""duality_gap"": 3.854634584854466e-07, ""primal_infeasibility"": 1.08019134049444e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1647,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:25,0.5580662916666667,OPTIMAL,-32.87916893679436,-32.87916903116265,9.436828918296669e-08,1.2482387284479412e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5580662916666667, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -32.87916893679436, ""dual_objective_value"": -32.87916903116265, ""duality_gap"": 9.436828918296669e-08, ""primal_infeasibility"": 1.2482387284479412e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1648,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:33,1.1650570833333334,OPTIMAL,-42.16698130052295,-42.16698152368698,2.2316402947808456e-07,6.941267860310931e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.1650570833333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -42.16698130052295, ""dual_objective_value"": -42.16698152368698, ""duality_gap"": 2.2316402947808456e-07, ""primal_infeasibility"": 6.941267860310931e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1649,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:39,0.9404508333333333,OPTIMAL,-0.9460284865934897,-0.9460284991390998,1.2545610106329264e-08,6.250873663071201e-11,2.95124542471296e-11,37,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9404508333333333, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -0.9460284865934897, ""dual_objective_value"": -0.9460284991390998, ""duality_gap"": 1.2545610106329264e-08, ""primal_infeasibility"": 6.250873663071201e-11, ""dual_infeasibility"": 2.95124542471296e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1651,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:50,0.7027917083333334,UNKNOWN,-6.4966770139444625,-6.496675726860695,1.2870837675649227e-06,7.454748459602961e-09,2.2293203875515626e-08,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.7027917083333334, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -6.4966770139444625, ""dual_objective_value"": -6.496675726860695, ""duality_gap"": 1.2870837675649227e-06, ""primal_infeasibility"": 7.454748459602961e-09, ""dual_infeasibility"": 2.2293203875515626e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1653,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:07:14,2.363915125,OPTIMAL,-629.1647770178772,-629.1647830495338,6.031656539562391e-06,1.487176561555531e-13,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.363915125, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -629.1647770178772, ""dual_objective_value"": -629.1647830495338, ""duality_gap"": 6.031656539562391e-06, ""primal_infeasibility"": 1.487176561555531e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:07:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1654,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:36,15.456882125,OPTIMAL,-1567.6396346092076,-1567.6396447238442,1.011463655231637e-05,1.502035887240306e-11,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 15.456882125, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1567.6396346092076, ""dual_objective_value"": -1567.6396447238442, ""duality_gap"": 1.011463655231637e-05, ""primal_infeasibility"": 1.502035887240306e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1655,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:41,0.7064037083333333,MAX_ITER,26673.095548738904,26672.99721972217,0.09832901673507877,3.15909062818255e-07,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.7064037083333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 26673.095548738904, ""dual_objective_value"": 26672.99721972217, ""duality_gap"": 0.09832901673507877, ""primal_infeasibility"": 3.15909062818255e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1656,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:49,1.319889125,MAX_ITER,181893.5416873559,181889.2138017401,4.3278856158140115,0.0001842777716910772,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 1.319889125, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 181893.5416873559, ""dual_objective_value"": 181889.2138017401, ""duality_gap"": 4.3278856158140115, ""primal_infeasibility"": 0.0001842777716910772, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1657,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:55,0.7289274583333333,OPTIMAL,7.852038477343999,7.85203843733003,4.0013969027086205e-08,5.643670372617149e-10,8.132293889752614e-13,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7289274583333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 7.852038477343999, ""dual_objective_value"": 7.85203843733003, ""duality_gap"": 4.0013969027086205e-08, ""primal_infeasibility"": 5.643670372617149e-10, ""dual_infeasibility"": 8.132293889752614e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1658,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:01,1.1798084166666667,UNKNOWN,67.16504386757731,67.1650296736913,1.4193886016755641e-05,8.372561524043076e-08,0.0,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.1798084166666667, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 67.16504386757731, ""dual_objective_value"": 67.1650296736913, ""duality_gap"": 1.4193886016755641e-05, ""primal_infeasibility"": 8.372561524043076e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1659,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:09,1.6901592083333334,OPTIMAL,-50.321221317087485,-50.32122203998839,7.229009071352266e-07,3.4400304938930694e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.6901592083333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -50.321221317087485, ""dual_objective_value"": -50.32122203998839, ""duality_gap"": 7.229009071352266e-07, ""primal_infeasibility"": 3.4400304938930694e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1660,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:21,3.2877647083333335,OPTIMAL,-57.23230683313342,-57.232307346760024,5.136266025829173e-07,4.815986565890254e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 3.2877647083333335, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -57.23230683313342, ""dual_objective_value"": -57.232307346760024, ""duality_gap"": 5.136266025829173e-07, ""primal_infeasibility"": 4.815986565890254e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1661,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:38,5.631308958333333,OPTIMAL,-63.47708709665152,-63.477087197659806,1.010082826269354e-07,8.471542469613478e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.631308958333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -63.47708709665152, ""dual_objective_value"": -63.477087197659806, ""duality_gap"": 1.010082826269354e-07, ""primal_infeasibility"": 8.471542469613478e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1662,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:50,7.386539916666667,NUM_ERROR,23.439854216116014,23.439818538353734,3.5677762280528214e-05,8.672790954165753e-13,3.574491428937259e-12,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""num_error"", ""solve_time"": 7.386539916666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 23.439854216116014, ""dual_objective_value"": 23.439818538353734, ""duality_gap"": 3.5677762280528214e-05, ""primal_infeasibility"": 8.672790954165753e-13, ""dual_infeasibility"": 3.574491428937259e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1663,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:03,4.5348270416666665,OPTIMAL,-0.9350529216589623,-0.9350529430516714,2.1392709159684387e-08,4.568144423812863e-11,3.3090660555122834e-11,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 4.5348270416666665, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": -0.9350529216589623, ""dual_objective_value"": -0.9350529430516714, ""duality_gap"": 2.1392709159684387e-08, ""primal_infeasibility"": 4.568144423812863e-11, ""dual_infeasibility"": 3.3090660555122834e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:15:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1664,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:46,36.740298708333334,OPTIMAL,-0.9277286131116571,-0.927728620913157,7.801499890547348e-09,5.4916733095581286e-11,1.161702398637029e-12,58,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 36.740298708333334, ""setup_time"": [], ""iterations"": 58, ""primal_objective_value"": -0.9277286131116571, ""dual_objective_value"": -0.927728620913157, ""duality_gap"": 7.801499890547348e-09, ""primal_infeasibility"": 5.4916733095581286e-11, ""dual_infeasibility"": 1.161702398637029e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:16:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1667,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:18:35,2.3680329166666665,UNKNOWN,-6.562707043774328,-6.562705418128809,1.625645518643637e-06,1.0393547981901797e-09,6.418055339037683e-08,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.3680329166666665, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -6.562707043774328, ""dual_objective_value"": -6.562705418128809, ""duality_gap"": 1.625645518643637e-06, ""primal_infeasibility"": 1.0393547981901797e-09, ""dual_infeasibility"": 6.418055339037683e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:18:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1669,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:33,2.528989458333333,UNKNOWN,717664.7819529852,717343.935387326,320.84656565915793,1.4635089779954944e-05,0.0,30,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.528989458333333, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": 717664.7819529852, ""dual_objective_value"": 717343.935387326, ""duality_gap"": 320.84656565915793, ""primal_infeasibility"": 1.4635089779954944e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1670,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:45,6.322234541666667,MAX_ITER,141398.6133370716,141352.75901112944,45.85432594217127,2.270219537981104e-05,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 6.322234541666667, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": 141398.6133370716, ""dual_objective_value"": 141352.75901112944, ""duality_gap"": 45.85432594217127, ""primal_infeasibility"": 2.270219537981104e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1671,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:52,1.908151625,UNKNOWN,27.33080258413944,27.33078486456531,1.7719574131547233e-05,9.835491261168821e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.908151625, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 27.33080258413944, ""dual_objective_value"": 27.33078486456531, ""duality_gap"": 1.7719574131547233e-05, ""primal_infeasibility"": 9.835491261168821e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1672,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:03,5.2030821666666665,UNKNOWN,51.81198120718885,51.811960258992684,2.0948196166159505e-05,9.305294462873729e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.2030821666666665, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 51.81198120718885, ""dual_objective_value"": 51.811960258992684, ""duality_gap"": 2.0948196166159505e-05, ""primal_infeasibility"": 9.305294462873729e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:26:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1673,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:27,5.433042291666666,OPTIMAL,-4006.2555195572245,-4006.2555216808855,2.1236610336927697e-06,7.797328522618889e-14,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.433042291666666, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -4006.2555195572245, ""dual_objective_value"": -4006.2555216808855, ""duality_gap"": 2.1236610336927697e-06, ""primal_infeasibility"": 7.797328522618889e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:26:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1676,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:28:05,1.9698861666666667,OPTIMAL,-48340945.86330335,-48340945.949232884,0.08592953532934189,3.430228268358133e-11,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.9698861666666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -48340945.86330335, ""dual_objective_value"": -48340945.949232884, ""duality_gap"": 0.08592953532934189, ""primal_infeasibility"": 3.430228268358133e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:28:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1677,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:29:50,96.853589375,OPTIMAL,-318810925.66454315,-318810927.37935495,1.7148118019104004,3.472238775909382e-13,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 96.853589375, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -318810925.66454315, ""dual_objective_value"": -318810927.37935495, ""duality_gap"": 1.7148118019104004, ""primal_infeasibility"": 3.472238775909382e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:29:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1678,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:30:23,6.12120375,OPTIMAL,-399.9999948753643,-400.0000001208191,5.2454548153946234e-06,5.104383506653095e-13,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.12120375, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -399.9999948753643, ""dual_objective_value"": -400.0000001208191, ""duality_gap"": 5.2454548153946234e-06, ""primal_infeasibility"": 5.104383506653095e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:30:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1679,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:40,138.05433633333334,UNKNOWN,-348.9999945185722,-349.0000002426005,5.724028312670271e-06,1.8779632575768103e-08,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 138.05433633333334, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": -348.9999945185722, ""dual_objective_value"": -349.0000002426005, ""duality_gap"": 5.724028312670271e-06, ""primal_infeasibility"": 1.8779632575768103e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1680,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:48,1.0470835833333334,OPTIMAL,132.63567802335663,132.63567787176257,1.5159406530074193e-07,1.5244236469370746e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0470835833333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 132.63567802335663, ""dual_objective_value"": 132.63567787176257, ""duality_gap"": 1.5159406530074193e-07, ""primal_infeasibility"": 1.5244236469370746e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1681,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:56,1.0130884583333333,OPTIMAL,133.11458916487112,133.11458909069876,7.417236247420078e-08,1.8201739000684703e-10,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0130884583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 133.11458916487112, ""dual_objective_value"": 133.11458909069876, ""duality_gap"": 7.417236247420078e-08, ""primal_infeasibility"": 1.8201739000684703e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1682,matlab_sdpt3,unknown,SDPLIB,mcp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:01,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1683,matlab_sdpt3,unknown,SDPLIB,mcp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:06,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1684,matlab_sdpt3,unknown,SDPLIB,mcp124-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:11,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1685,matlab_sdpt3,unknown,SDPLIB,mcp124-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:15,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1686,matlab_sdpt3,unknown,SDPLIB,mcp124-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:20,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1687,matlab_sdpt3,unknown,SDPLIB,mcp250-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:25,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1688,matlab_sdpt3,unknown,SDPLIB,mcp250-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:30,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1689,matlab_sdpt3,unknown,SDPLIB,mcp250-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:35,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1690,matlab_sdpt3,unknown,SDPLIB,mcp250-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:40,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1691,matlab_sdpt3,unknown,SDPLIB,mcp500-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:45,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1692,matlab_sdpt3,unknown,SDPLIB,mcp500-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:50,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1693,matlab_sdpt3,unknown,SDPLIB,mcp500-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:35:55,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1694,matlab_sdpt3,unknown,SDPLIB,mcp500-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:00,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1695,matlab_sdpt3,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:05,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1696,matlab_sdpt3,unknown,SDPLIB,gpp124-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:10,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1697,matlab_sdpt3,unknown,SDPLIB,gpp124-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:15,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1698,matlab_sdpt3,unknown,SDPLIB,gpp124-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:20,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1699,matlab_sdpt3,unknown,SDPLIB,gpp124-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:25,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1700,matlab_sdpt3,unknown,SDPLIB,gpp250-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:30,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1701,matlab_sdpt3,unknown,SDPLIB,gpp250-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:35,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1702,matlab_sdpt3,unknown,SDPLIB,gpp250-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:40,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1703,matlab_sdpt3,unknown,SDPLIB,gpp250-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:45,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1704,matlab_sdpt3,unknown,SDPLIB,gpp500-1,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:50,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1705,matlab_sdpt3,unknown,SDPLIB,gpp500-2,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:55,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1706,matlab_sdpt3,unknown,SDPLIB,gpp500-3,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:36:59,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1707,matlab_sdpt3,unknown,SDPLIB,gpp500-4,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:04,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1708,matlab_sdpt3,unknown,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:09,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1709,matlab_sdpt3,unknown,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:37:13,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1710,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:42:19,1.0727401666666667,OPTIMAL,-42.66666606990655,-42.66666679075191,7.208453638440915e-07,1.0369985582790911e-10,0.0,8,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0727401666666667, ""setup_time"": [], ""iterations"": 8, ""primal_objective_value"": -42.66666606990655, ""dual_objective_value"": -42.66666679075191, ""duality_gap"": 7.208453638440915e-07, ""primal_infeasibility"": 1.0369985582790911e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:42:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1711,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:44:56,151.334371,OPTIMAL,-25.599999843331616,-25.600000096699134,2.5336751718896267e-07,3.1121343206556096e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 151.334371, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -25.599999843331616, ""dual_objective_value"": -25.600000096699134, ""duality_gap"": 2.5336751718896267e-07, ""primal_infeasibility"": 3.1121343206556096e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:44:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1712,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:45:28,3.4544910833333335,OPTIMAL,-2448.659090183629,-2448.65913216471,4.198108126729494e-05,3.2288322455640034e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 3.4544910833333335, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -2448.659090183629, ""dual_objective_value"": -2448.65913216471, ""duality_gap"": 4.198108126729494e-05, ""primal_infeasibility"": 3.2288322455640034e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:45:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1713,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:46:39,6.199770916666667,OPTIMAL,-11817.999949825342,-11818.000000034852,5.020950993639417e-05,1.691030179875868e-11,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.199770916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -11817.999949825342, ""dual_objective_value"": -11818.000000034852, ""duality_gap"": 5.020950993639417e-05, ""primal_infeasibility"": 1.691030179875868e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:46:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1714,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:46:48,2.2588253333333332,OPTIMAL,-223.99999755382208,-224.00000119657497,3.642752886889866e-06,3.435419260401472e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.2588253333333332, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -223.99999755382208, ""dual_objective_value"": -224.00000119657497, ""duality_gap"": 3.642752886889866e-06, ""primal_infeasibility"": 3.435419260401472e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:46:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1717,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:47:24,2.0340817083333333,OPTIMAL,-527.808660710369,-527.8086632131733,2.502804250070767e-06,1.4509650835086007e-11,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.0340817083333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -527.808660710369, ""dual_objective_value"": -527.8086632131733, ""duality_gap"": 2.502804250070767e-06, ""primal_infeasibility"": 1.4509650835086007e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:47:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1718,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:48:56,82.76187025,OPTIMAL,-3474.794059052365,-3474.7940824213174,2.336895249754889e-05,2.319714150200321e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 82.76187025, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -3474.794059052365, ""dual_objective_value"": -3474.7940824213174, ""duality_gap"": 2.336895249754889e-05, ""primal_infeasibility"": 2.319714150200321e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:48:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1720,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:29:14,121.13185501098633,OPTIMAL,23.439818974587567,23.439818435224183,5.393633841777046e-07,1.589519974455338e-11,4.7948349842514454e-14,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1721,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1722,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1723,scipy_linprog,scipy-1.15.3,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1724,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1725,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1726,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1727,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1728,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1729,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1730,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1731,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1732,scipy_linprog,scipy-1.15.3,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1736,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1737,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1738,scipy_linprog,scipy-1.15.3,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1757,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1758,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1759,scipy_linprog,scipy-1.15.3,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1760,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1761,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1762,scipy_linprog,scipy-1.15.3,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1763,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1764,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1765,scipy_linprog,scipy-1.15.3,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1766,scipy_linprog,scipy-1.15.3,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1767,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1768,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1769,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1770,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1771,scipy_linprog,scipy-1.15.3,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1772,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1773,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1774,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1775,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1776,scipy_linprog,scipy-1.15.3,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1777,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1778,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1779,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1780,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1781,scipy_linprog,scipy-1.15.3,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1782,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1783,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1784,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1785,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1786,scipy_linprog,scipy-1.15.3,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1787,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1788,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1789,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1790,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1791,scipy_linprog,scipy-1.15.3,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1792,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1793,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1794,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1795,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1796,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1797,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1798,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1799,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1800,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1801,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1804,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1805,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1806,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1807,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1811,cvxpy_scip,unknown,SDPLIB,truss5_sdp,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T15:06:09,0.0,ERROR,,,,,,,"{""error_message"": ""Benchmark execution failed: Failed to create solver 'cvxpy_scip' (backend: SCIP): Requested backend SCIP not available. Available backends: ['CLARABEL', 'ECOS', 'ECOS_BB', 'OSQP', 'SCIPY', 'SCS']""}" +1812,cvxpy_highs,unknown,SDPLIB,truss5_sdp,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T15:06:09,0.0,ERROR,,,,,,,"{""error_message"": ""Benchmark execution failed: Failed to create solver 'cvxpy_highs' (backend: HIGHS): Requested backend HIGHS not available. Available backends: ['CLARABEL', 'ECOS', 'ECOS_BB', 'OSQP', 'SCIPY', 'SCS']""}" +1813,cvxpy_osqp,cvxpy-1.6.6-OSQP-1.0.4,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T15:06:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1814,scipy_linprog,scipy-1.15.3,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T15:06:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1815,cvxpy_ecos,cvxpy-1.6.6-ECOS-2.0.14,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T15:09:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1818,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""86bfae9b39861dd3a3303c878d8ee30e9a970bb6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",86bfae9b39861dd3a3303c878d8ee30e9a970bb6,2025-07-22T15:17:54,0.6745402916666666,OPTIMAL,132.63567801876036,132.63567787176189,1.4699847383781162e-07,1.5205458807246513e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.6745402916666666, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 132.63567801876036, ""dual_objective_value"": 132.63567787176189, ""duality_gap"": 1.4699847383781162e-07, ""primal_infeasibility"": 1.5205458807246513e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:17:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1819,matlab_sdpt3,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""86bfae9b39861dd3a3303c878d8ee30e9a970bb6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",86bfae9b39861dd3a3303c878d8ee30e9a970bb6,2025-07-22T15:24:49,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1820,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:31:53,0.8213070833333334,OPTIMAL,133.11458915883577,133.1145890906361,6.819968234594853e-08,2.2496379323625403e-10,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8213070833333334, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 133.11458915883577, ""dual_objective_value"": 133.1145890906361, ""duality_gap"": 6.819968234594853e-08, ""primal_infeasibility"": 2.2496379323625403e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:31:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1821,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:32:38,0.6298311666666667,OPTIMAL,132.6356771601937,132.63567716470257,4.5088768274581525e-09,6.3772698840920634e-09,1.2707963027328625e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6298311666666667, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 132.6356771601937, ""dual_objective_value"": 132.63567716470257, ""duality_gap"": 4.5088768274581525e-09, ""primal_infeasibility"": 6.3772698840920634e-09, ""dual_infeasibility"": 1.2707963027328625e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:32:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1822,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:32:44,1.0171705,OPTIMAL,133.11458828405543,133.11458828648352,2.4280950583488448e-09,7.429302853954885e-09,2.294303437965876e-10,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.0171705, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 133.11458828405543, ""dual_objective_value"": 133.11458828648352, ""duality_gap"": 2.4280950583488448e-09, ""primal_infeasibility"": 7.429302853954885e-09, ""dual_infeasibility"": 2.294303437965876e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:32:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1823,matlab_sedumi,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:34:29,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1824,matlab_sdpt3,unknown,SDPLIB,gpp100,UNKNOWN,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:35:17,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}"", ""problem_class"": ""UNKNOWN""}" +1825,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:37:00,0.46525041666666667,OPTIMAL,44.94354787139288,44.943548863521535,9.921286547864838e-07,2.734211981964889e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.46525041666666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 44.94354787139288, ""dual_objective_value"": 44.943548863521535, ""duality_gap"": 9.921286547864838e-07, ""primal_infeasibility"": 2.734211981964889e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:36:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1826,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:38,0.3674235416666667,OPTIMAL,-226.15735063849868,-226.15735153136035,8.928616637149389e-07,2.7784036751600645e-11,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3674235416666667, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -226.15735063849868, ""dual_objective_value"": -226.15735153136035, ""duality_gap"": 8.928616637149389e-07, ""primal_infeasibility"": 2.7784036751600645e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1827,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:44,0.5272229166666667,OPTIMAL,-141.99047525291158,-141.99047737688758,2.1239760030766774e-06,3.5074058660380328e-12,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5272229166666667, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -141.99047525291158, ""dual_objective_value"": -141.99047737688758, ""duality_gap"": 2.1239760030766774e-06, ""primal_infeasibility"": 3.5074058660380328e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1828,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:49,0.541560125,OPTIMAL,-269.88017043292245,-269.88017065541254,2.2249008679864346e-07,7.365570128801219e-14,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.541560125, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -269.88017043292245, ""dual_objective_value"": -269.88017065541254, ""duality_gap"": 2.2249008679864346e-07, ""primal_infeasibility"": 7.365570128801219e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1829,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:55,0.573352625,OPTIMAL,-467.75010984467355,-467.7501144740113,4.62933775224883e-06,3.4418429164954034e-13,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.573352625, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -467.75010984467355, ""dual_objective_value"": -467.7501144740113, ""duality_gap"": 4.62933775224883e-06, ""primal_infeasibility"": 3.4418429164954034e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1830,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:00,0.49896158333333335,OPTIMAL,-864.4118633887887,-864.4118640817342,6.929454912096844e-07,2.1225996542903577e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.49896158333333335, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -864.4118633887887, ""dual_objective_value"": -864.4118640817342, ""duality_gap"": 6.929454912096844e-07, ""primal_infeasibility"": 2.1225996542903577e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1831,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:07,0.8985415,OPTIMAL,-317.26433979088665,-317.2643404055531,6.146664759398845e-07,1.1817715432431227e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8985415, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -317.26433979088665, ""dual_objective_value"": -317.2643404055531, ""duality_gap"": 6.146664759398845e-07, ""primal_infeasibility"": 1.1817715432431227e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1832,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:13,0.8380240416666667,OPTIMAL,-531.9300812378247,-531.930084038429,2.8006043066852726e-06,5.9500298393263746e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8380240416666667, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -531.9300812378247, ""dual_objective_value"": -531.930084038429, ""duality_gap"": 2.8006043066852726e-06, ""primal_infeasibility"": 5.9500298393263746e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1833,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:19,0.912536375,OPTIMAL,-981.1725661031035,-981.1725718690851,5.765981654803909e-06,3.16026274347861e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.912536375, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -981.1725661031035, ""dual_objective_value"": -981.1725718690851, ""duality_gap"": 5.765981654803909e-06, ""primal_infeasibility"": 3.16026274347861e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1834,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:26,0.9775438333333333,OPTIMAL,-1681.9600975043904,-1681.9601125495465,1.5045156033011153e-05,8.103865749540684e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9775438333333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -1681.9600975043904, ""dual_objective_value"": -1681.9601125495465, ""duality_gap"": 1.5045156033011153e-05, ""primal_infeasibility"": 8.103865749540684e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1835,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:34,1.5547225,OPTIMAL,-598.1485163350332,-598.1485169989327,6.63899527353351e-07,5.203879178173194e-13,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5547225, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -598.1485163350332, ""dual_objective_value"": -598.1485169989327, ""duality_gap"": 6.63899527353351e-07, ""primal_infeasibility"": 5.203879178173194e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1836,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:41,1.5360105833333333,OPTIMAL,-1070.0567637418037,-1070.0567662625401,2.5207364160451107e-06,9.081847783622977e-13,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5360105833333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1070.0567637418037, ""dual_objective_value"": -1070.0567662625401, ""duality_gap"": 2.5207364160451107e-06, ""primal_infeasibility"": 9.081847783622977e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1837,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:50,1.5978740833333334,OPTIMAL,-1847.9700088367038,-1847.9700217552486,1.2918544825879508e-05,1.3971950234132762e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5978740833333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -1847.9700088367038, ""dual_objective_value"": -1847.9700217552486, ""duality_gap"": 1.2918544825879508e-05, ""primal_infeasibility"": 1.3971950234132762e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1838,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:58,1.5796517916666666,OPTIMAL,-3566.7379931729224,-3566.738052271622,5.909869969400461e-05,1.1792225585239736e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5796517916666666, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -3566.7379931729224, ""dual_objective_value"": -3566.738052271622, ""duality_gap"": 5.909869969400461e-05, ""primal_infeasibility"": 1.1792225585239736e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1839,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:04,0.45728304166666667,OPTIMAL,44.94354787139288,44.943548863521535,9.921286547864838e-07,2.734211981964889e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.45728304166666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 44.94354787139288, ""dual_objective_value"": 44.943548863521535, ""duality_gap"": 9.921286547864838e-07, ""primal_infeasibility"": 2.734211981964889e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1840,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:10,0.5800415,OPTIMAL,7.343075216995572,7.343075708069313,4.910737407826105e-07,3.445685296414346e-11,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5800415, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 7.343075216995572, ""dual_objective_value"": 7.343075708069313, ""duality_gap"": 4.910737407826105e-07, ""primal_infeasibility"": 3.445685296414346e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1841,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:15,0.5533539166666667,OPTIMAL,46.86229340823787,46.86229387971365,4.7147577930672924e-07,1.2319438807287507e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5533539166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 46.86229340823787, ""dual_objective_value"": 46.86229387971365, ""duality_gap"": 4.7147577930672924e-07, ""primal_infeasibility"": 1.2319438807287507e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1842,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:21,0.522561625,OPTIMAL,153.014122916332,153.01412446660885,1.550276834905162e-06,4.152400563581602e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.522561625, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 153.014122916332, ""dual_objective_value"": 153.01412446660885, ""duality_gap"": 1.550276834905162e-06, ""primal_infeasibility"": 4.152400563581602e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1843,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:27,0.7190450416666667,OPTIMAL,418.98759463635133,418.98760998623175,1.534988041385077e-05,5.62265250487158e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7190450416666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 418.98759463635133, ""dual_objective_value"": 418.98760998623175, ""duality_gap"": 1.534988041385077e-05, ""primal_infeasibility"": 5.62265250487158e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1844,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:33,1.305260125,UNKNOWN,15.444916745668474,15.444916791369133,4.5700659256908693e-08,8.619595094369608e-12,1.5998195761311495e-13,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.305260125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": 15.444916745668474, ""dual_objective_value"": 15.444916791369133, ""duality_gap"": 4.5700659256908693e-08, ""primal_infeasibility"": 8.619595094369608e-12, ""dual_infeasibility"": 1.5998195761311495e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1845,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:41,1.0700413333333334,OPTIMAL,81.86895604876402,81.86895743427542,1.385511396279071e-06,1.2930217037292772e-10,1.5507764493660058e-14,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0700413333333334, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 81.86895604876402, ""dual_objective_value"": 81.86895743427542, ""duality_gap"": 1.385511396279071e-06, ""primal_infeasibility"": 1.2930217037292772e-10, ""dual_infeasibility"": 1.5507764493660058e-14, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1846,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:48,1.0686595833333334,OPTIMAL,303.5393167017354,303.5393198675198,3.1657843919674633e-06,3.327821459253514e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0686595833333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 303.5393167017354, ""dual_objective_value"": 303.5393198675198, ""duality_gap"": 3.1657843919674633e-06, ""primal_infeasibility"": 3.327821459253514e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1847,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:54,0.9967734583333333,OPTIMAL,747.3283058391797,747.3283049708084,8.683713303980767e-07,2.2452130375841572e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9967734583333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 747.3283058391797, ""dual_objective_value"": 747.3283049708084, ""duality_gap"": 8.683713303980767e-07, ""primal_infeasibility"": 2.2452130375841572e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1848,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:04,2.947858166666667,NUM_ERROR,25.320546265113887,25.320543834359203,2.430754683757641e-06,3.084055027579803e-14,1.140507524262097e-12,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""num_error"", ""solve_time"": 2.947858166666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 25.320546265113887, ""dual_objective_value"": 25.320543834359203, ""duality_gap"": 2.430754683757641e-06, ""primal_infeasibility"": 3.084055027579803e-14, ""dual_infeasibility"": 1.140507524262097e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1849,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:15,2.782814,OPTIMAL,156.06039007012993,156.06038734464326,2.725486666577126e-06,1.5107253167137408e-11,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.782814, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": 156.06039007012993, ""dual_objective_value"": 156.06038734464326, ""duality_gap"": 2.725486666577126e-06, ""primal_infeasibility"": 1.5107253167137408e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1850,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:26,2.2795346666666667,OPTIMAL,513.0176090027193,513.0176019918591,7.010860144873732e-06,4.510660770051609e-12,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.2795346666666667, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 513.0176090027193, ""dual_objective_value"": 513.0176019918591, ""duality_gap"": 7.010860144873732e-06, ""primal_infeasibility"": 4.510660770051609e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1851,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:37,2.642140875,OPTIMAL,1567.0187951883258,1567.0187917942853,3.3940405046450906e-06,8.670520994656674e-12,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.642140875, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 1567.0187951883258, ""dual_objective_value"": 1567.0187917942853, ""duality_gap"": 3.3940405046450906e-06, ""primal_infeasibility"": 8.670520994656674e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1852,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:51,0.42889166666666667,OPTIMAL,-226.15735066324342,-226.15735064685092,1.6392505131079815e-08,2.540251644217761e-09,7.337480389552916e-11,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.42889166666666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -226.15735066324342, ""dual_objective_value"": -226.15735064685092, ""duality_gap"": 1.6392505131079815e-08, ""primal_infeasibility"": 2.540251644217761e-09, ""dual_infeasibility"": 7.337480389552916e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1853,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:57,1.2223734583333334,OPTIMAL,-141.99047629355732,-141.99047628004945,1.3507872154150391e-08,2.947795342213903e-09,1.7867929542859113e-10,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.2223734583333334, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -141.99047629355732, ""dual_objective_value"": -141.99047628004945, ""duality_gap"": 1.3507872154150391e-08, ""primal_infeasibility"": 2.947795342213903e-09, ""dual_infeasibility"": 1.7867929542859113e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1854,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:03,0.8320392083333333,OPTIMAL,-269.88017030007154,-269.8801702946931,5.3784674491907936e-09,9.209708037490611e-10,2.2285924347635445e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8320392083333333, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -269.88017030007154, ""dual_objective_value"": -269.8801702946931, ""duality_gap"": 5.3784674491907936e-09, ""primal_infeasibility"": 9.209708037490611e-10, ""dual_infeasibility"": 2.2285924347635445e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1855,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:09,0.813436375,OPTIMAL,-467.75011366517776,-467.75011365499245,1.0185317478317302e-08,1.2380352442101327e-09,1.2079205834364502e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.813436375, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -467.75011366517776, ""dual_objective_value"": -467.75011365499245, ""duality_gap"": 1.0185317478317302e-08, ""primal_infeasibility"": 1.2380352442101327e-09, ""dual_infeasibility"": 1.2079205834364502e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1856,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:14,0.72608825,OPTIMAL,-864.4118628975764,-864.411862876331,2.1245341486064717e-08,2.30264056066451e-09,5.427533369077547e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.72608825, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -864.4118628975764, ""dual_objective_value"": -864.411862876331, ""duality_gap"": 2.1245341486064717e-08, ""primal_infeasibility"": 2.30264056066451e-09, ""dual_infeasibility"": 5.427533369077547e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1857,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:22,2.260602083333333,OPTIMAL,-317.2643388544631,-317.26433884402263,1.0440487585583469e-08,2.606685535332963e-09,7.365073918346426e-11,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.260602083333333, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -317.2643388544631, ""dual_objective_value"": -317.26433884402263, ""duality_gap"": 1.0440487585583469e-08, ""primal_infeasibility"": 2.606685535332963e-09, ""dual_infeasibility"": 7.365073918346426e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1858,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:29,2.2106795833333335,OPTIMAL,-531.9300822835332,-531.9300822716898,1.1843440006487072e-08,1.926782694456677e-09,3.374042791082714e-11,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.2106795833333335, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -531.9300822835332, ""dual_objective_value"": -531.9300822716898, ""duality_gap"": 1.1843440006487072e-08, ""primal_infeasibility"": 1.926782694456677e-09, ""dual_infeasibility"": 3.374042791082714e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1859,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:36,2.6032755416666666,OPTIMAL,-981.1725702362594,-981.172570225403,1.0856410881388001e-08,1.3408641864535708e-09,7.777848240269705e-12,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.6032755416666666, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -981.1725702362594, ""dual_objective_value"": -981.172570225403, ""duality_gap"": 1.0856410881388001e-08, ""primal_infeasibility"": 1.3408641864535708e-09, ""dual_infeasibility"": 7.777848240269705e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1860,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:44,2.581019125,OPTIMAL,-1681.9601099646616,-1681.9601099478573,1.680427885730751e-08,1.774438052229053e-09,3.5680044750280445e-12,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.581019125, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -1681.9601099646616, ""dual_objective_value"": -1681.9601099478573, ""duality_gap"": 1.680427885730751e-08, ""primal_infeasibility"": 1.774438052229053e-09, ""dual_infeasibility"": 3.5680044750280445e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1861,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:59,9.016883166666666,OPTIMAL,-598.1485152998665,-598.1485152939756,5.890910870220978e-09,1.2225054525178163e-09,2.5374934956038518e-11,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.016883166666666, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -598.1485152998665, ""dual_objective_value"": -598.1485152939756, ""duality_gap"": 5.890910870220978e-09, ""primal_infeasibility"": 1.2225054525178163e-09, ""dual_infeasibility"": 2.5374934956038518e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1862,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:44:13,9.306898791666667,OPTIMAL,-1070.0567627403077,-1070.0567627284877,1.1820020517916419e-08,1.9894116855005456e-09,1.83524722585802e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.306898791666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1070.0567627403077, ""dual_objective_value"": -1070.0567627284877, ""duality_gap"": 1.1820020517916419e-08, ""primal_infeasibility"": 1.9894116855005456e-09, ""dual_infeasibility"": 1.83524722585802e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1863,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:44:30,10.876570833333334,OPTIMAL,-1847.9700184528383,-1847.9700184414694,1.1368911145837046e-08,1.480896814122543e-09,5.281511248115392e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 10.876570833333334, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1847.9700184528383, ""dual_objective_value"": -1847.9700184414694, ""duality_gap"": 1.1368911145837046e-08, ""primal_infeasibility"": 1.480896814122543e-09, ""dual_infeasibility"": 5.281511248115392e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1864,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:46,9.711638,OPTIMAL,-3566.738045969509,-3566.7380459534215,1.608759703231044e-08,1.4561025810833674e-09,1.6673683400563527e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.711638, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -3566.738045969509, ""dual_objective_value"": -3566.7380459534215, ""duality_gap"": 1.608759703231044e-08, ""primal_infeasibility"": 1.4561025810833674e-09, ""dual_infeasibility"": 1.6673683400563527e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1865,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:53,0.7721935,NUM_ERROR,44.94351945079613,44.943668273606576,0.0001488228104449263,3.6371368159315026e-07,1.8043086007717958e-08,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.7721935, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": 44.94351945079613, ""dual_objective_value"": 44.943668273606576, ""duality_gap"": 0.0001488228104449263, ""primal_infeasibility"": 3.6371368159315026e-07, ""dual_infeasibility"": 1.8043086007717958e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1866,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:59,1.011289,NUM_ERROR,7.343040041853136,7.343323197544134,0.00028315569099746085,4.6273048261564336e-07,6.076241571456934e-08,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.011289, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 7.343040041853136, ""dual_objective_value"": 7.343323197544134, ""duality_gap"": 0.00028315569099746085, ""primal_infeasibility"": 4.6273048261564336e-07, ""dual_infeasibility"": 6.076241571456934e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1867,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:05,1.067351625,NUM_ERROR,46.8623007758379,46.862310357065084,9.581227182309249e-06,2.602493957176677e-07,4.4461266039776315e-09,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.067351625, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 46.8623007758379, ""dual_objective_value"": 46.862310357065084, ""duality_gap"": 9.581227182309249e-06, ""primal_infeasibility"": 2.602493957176677e-07, ""dual_infeasibility"": 4.4461266039776315e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1868,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:12,1.3415220833333332,NUM_ERROR,153.01413111066205,153.0141433591371,1.2248475059095654e-05,3.772924496141658e-07,1.4242436509417165e-09,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.3415220833333332, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 153.01413111066205, ""dual_objective_value"": 153.0141433591371, ""duality_gap"": 1.2248475059095654e-05, ""primal_infeasibility"": 3.772924496141658e-07, ""dual_infeasibility"": 1.4242436509417165e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1869,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:19,1.2991055833333334,NUM_ERROR,418.9877644444689,418.9878255927038,6.114823491998322e-05,4.115301077190911e-07,3.607218879110399e-09,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.2991055833333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 418.9877644444689, ""dual_objective_value"": 418.9878255927038, ""duality_gap"": 6.114823491998322e-05, ""primal_infeasibility"": 4.115301077190911e-07, ""dual_infeasibility"": 3.607218879110399e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1870,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:27,3.5781583333333336,NUM_ERROR,15.444884449808155,15.4450291912657,0.00014474145754483914,7.773040500979703e-07,9.678959317803167e-09,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.5781583333333336, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 15.444884449808155, ""dual_objective_value"": 15.4450291912657, ""duality_gap"": 0.00014474145754483914, ""primal_infeasibility"": 7.773040500979703e-07, ""dual_infeasibility"": 9.678959317803167e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1871,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:36,3.7947375416666667,NUM_ERROR,81.86902025037489,81.86944910336783,0.00042885299293971,4.94138352678929e-07,1.1701289111328567e-08,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.7947375416666667, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 81.86902025037489, ""dual_objective_value"": 81.86944910336783, ""duality_gap"": 0.00042885299293971, ""primal_infeasibility"": 4.94138352678929e-07, ""dual_infeasibility"": 1.1701289111328567e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1872,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:46,4.021484041666667,NUM_ERROR,303.53929877505766,303.540211904581,0.0009131295233260062,5.409184861944874e-07,5.977453961703577e-09,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 4.021484041666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 303.53929877505766, ""dual_objective_value"": 303.540211904581, ""duality_gap"": 0.0009131295233260062, ""primal_infeasibility"": 5.409184861944874e-07, ""dual_infeasibility"": 5.977453961703577e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1873,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:55,3.3964448333333332,NUM_ERROR,747.328611326081,747.3286056221518,5.703929218725534e-06,1.5891172434487362e-06,1.0336478520663563e-09,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.3964448333333332, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 747.328611326081, ""dual_objective_value"": 747.3286056221518, ""duality_gap"": 5.703929218725534e-06, ""primal_infeasibility"": 1.5891172434487362e-06, ""dual_infeasibility"": 1.0336478520663563e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1874,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:46:18,15.377118958333334,NUM_ERROR,25.320632841703226,25.322930361468835,0.0022975197656087687,1.1452090235982779e-06,3.397050009105795e-08,28,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.377118958333334, ""setup_time"": [], ""iterations"": 28, ""primal_objective_value"": 25.320632841703226, ""dual_objective_value"": 25.322930361468835, ""duality_gap"": 0.0022975197656087687, ""primal_infeasibility"": 1.1452090235982779e-06, ""dual_infeasibility"": 3.397050009105795e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:46:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1875,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:46:41,15.842044375,NUM_ERROR,156.06069685644727,156.0654106456209,0.004713789173621308,5.653736676264694e-07,2.731499527461661e-08,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.842044375, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 156.06069685644727, ""dual_objective_value"": 156.0654106456209, ""duality_gap"": 0.004713789173621308, ""primal_infeasibility"": 5.653736676264694e-07, ""dual_infeasibility"": 2.731499527461661e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:46:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1876,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:47:06,18.165691125,NUM_ERROR,513.0180735864465,513.0180749365385,1.3500920204023714e-06,4.4434696313909057e-07,1.0333092976055663e-09,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 18.165691125, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 513.0180735864465, ""dual_objective_value"": 513.0180749365385, ""duality_gap"": 1.3500920204023714e-06, ""primal_infeasibility"": 4.4434696313909057e-07, ""dual_infeasibility"": 1.0333092976055663e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:47:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1877,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:47:28,15.819546916666667,NUM_ERROR,1567.0194253372717,1567.026642378539,0.007217041267267632,3.401601219505255e-07,3.479858546976129e-09,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.819546916666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 1567.0194253372717, ""dual_objective_value"": 1567.026642378539, ""duality_gap"": 0.007217041267267632, ""primal_infeasibility"": 3.401601219505255e-07, ""dual_infeasibility"": 3.479858546976129e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:47:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1878,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:51:34,0.44436095833333333,OPTIMAL,44.94354787139288,44.943548863521535,9.921286547864838e-07,2.734211981964889e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.44436095833333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 44.94354787139288, ""dual_objective_value"": 44.943548863521535, ""duality_gap"": 9.921286547864838e-07, ""primal_infeasibility"": 2.734211981964889e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:51:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1891,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T16:08:58,1.693596375,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.693596375, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 01:08:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1895,cvxpy_clarabel,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""507a3efe28bd8d2f1344a0edc826c4bb990d61b7""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",507a3efe28bd8d2f1344a0edc826c4bb990d61b7,2025-08-03T14:14:27,31.749879121780396,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -9, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""2025-08-03 23:13:55 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:13:55 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:13:55 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:13:55 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:13:55 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:13:55 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:13:55 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:13:55 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:13:55 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)"", ""problem_class"": ""SDP""}" +1896,cvxpy_clarabel,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:20:43,30.604387998580933,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-03 23:20:13 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:20:13 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:20:13 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:20:13 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:20:13 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:20:13 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:20:13 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)"", ""problem_class"": ""SDP""}" +1897,cvxpy_cvxopt,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:23:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1898,cvxpy_scs,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:26:26,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1899,cvxpy_sdpa,unknown,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:51,0.19372987747192383,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1900,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:52,0.22959208488464355,OPTIMAL (INACCURATE),-1.6401068919646988e-08,-3.033602862628601e-08,1.3934959706639019e-08,7.24230986971135e-09,0.0,14,"{""solver_solve_time"": 0.18366492, ""problem_class"": ""SDP""}" +1901,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:54,2.192477226257324,OPTIMAL,-2.497696811876171e-08,-3.94442290703259e-08,1.4467260951564188e-08,7.720817848199098e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1902,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:55,0.1000521183013916,OPTIMAL,2.763797219494657e-06,6.008903171780412e-07,2.1629069023166157e-06,5.79374368893745e-07,2.176976834364473e-09,275,"{""solver_solve_time"": 0.054842958000000004, ""problem_class"": ""SDP""}" +1903,cvxpy_sdpa,unknown,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:57,1.9144980907440186,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1904,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:28:02,4.074679136276245,OPTIMAL (INACCURATE),-4.4884696204575136e-08,-6.567172048617617e-08,2.0787024281601034e-08,1.0638153482222468e-08,0.0,16,"{""solver_solve_time"": 3.131591457, ""problem_class"": ""SDP""}" +1905,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:29:02,58.70020890235901,OPTIMAL,-2.4827762840420875e-08,-3.392721178555364e-08,9.099448945132768e-09,4.740723896523209e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1906,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:29:05,1.2210209369659424,OPTIMAL,-7.956279965304347e-06,-3.197190700468751e-06,-4.759089264835596e-06,2.804389571931542e-06,8.648485158449915e-09,300,"{""solver_solve_time"": 0.276767833, ""problem_class"": ""SDP""}" +1907,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:30:13,65.82996416091919,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1908,cvxpy_clarabel,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:32:13,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1909,cvxpy_cvxopt,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:34:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1910,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:35:56,89.28411173820496,OPTIMAL,10.797895540459592,10.797826537085669,6.900337392323763e-05,6.245639123478367e-08,5.5257728472699056e-14,16325,"{""solver_solve_time"": 79.354613125, ""problem_class"": ""SDP""}" +1911,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:37,39.79374122619629,OPTIMAL (INACCURATE),1.4161295151451585,1.4161284417476618,1.0733974966647963e-06,3.529475717602551e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1912,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:39,1.3734347820281982,OPTIMAL (INACCURATE),1.4161020106468114,1.4161020228518586,-1.2205047195124052e-08,1.1274549784995933e-06,6.106204455194476e-09,31,"{""solver_solve_time"": 1.344283376, ""problem_class"": ""SDP""}" +1913,cvxpy_cvxopt,unknown,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:46,6.713871002197266,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1914,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:17,30.740686178207397,OPTIMAL (INACCURATE),1.409073703261462,1.4090806844233812,-6.981161919217271e-06,7.523837266388142e-05,3.375321326271274e-05,100000,"{""solver_solve_time"": 30.709408041, ""problem_class"": ""SDP""}" +1915,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:24,2.5426599979400635,OPTIMAL,-223.99999657347732,-224.00000195439648,5.380919162689679e-06,7.830681581889643e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1916,cvxpy_clarabel,unknown,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:50,25.861373901367188,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-03 23:37:25 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:37:25 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:37:25 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:37:25 - python_solver_runner - INFO - Subprocess solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - python_solver_runner - INFO - Solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:37:25 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/HAMMING/hamming_9_8.mat.gz\n2025-08-03 23:37:25 - mat_loader - INFO - Converted hamming_9_8: SDP problem (262144 vars, 2305 constraints)\n2025-08-03 23:37:25 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='hamming_9_8', class='SDP', 262144 vars, 2305 constraints)"", ""problem_class"": ""SDP""}" +1917,cvxpy_cvxopt,unknown,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:39:51,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1918,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:18,22.157066822052002,OPTIMAL,-224.0003222026227,-224.00037351826538,5.131564267912836e-05,5.492586278581966e-07,1.2811657673655026e-08,325,"{""solver_solve_time"": 21.2309355, ""problem_class"": ""SDP""}" +1919,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:19,0.5973911285400391,OPTIMAL,-42.66666466059041,-42.66666774012631,3.0795358938462414e-06,4.494236949271214e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1920,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:39,20.023534059524536,OPTIMAL,-42.66666667203015,-42.66666666625962,-5.770530719928502e-09,1.8842178928241884e-09,8.196094314750425e-14,6,"{""solver_solve_time"": 19.974756208, ""problem_class"": ""SDP""}" +1921,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:46,5.853014945983887,OPTIMAL,-42.666666408791805,-42.66666641006614,1.2743370803036669e-09,3.3836883209684965e-16,4.956901572407782e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1922,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:47,0.27846193313598633,OPTIMAL,-42.66663809919346,-42.666691827474416,5.3728280953180274e-05,3.823840598620477e-07,0.0,150,"{""solver_solve_time"": 0.228795458, ""problem_class"": ""SDP""}" +1923,cvxpy_sdpa,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:42:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1924,cvxpy_clarabel,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:44:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1925,cvxpy_cvxopt,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:46:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1926,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:47:01,5.457653045654297,OPTIMAL,-25.599995287166273,-25.599994400951143,-8.862151297250875e-07,8.066216926898107e-08,1.0420348665432626e-09,225,"{""solver_solve_time"": 2.095184666, ""problem_class"": ""SDP""}" +1927,matlab_sedumi,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:50:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1928,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:53:31,28.02113676071167,OPTIMAL (INACCURATE),-0.002033656695857644,-1.8772174263594055,1.8751837696635478,0.16647016188566816,3.539291082432821e-11,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1929,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:53:45,13.879996299743652,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.560254416, ""problem_class"": ""SOCP""}" +1930,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:00,14.256758213043213,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1931,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:16,15.138136148452759,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.636159833, ""problem_class"": ""SOCP""}" +1932,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:51,35.24684810638428,OPTIMAL,-13.012153111134214,-13.012153111134237,2.3092638912203256e-14,0.09539745847209875,5.092853585115458e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1933,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:08,16.364571809768677,OPTIMAL,-13.012270670036738,-13.012270672238593,2.20185469856915e-09,5.357543858712498e-15,1.1266917166933884e-12,17,"{""solver_solve_time"": 0.541514415, ""problem_class"": ""SOCP""}" +1934,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:26,17.51340913772583,OPTIMAL,-13.012270260650567,-13.012270457304474,1.9665390738055066e-07,7.285115451032123e-13,9.002595409515661e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1935,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:49,21.878592014312744,OPTIMAL,-13.01223863583072,-13.01220020450462,-3.843132610015232e-05,7.134210269620723e-06,1.0320214770561878e-06,20575,"{""solver_solve_time"": 6.393365458, ""problem_class"": ""SOCP""}" +1936,cvxpy_sdpa,unknown,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:57:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1937,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:58:25,35.35643529891968,OPTIMAL,-1.6289719788841075,-1.6289719808523724,1.9682648844110417e-09,6.289904981982145e-12,4.939640235768386e-13,12,"{""solver_solve_time"": 1.202414625, ""problem_class"": ""SOCP""}" +1938,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:07,41.317997217178345,OPTIMAL,-1.6289717401048371,-1.628971989187589,2.490827517576122e-07,1.2771965700046602e-09,5.012498098520504e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1939,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:48,40.14570212364197,OPTIMAL,-1.6289712152465583,-1.6289817153541597,1.0500107601396635e-05,2.121405856474299e-05,2.3664912021212606e-07,775,"{""solver_solve_time"": 0.5064915409999999, ""problem_class"": ""SOCP""}" +1940,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:49,0.1397390365600586,OPTIMAL (INACCURATE),5.9713171314052325,5.976935592929294,-0.0056184615240617575,1.08915726239491e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1941,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:51,1.4263319969177246,OPTIMAL (INACCURATE),5.966248462567837,5.966249544813763,-1.0822459266535134e-06,9.701486038460028e-07,0.0,38,"{""solver_solve_time"": 1.422955625, ""problem_class"": ""SDP""}" +1942,cvxpy_cvxopt,unknown,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:52,0.5794229507446289,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1943,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:11,18.53073477745056,OPTIMAL (INACCURATE),5.942591741517748,5.94744385187505,-0.004852110357302486,1.128928529831279e-06,0.0,100000,"{""solver_solve_time"": 18.527219582999997, ""problem_class"": ""SDP""}" +1944,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:11,0.011476993560791016,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1945,cvxpy_clarabel,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:12,0.01569819450378418,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1946,cvxpy_cvxopt,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:12,0.08118486404418945,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1947,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:16,2.8234028816223145,OPTIMAL (INACCURATE),-30.338550211015605,-30.33799946764806,-0.0005507433675440154,5.355649271250418e-06,9.237317500777047e-05,100000,"{""solver_solve_time"": 2.818600625, ""problem_class"": ""SDP""}" +1948,cvxpy_sdpa,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:04,47.52529978752136,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1949,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:31,26.76625108718872,OPTIMAL,-0.9460280973730932,-0.9460280998223545,2.4492612382687184e-09,1.956251612313512e-08,1.3360942438602618e-08,15,"{""solver_solve_time"": 0.086608874, ""problem_class"": ""SOCP""}" +1950,cvxpy_cvxopt,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:56,24.00167489051819,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1951,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:02:20,23.52648687362671,OPTIMAL,-0.9460027956114715,-0.9459981676622777,-4.627949193758418e-06,2.900046732074137e-06,1.0668505768545404e-05,475,"{""solver_solve_time"": 0.17467137500000002, ""problem_class"": ""SOCP""}" +1952,cvxpy_sdpa,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:04:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1953,cvxpy_clarabel,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:06:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1954,cvxpy_cvxopt,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:08:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1955,cvxpy_scs,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:10:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1956,cvxpy_sdpa,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:11:16,55.10064911842346,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:10:21 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:10:21 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:10:21 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:10:21 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_sdpa\n2025-08-04 00:10:21 - python_solver_runner - INFO - Solving nql180 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:10:21 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:10:21 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:10:21 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:10:21 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1957,cvxpy_clarabel,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:11:56,39.67093467712402,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:11:17 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:17 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:17 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:17 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - python_solver_runner - INFO - Solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:11:17 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:17 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:17 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1958,cvxpy_cvxopt,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:12:38,41.05316877365112,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:11:57 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:57 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:57 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:57 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - python_solver_runner - INFO - Solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:11:57 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:58 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:58 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1959,cvxpy_scs,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:13:19,40.40824317932129,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:12:39 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:12:39 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:12:39 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:12:39 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - python_solver_runner - INFO - Solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:12:39 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:12:39 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:12:39 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1960,cvxpy_sdpa,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:15:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1961,cvxpy_clarabel,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:17:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1962,cvxpy_cvxopt,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:19:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1963,cvxpy_scs,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:21:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1964,cvxpy_sdpa,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:23:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1965,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:23:21,0.8148598670959473,OPTIMAL (INACCURATE),27.33078559493936,27.33078559493853,8.313350008393172e-13,1.5053374900925652e-05,8.190909865691049e-11,27,"{""solver_solve_time"": 0.414034665, ""problem_class"": ""SOCP""}" +1966,cvxpy_cvxopt,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:25:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1967,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:26:33,70.47928071022034,OPTIMAL (INACCURATE),27.432528450175983,27.432503791282166,2.4658893817530725e-05,0.00020653158969344076,0.019105119199777195,100000,"{""solver_solve_time"": 70.04146987499999, ""problem_class"": ""SOCP""}" +1968,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:26:35,0.644899845123291,OPTIMAL,-527.8086347494122,-527.8086640471479,2.9297735636646394e-05,4.731821784136668e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1969,cvxpy_clarabel,unknown,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:28:35,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1970,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:29:31,54.69461226463318,OPTIMAL,-527.8086363538721,-527.8086363269429,-2.6929228624794632e-08,6.74571396637511e-15,3.631236069352535e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1971,cvxpy_scs,unknown,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:31:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1972,cvxpy_sdpa,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:31:50,18.875687837600708,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:31:32 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:32 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:32 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:32 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_sdpa\n2025-08-04 00:31:32 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:31:32 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:31:32 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:32 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:32 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1973,cvxpy_clarabel,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:10,19.003982067108154,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:31:51 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:51 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:51 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:51 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:31:51 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:51 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:51 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1974,cvxpy_cvxopt,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:29,19.038095712661743,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:32:10 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:10 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:10 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:10 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:32:10 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:10 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:10 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1975,cvxpy_scs,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:48,19.10547423362732,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:32:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:29 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:32:29 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:29 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:29 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1976,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:50,0.8717789649963379,OPTIMAL,-48340945.427833095,-48340945.95630214,0.5284690484404564,1.604926322373818e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1977,cvxpy_clarabel,unknown,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:34:51,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1978,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:07,15.618396282196045,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1979,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:08,0.3025782108306885,INFEASIBLE,,,,,,0,"{""solver_solve_time"": 0.098356375, ""problem_class"": ""SDP""}" +1980,cvxpy_sdpa,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:27,18.80346393585205,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:09 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:09 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:09 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_sdpa\n2025-08-04 00:35:09 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:35:09 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:35:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:09 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1981,cvxpy_clarabel,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:46,18.888890981674194,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:28 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:28 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:28 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:28 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:35:28 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:28 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:28 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1982,cvxpy_cvxopt,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:36:05,18.98634123802185,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:47 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:47 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:47 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:47 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:35:47 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:47 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:47 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1983,cvxpy_scs,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:36:24,19.028573036193848,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:36:06 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:36:06 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:36:06 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:36:06 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:36:06 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:36:06 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:36:06 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1984,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:46:41,38.031092166900635,OPTIMAL (INACCURATE),-0.10256935572921497,-0.1025694147293237,5.9000108729168055e-08,2.8997429768473637e-07,3.76033631227958e-09,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1985,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:46:58,16.312734842300415,OPTIMAL,-0.10256951121188174,-0.10256951121204069,1.589561815507068e-13,8.039548008470551e-16,2.720397466104802e-14,14,"{""solver_solve_time"": 0.434549417, ""problem_class"": ""SOCP""}" +1986,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:47:15,16.37923502922058,OPTIMAL,-0.10256950565999576,-0.10256951114752975,5.487533996650917e-09,2.6441459719661748e-11,2.0332286620010367e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1987,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:47:33,17.0360369682312,OPTIMAL,-0.10256936649935693,-0.10257104661299753,1.6801136406008332e-06,3.1910805185769294e-05,1.891547527204477e-07,950,"{""solver_solve_time"": 0.306163208, ""problem_class"": ""SOCP""}" +1988,cvxpy_sdpa,unknown,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:49:18,105.0474328994751,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1989,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:50:11,52.129913091659546,OPTIMAL,-6.496675072773684,-6.496675072817704,4.4019898837177607e-11,8.612756727893201e-10,3.714323041760762e-09,19,"{""solver_solve_time"": 0.124407211, ""problem_class"": ""SOCP""}" +1990,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:51:34,82.56687808036804,OPTIMAL,-6.496674199067025,-6.496674193174276,-5.892748511371337e-09,2.237809310520621e-09,8.622386895665068e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1991,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:52:33,58.04234218597412,OPTIMAL,-6.496662894119256,-6.496659451196209,-3.4429230471033634e-06,8.634202940522347e-08,5.405298460172423e-06,14375,"{""solver_solve_time"": 5.14132375, ""problem_class"": ""SOCP""}" +1992,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:11,37.08626198768616,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1993,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:12,0.14995408058166504,OPTIMAL (INACCURATE),26673.000976502055,26673.000976503732,-1.6771082300692797e-09,6.4391229604616e-06,1.2221958605691128e-11,29,"{""solver_solve_time"": 0.094789584, ""problem_class"": ""SOCP""}" +1994,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:35,22.904015064239502,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1995,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:54,17.85116195678711,OPTIMAL (INACCURATE),35809.49201866682,36069.131423950195,-259.63940528337844,0.6278642052360084,2013643.3276811917,100000,"{""solver_solve_time"": 17.790207541, ""problem_class"": ""SOCP""}" +1996,cvxpy_sdpa,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:55:54,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1997,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:55:55,0.3930230140686035,OPTIMAL (INACCURATE),181889.9302235155,181889.93017808485,4.543064278550446e-05,0.20507020561906186,1.6535033732446265e-07,30,"{""solver_solve_time"": 0.211994998, ""problem_class"": ""SOCP""}" +1998,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:57:36,99.64534091949463,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1999,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:58:14,37.75173091888428,UNBOUNDED (INACCURATE),,,,,,100000,"{""solver_solve_time"": 37.5636215, ""problem_class"": ""SOCP""}" +2000,cvxpy_sdpa,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:00:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2001,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:00:16,0.9231948852539062,OPTIMAL (INACCURATE),717367.9694302354,717367.9693405145,8.972093928605318e-05,0.4553377125041338,1.7972121515951058e-07,29,"{""solver_solve_time"": 0.389974875, ""problem_class"": ""SOCP""}" +2002,cvxpy_cvxopt,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:02:16,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2003,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:03:26,69.41161584854126,OPTIMAL (INACCURATE),1426694.15480458,1426060.9124832153,633.2423213645816,4.495169240132521,668608.3395679782,100000,"{""solver_solve_time"": 68.767482125, ""problem_class"": ""SOCP""}" +2004,cvxpy_sdpa,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:05:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2005,cvxpy_clarabel,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:05:31,3.713930130004883,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +2006,cvxpy_cvxopt,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:07:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2007,cvxpy_scs,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:09:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2008,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:10:57,84.66230511665344,OPTIMAL (INACCURATE),7.852038526235663,7.852043972235164,-5.445999500253151e-06,1.669993096788863e-08,4.0060306334744484e-07,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2009,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:10:58,0.14790773391723633,OPTIMAL (INACCURATE),7.852038439863746,7.852038439863737,8.881784197001252e-15,5.942633532349437e-09,3.1698625599395943e-13,26,"{""solver_solve_time"": 0.096584246, ""problem_class"": ""SOCP""}" +2010,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:11:26,27.336299896240234,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +2011,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:11:45,18.689378023147583,OPTIMAL (INACCURATE),7.852068168748205,7.852068714033491,-5.452852862575241e-07,1.3471978048109906e-08,0.00038825804604077893,100000,"{""solver_solve_time"": 18.631857583000002, ""problem_class"": ""SOCP""}" +2012,cvxpy_sdpa,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:13:45,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2013,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:13:46,0.39348578453063965,OPTIMAL,67.16503110771706,67.16503110770685,1.0203393685515039e-11,1.3166341677133402e-05,3.192143596063497e-10,28,"{""solver_solve_time"": 0.238405125, ""problem_class"": ""SOCP""}" +2014,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:15:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2015,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:16:27,39.494370222091675,OPTIMAL (INACCURATE),67.19515680638824,67.19509878640596,5.80199822763916e-05,9.115696547595488e-06,0.013741283267092997,100000,"{""solver_solve_time"": 39.319873583, ""problem_class"": ""SOCP""}" +2016,cvxpy_sdpa,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:18:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2017,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:18:32,3.063275098800659,OPTIMAL (INACCURATE),51.81196102828225,51.81196102828078,1.4708234630234074e-12,4.858747047888998e-06,2.8373054115952637e-11,27,"{""solver_solve_time"": 1.077499788, ""problem_class"": ""SOCP""}" +2018,cvxpy_cvxopt,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:20:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2019,cvxpy_scs,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:22:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2020,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:30:32,0.425091028213501,OPTIMAL (INACCURATE),132.63530797336855,132.6353098328787,-1.8595101494156552e-06,2.976961436986348e-06,6.742415211712427e-08,19,"{""solver_solve_time"": 0.383599374, ""problem_class"": ""SDP""}" +2021,matlab_sedumi,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:33:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2022,matlab_sedumi,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:36:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2023,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:39:45,0.4165680408477783,OPTIMAL,44.94355314399055,44.943550479204376,2.6647861730566547e-06,2.1521573192501864e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2024,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:10,24.420432090759277,OPTIMAL,44.94352143580459,44.943521202203435,2.3360115619652788e-07,2.5595494078020857e-08,1.5712483353179885e-09,26,"{""solver_solve_time"": 24.409408122, ""problem_class"": ""SDP""}" +2025,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:12,1.319443941116333,OPTIMAL,44.943516455354754,44.94351577687856,6.784761907852044e-07,6.165359139962672e-08,2.922917563468684e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2026,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:33,20.59488797187805,OPTIMAL,44.943699547453214,44.94369974548657,-1.9803335504775532e-07,8.108289283382372e-07,1.6016297568809636e-06,19450,"{""solver_solve_time"": 20.583261750000002, ""problem_class"": ""SDP""}" +2027,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:34,0.6313779354095459,OPTIMAL (INACCURATE),7.343079595579098,7.343076185089177,3.4104899215847695e-06,2.927273492503322e-06,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2028,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:41:48,73.53240489959717,OPTIMAL,7.343057048260827,7.343056996265297,5.199553054779926e-08,1.2959915647658356e-08,2.9534277759680858e-09,30,"{""solver_solve_time"": 73.514996203, ""problem_class"": ""SDP""}" +2029,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:41:52,2.941185235977173,OPTIMAL,7.343069474100868,7.343069487135349,-1.3034481050056002e-08,5.133479828232705e-09,7.610058312761891e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2030,cvxpy_scs,unknown,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:43:52,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2031,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:43:53,0.614959716796875,OPTIMAL,46.8622983506127,46.862295004806455,3.345806241839e-06,1.373933037186379e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2032,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:45:03,69.69699668884277,OPTIMAL,46.862264832079795,46.86226449534972,3.3673007493462137e-07,2.5135826306059297e-08,8.998138869898386e-10,28,"{""solver_solve_time"": 69.679521045, ""problem_class"": ""SDP""}" +2033,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:45:06,2.4338388442993164,OPTIMAL,46.86227168740106,46.86227113257759,5.548234724983558e-07,4.6663936113070845e-08,2.3688111053568684e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2034,cvxpy_scs,unknown,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:47:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2035,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:47:08,0.6218161582946777,OPTIMAL,153.01412733964798,153.01412720660855,1.33039435468163e-07,8.311483119261992e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2036,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:48:14,66.16559410095215,OPTIMAL,153.01408663697256,153.01408542136193,1.2156106379279663e-06,5.2151548589389365e-08,8.00066489003644e-10,27,"{""solver_solve_time"": 66.147987458, ""problem_class"": ""SDP""}" +2037,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:48:17,2.3794949054718018,OPTIMAL,153.01408360362933,153.01408174526287,1.8583664598281757e-06,6.848434744436384e-08,1.717152917121848e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2038,cvxpy_scs,unknown,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:50:17,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2039,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:50:18,0.6177799701690674,OPTIMAL,418.9876329576085,418.987623002338,9.955270513728465e-06,1.1983390832123164e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2040,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:51:54,95.07492804527283,OPTIMAL,418.9875424590275,418.9875415105999,9.484276120019786e-07,4.418241810753433e-08,1.0871892833263688e-09,32,"{""solver_solve_time"": 95.058631418, ""problem_class"": ""SDP""}" +2041,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:51:58,2.832003116607666,OPTIMAL,418.98746606964215,418.98746467361104,1.3960311093796918e-06,3.372914105987499e-08,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2042,cvxpy_scs,unknown,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:53:58,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2043,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:54:01,2.738187074661255,OPTIMAL (INACCURATE),15.446607847213254,15.44490872745331,0.001699119759944523,2.093336410893669e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2044,cvxpy_clarabel,unknown,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:56:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2045,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:56:18,14.727091073989868,OPTIMAL,15.444900580063722,15.444900197302442,3.827612804485625e-07,3.879457797449652e-08,3.257714081782618e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2046,cvxpy_scs,unknown,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:58:18,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2047,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:58:21,2.771937131881714,OPTIMAL,81.86896145123242,81.86895868580729,2.765425136885824e-06,4.495223038672261e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2048,cvxpy_clarabel,unknown,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:00:23,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2049,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:00:39,15.732684135437012,OPTIMAL,81.86892758846523,81.86892640326104,1.1852041836846183e-06,6.319784139238923e-08,2.534971057205083e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2050,cvxpy_scs,unknown,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:02:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2051,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:02:43,2.7531580924987793,OPTIMAL,303.5393343673693,303.5393239344627,1.0432906606183678e-05,3.293294155188434e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2052,cvxpy_clarabel,unknown,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:04:44,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2053,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:04:59,14.465261220932007,OPTIMAL,303.5392513049725,303.53924845771263,2.8472598501139146e-06,7.080286602904634e-08,8.487394573341143e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2054,cvxpy_scs,unknown,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:06:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2055,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:07:03,2.731801986694336,OPTIMAL,747.3283200675708,747.3283086121074,1.1455463322818105e-05,2.765810017928616e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2056,cvxpy_clarabel,unknown,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:09:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2057,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:09:20,14.835282802581787,OPTIMAL,747.328215683326,747.3282126610573,3.022268742824963e-06,4.0097982702259803e-08,1.144431183059174e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2058,cvxpy_scs,unknown,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:11:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2059,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:11:36,14.758704900741577,OPTIMAL,25.32054457240321,25.320543492733886,1.079669324610677e-06,1.3074092923281278e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2060,cvxpy_clarabel,unknown,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:12:04,28.537490129470825,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:11:36 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:11:36 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:11:36 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:11:36 - python_solver_runner - INFO - Subprocess solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - python_solver_runner - INFO - Solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:11:36 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-1.dat-s\n2025-08-04 22:11:36 - dat_loader - INFO - Converted gpp500-1: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:11:36 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-1', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2061,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:14:04,117.96824312210083,OPTIMAL,25.320526674810647,25.32052637938557,2.954250781783685e-07,2.1919175642173723e-08,8.274734152904314e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2062,cvxpy_scs,unknown,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2063,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:20,14.896263122558594,OPTIMAL (INACCURATE),156.06044168820128,156.06038737307432,5.431512695963647e-05,9.95614195158524e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2064,cvxpy_clarabel,unknown,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:49,28.745557069778442,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:16:20 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:16:20 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:16:20 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:16:20 - python_solver_runner - INFO - Subprocess solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - python_solver_runner - INFO - Solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:16:20 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-2.dat-s\n2025-08-04 22:16:20 - dat_loader - INFO - Converted gpp500-2: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:16:20 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-2', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2065,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:18:44,114.04924011230469,OPTIMAL,156.06035666172633,156.06035552858836,1.133137971010001e-06,4.103628736945596e-08,8.100882058962239e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2066,cvxpy_scs,unknown,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:20:44,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2067,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:21:00,14.947671175003052,OPTIMAL,513.0176116916346,513.0176020214957,9.670138865658373e-06,1.7217391148694617e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2068,cvxpy_clarabel,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:21:32,30.809092044830322,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:21:01 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:21:01 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:21:01 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:21:01 - python_solver_runner - INFO - Subprocess solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - python_solver_runner - INFO - Solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:21:01 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-3.dat-s\n2025-08-04 22:21:01 - dat_loader - INFO - Converted gpp500-3: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:21:01 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-3', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2069,cvxpy_cvxopt,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:23:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2070,cvxpy_scs,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:25:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2071,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:25:48,15.022250890731812,OPTIMAL,1567.0188583796264,1567.0187909110516,6.746857479811297e-05,7.443909590382624e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2072,cvxpy_clarabel,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:26:19,30.212826013565063,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:25:49 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:25:49 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:25:49 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:25:49 - python_solver_runner - INFO - Subprocess solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - python_solver_runner - INFO - Solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:25:49 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-4.dat-s\n2025-08-04 22:25:49 - dat_loader - INFO - Converted gpp500-4: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:25:49 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-4', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2073,cvxpy_cvxopt,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:28:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2074,cvxpy_scs,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:30:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2075,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:56,0.14781689643859863,OPTIMAL,132.6356794538592,132.63567502877504,4.425084171089111e-06,6.293316373095602e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2076,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:57,0.4208559989929199,OPTIMAL (INACCURATE),132.63530797336855,132.6353098328787,-1.8595101494156552e-06,2.976961436986348e-06,6.742415211712427e-08,19,"{""solver_solve_time"": 0.380134749, ""problem_class"": ""SDP""}" +2077,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:59,1.182116985321045,OPTIMAL,132.63567622801477,132.63567623702812,-9.013348289954592e-09,1.4353448618618097e-08,3.018302548232494e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2078,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:22,22.059240341186523,OPTIMAL,132.67032214278458,132.67032627913713,-4.136352544037436e-06,2.4188989473182798e-06,0.0024103317967444286,83675,"{""solver_solve_time"": 22.017944333, ""problem_class"": ""SDP""}" +2079,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:23,0.6237318515777588,OPTIMAL,133.11459453047246,133.11459273039674,1.8000757222580432e-06,1.4560143550748557e-10,2.0041502554605766e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2080,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:30,7.1672890186309814,OPTIMAL,133.11452300392386,133.1145231602386,-1.5631474070687545e-07,5.880442946566506e-07,2.416827226267145e-08,20,"{""solver_solve_time"": 7.025535836, ""problem_class"": ""SDP""}" +2081,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:35,4.457964658737183,OPTIMAL,133.11458873614384,133.11458873454836,1.5954810805851594e-09,5.1857958079351704e-09,9.454734908598581e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2082,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:50:55,78.73915386199951,OPTIMAL,133.206421971091,133.2064255039062,-3.532815185280924e-06,1.809776268177368e-06,0.0026429235860219477,90650,"{""solver_solve_time"": 78.591124291, ""problem_class"": ""SDP""}" +2083,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:08,3.568632125854492,OPTIMAL,-0.566517267707974,-0.5665172734748258,5.766851884914104e-09,6.702895394246997e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2084,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:17,8.200895071029663,OPTIMAL,-0.5665172821147114,-0.5665172817725594,-3.421519734203571e-10,1.022967781834959e-07,0.0,22,"{""solver_solve_time"": 5.049194498, ""problem_class"": ""SDP""}" +2085,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:27,9.065042972564697,OPTIMAL,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2086,cvxpy_scs,unknown,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2087,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:31,3.9591081142425537,OPTIMAL (INACCURATE),-0.6715149919393316,-0.6715154519149769,4.599756452394743e-07,9.880028136196605e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2088,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:37,5.3541259765625,OPTIMAL,-0.6715154099679571,-0.6715154097625702,-2.0538692968585792e-10,3.512925202723288e-08,0.0,24,"{""solver_solve_time"": 2.193572249, ""problem_class"": ""SDP""}" +2089,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:46,7.850555181503296,OPTIMAL,-0.6715154087273556,-0.6715154086542251,-7.313050165436152e-11,1.1755370688932572e-08,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2090,cvxpy_scs,unknown,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2091,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:50,3.6847190856933594,OPTIMAL (INACCURATE),-0.9726272676562057,-0.9726274431143305,1.7545812480701528e-07,6.41651460356969e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2092,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:56,4.968804836273193,OPTIMAL,-0.9726274329610303,-0.9726274322104886,-7.505416288466904e-10,1.1813692812382962e-07,0.0,20,"{""solver_solve_time"": 1.834995457, ""problem_class"": ""SDP""}" +2093,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:59:04,7.285048723220825,OPTIMAL,-0.9726274304903915,-0.9726274299150273,-5.753642007277904e-10,7.421682204955683e-08,2.5603242314031326e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2094,cvxpy_scs,unknown,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2095,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:08,3.7701759338378906,OPTIMAL (INACCURATE),-7.056979925817409,-7.056980053305484,1.2748807520779337e-07,1.428558638956882e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2096,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:14,5.1614251136779785,OPTIMAL,-7.056985719383242,-7.0569856944182865,-2.4964955436246328e-08,2.7109763353502106e-06,0.0,24,"{""solver_solve_time"": 2.099254042, ""problem_class"": ""SDP""}" +2097,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:23,8.174963235855103,OPTIMAL,-7.056980177129674,-7.056980175019456,-2.1102177782950093e-09,8.034408651651353e-08,1.259191489724154e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2098,cvxpy_scs,unknown,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:23,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2099,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:23,0.011425018310546875,OPTIMAL,-17.78462618700244,-17.784627142638215,9.556357731810294e-07,1.9992999166489883e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2100,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:24,0.014528989791870117,OPTIMAL,-18.057693540129556,-18.05769338831607,-1.5181348445025833e-07,0.02414985830941088,0.0,56,"{""solver_solve_time"": 0.011800501, ""problem_class"": ""SDP""}" +2101,cvxpy_cvxopt,unknown,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:24,0.16407227516174316,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2102,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:26,0.9191200733184814,OPTIMAL (INACCURATE),-0.002878232961825694,-20.48065620588266,20.477777972920833,0.27819661314555105,546368.1134344704,100000,"{""solver_solve_time"": 0.915902708, ""problem_class"": ""SDP""}" +2103,cvxpy_sdpa,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:27,1.0839791297912598,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2104,cvxpy_clarabel,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:28,1.0812201499938965,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2105,cvxpy_cvxopt,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:30,1.0752131938934326,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2106,cvxpy_scs,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:31,1.0642778873443604,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2107,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:45,12.59275507926941,OPTIMAL,-4006.255355989173,-4006.255524702168,0.0001687129947640642,2.0941798250870906e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2108,cvxpy_clarabel,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:05:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2109,cvxpy_cvxopt,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:07:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2110,cvxpy_scs,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2111,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:48,0.034883737564086914,OPTIMAL,-226.15734786394398,-226.15735172707906,3.863135077608604e-06,3.0968379547604032e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2112,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:49,0.2541928291320801,OPTIMAL,-226.15735056371446,-226.15735056120263,-2.511825414330815e-09,4.677724965457351e-16,8.809188623572417e-11,11,"{""solver_solve_time"": 0.246065042, ""problem_class"": ""SDP""}" +2113,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:50,0.5887832641601562,OPTIMAL,-226.15734160717605,-226.15734155551763,-5.165841798770998e-08,6.202424795825198e-14,8.902537162396245e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2114,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:52,1.3103270530700684,OPTIMAL,-226.15643832070722,-226.15570990174183,-0.0007284189653944395,4.9409478283232725e-06,2.408292278682985e-07,1125,"{""solver_solve_time"": 1.302447541, ""problem_class"": ""SDP""}" +2115,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:52,0.050338029861450195,OPTIMAL,-141.99047575527533,-141.99047735177834,1.596503011569439e-06,3.982608286351293e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2116,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:53,0.032792091369628906,OPTIMAL,-141.99047689078066,-141.99047689026875,-5.119034085510066e-10,4.156174261174552e-15,4.199415289446605e-11,12,"{""solver_solve_time"": 0.020084, ""problem_class"": ""SDP""}" +2117,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:55,1.1706581115722656,OPTIMAL,-141.9904749593561,-141.99047495055282,-8.803283435554476e-09,2.2453515911417613e-13,4.542127396475113e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2118,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:03,8.35070276260376,OPTIMAL,-141.98813786178076,-141.9875838883371,-0.0005539734436581512,2.8267894549544556e-06,3.83990291112102e-06,4350,"{""solver_solve_time"": 8.337701958, ""problem_class"": ""SDP""}" +2119,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:04,0.04748392105102539,OPTIMAL,-269.8801629227768,-269.88017132963336,8.406856579767918e-06,9.623806008572918e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2120,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:05,0.5691618919372559,OPTIMAL,-269.88016869497824,-269.8801686913607,-3.617515176301822e-09,3.335139604959785e-16,1.370718634958635e-10,11,"{""solver_solve_time"": 0.556317127, ""problem_class"": ""SDP""}" +2121,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:07,1.1793420314788818,OPTIMAL,-269.8801659941921,-269.88016597458284,-1.960927420441294e-08,1.8302081584984527e-14,3.1844196366459363e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2122,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:10,2.415357828140259,OPTIMAL,-269.8801469917551,-269.8801394704992,-7.521255895426293e-06,1.4821257835891417e-06,1.0745562097345573e-07,1225,"{""solver_solve_time"": 2.4024067909999998, ""problem_class"": ""SDP""}" +2123,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:10,0.047016143798828125,OPTIMAL,-467.7501026865027,-467.7501156367352,1.295023247394056e-05,3.1265375769840824e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2124,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:14,3.524592161178589,OPTIMAL,-467.7501129260428,-467.75011292377854,-2.2642439034825657e-09,2.2015867814748726e-15,2.7290545959913828e-11,14,"{""solver_solve_time"": 3.5117294599999997, ""problem_class"": ""SDP""}" +2125,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:16,1.080678939819336,OPTIMAL,-467.75010646690146,-467.75010642794496,-3.895650024787756e-08,5.9965206332123494e-15,1.5401225413839454e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2126,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:18,1.1609041690826416,OPTIMAL,-467.7502234039853,-467.74997043188023,-0.0002529721050450462,4.1773529864416556e-07,4.656553667450933e-08,575,"{""solver_solve_time"": 1.148141541, ""problem_class"": ""SDP""}" +2127,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:18,0.046462059020996094,OPTIMAL,-864.4118465739052,-864.4118653239351,1.875002988072083e-05,2.057078025751857e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2128,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:31,11.987443208694458,OPTIMAL,-864.4118587839267,-864.4118587756075,-8.319261723954696e-09,9.469259058323655e-15,2.5070234017971762e-11,12,"{""solver_solve_time"": 11.974252711, ""problem_class"": ""SDP""}" +2129,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:32,1.1041698455810547,OPTIMAL,-864.4118513258304,-864.4118512580925,-6.773791483283276e-08,1.6350918002647319e-13,6.087262225582329e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2130,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:33,0.46433019638061523,OPTIMAL,-864.4118977179496,-864.4096336193913,-0.0022640985582711437,7.582685087510616e-07,8.068776913131342e-08,225,"{""solver_solve_time"": 0.45122058299999995, ""problem_class"": ""SDP""}" +2131,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:34,0.16768622398376465,OPTIMAL,-317.2643237878996,-317.26434282949464,1.904159501009417e-05,3.133245307540807e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2132,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:35,0.24130702018737793,OPTIMAL,-317.2643396559851,-317.26433965517947,-8.05641775514232e-10,2.317503143690089e-15,3.2364647886398265e-11,12,"{""solver_solve_time"": 0.163966999, ""problem_class"": ""SDP""}" +2133,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:42,6.18490195274353,OPTIMAL,-317.2643357289886,-317.26433571943585,-9.55276391323423e-09,3.452429205651864e-14,2.289855858365093e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2134,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:47,65.18666386604309,OPTIMAL,-317.26334217587544,-317.26018290170634,-0.003159274169092896,1.3145309316250677e-06,1.0170101910506083e-06,6025,"{""solver_solve_time"": 65.107815083, ""problem_class"": ""SDP""}" +2135,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:49,0.9686660766601562,OPTIMAL,-531.9300419847027,-531.9300864211093,4.4436406597014866e-05,7.856532362095457e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2136,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:55,5.162637710571289,OPTIMAL,-531.9300813566422,-531.9300813543795,-2.262709131173324e-09,8.227473646636106e-16,5.305261841984453e-11,11,"{""solver_solve_time"": 5.084504, ""problem_class"": ""SDP""}" +2137,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:12:01,5.5707409381866455,OPTIMAL,-531.9300725932821,-531.930072569,-2.4282144295284525e-08,8.040295993778045e-14,2.329819847105128e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2138,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:13:27,85.80190420150757,OPTIMAL,-531.9296665702215,-531.9243902498758,-0.005276320345615204,3.5097864358050385e-07,4.608231670735556e-07,6725,"{""solver_solve_time"": 85.723657208, ""problem_class"": ""SDP""}" +2139,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:13:29,0.9742119312286377,OPTIMAL,-981.1725284770389,-981.1725736916305,4.5214591636977275e-05,2.9884877512057914e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2140,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:14:59,89.82528376579285,OPTIMAL,-981.172560450884,-981.172560441928,-8.956021702033468e-09,5.576649407633878e-15,6.758930441182268e-11,13,"{""solver_solve_time"": 89.744985665, ""problem_class"": ""SDP""}" +2141,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:06,5.910895109176636,OPTIMAL,-981.1725575157805,-981.1725574810541,-3.4726326703093946e-08,1.1304565496294368e-14,8.0190851099525e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2142,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:31,24.193409204483032,OPTIMAL,-981.1715863618699,-981.1618374757425,-0.00974888612745417,9.84883038240223e-08,3.305222499689065e-07,1875,"{""solver_solve_time"": 24.105715125, ""problem_class"": ""SDP""}" +2143,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:31,0.17056798934936523,OPTIMAL,-1681.960022233755,-1681.960115536573,9.330281818620279e-05,6.498259333050908e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2144,cvxpy_clarabel,unknown,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:17:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2145,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:17:39,5.564814805984497,OPTIMAL,-1681.960048879275,-1681.9600487093676,-1.6990748008538503e-07,2.788764812335165e-14,1.0652363569467362e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2146,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:01,22.179195880889893,OPTIMAL,-1681.9584387566933,-1681.953564698473,-0.004874058220366351,2.0180126454384416e-06,2.1737788103100266e-08,1625,"{""solver_solve_time"": 22.0992225, ""problem_class"": ""SDP""}" +2147,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:04,2.33392596244812,OPTIMAL,-598.1485095041485,-598.1485189328429,9.428694397684012e-06,2.5921330521074135e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2148,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:07,1.623703956604004,OPTIMAL,-598.1485156509422,-598.1485156502104,-7.318021744140424e-10,1.0279534041409784e-15,1.8856686824865825e-11,12,"{""solver_solve_time"": 1.075159208, ""problem_class"": ""SDP""}" +2149,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:57,49.235872983932495,OPTIMAL,-598.1484980478649,-598.148498028111,-1.9753883861994836e-08,6.9727808859637596e-15,3.076456407970078e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2150,cvxpy_scs,unknown,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:20:57,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2151,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:21:00,2.8333511352539062,OPTIMAL,-1070.056746962311,-1070.0567665649662,1.9602655129347113e-05,3.271071190322263e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2152,cvxpy_clarabel,unknown,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:23:01,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2153,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:23:55,53.50329923629761,OPTIMAL,-1070.0567589595314,-1070.0567589516327,-7.898734111222439e-09,2.7488754243134703e-13,3.8483116375688007e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2154,cvxpy_scs,unknown,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:25:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2155,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:25:57,0.9246599674224854,OPTIMAL,-1847.9699810333868,-1847.970022451066,4.1417679085498094e-05,1.1936389203813294e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2156,cvxpy_clarabel,unknown,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:27:58,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2157,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:28:53,53.33316898345947,OPTIMAL,-1847.9699944022154,-1847.9699943694136,-3.280183591414243e-08,1.6551577809205618e-14,4.792848030985146e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2158,cvxpy_scs,unknown,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:30:53,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2159,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:30:55,1.1287381649017334,OPTIMAL,-3566.7380109438227,-3566.7380522800404,4.133621769142337e-05,3.097610455579781e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2160,cvxpy_clarabel,unknown,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:32:56,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2161,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:33:38,40.44312405586243,OPTIMAL,-3566.7379833165146,-3566.737983223862,-9.265249900636263e-08,7.472516046203045e-13,2.8114690795223104e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2162,cvxpy_scs,unknown,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2163,cvxpy_sdpa,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:39,0.9359021186828613,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2164,cvxpy_clarabel,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:40,0.9329919815063477,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2165,cvxpy_cvxopt,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:41,0.9212636947631836,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2166,cvxpy_scs,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:43,0.9268250465393066,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2167,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:46,2.17305588722229,OPTIMAL,-50.32122092262562,-50.321222056603794,1.1339781735841825e-06,4.166852070171613e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2168,cvxpy_clarabel,unknown,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:37:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2169,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:18,29.595786094665527,OPTIMAL,-50.3212217910097,-50.32122179111797,1.0827250207512407e-10,1.0777758760552207e-13,1.9701297898894425e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2170,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:22,2.66982102394104,OPTIMAL,-50.32166114881474,-50.32153115885043,-0.0001299899643072422,2.9254331569073637e-06,9.944532731845678e-08,325,"{""solver_solve_time"": 2.3345363750000003, ""problem_class"": ""SDP""}" +2171,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:29,5.290843963623047,OPTIMAL,-57.232306113340115,-57.232307531112916,1.4177728004938217e-06,2.248221894866901e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2172,cvxpy_clarabel,unknown,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:40:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2173,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:45,73.00050282478333,OPTIMAL,-57.23230661497225,-57.23230661531533,3.4307845453440677e-10,9.587709927591261e-14,6.076045292986302e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2174,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:52,5.0073630809783936,OPTIMAL,-57.23240759320841,-57.23245003631919,4.24431107859391e-05,4.5962074213473126e-07,9.261089404552817e-08,325,"{""solver_solve_time"": 4.229581583, ""problem_class"": ""SDP""}" +2175,cvxpy_sdpa,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:54,1.5419859886169434,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2176,cvxpy_clarabel,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:57,1.5410659313201904,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2177,cvxpy_cvxopt,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:42:00,1.529308795928955,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2178,cvxpy_scs,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:42:02,1.5386550426483154,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2179,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:51,0.03551793098449707,OPTIMAL,-8.299999482545115,-8.300000044307849,5.617627341081288e-07,1.6670044255637843e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2180,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:51,0.050559043884277344,OPTIMAL,-8.30000052797604,-8.300000490399094,-3.7576945999262534e-08,1.0799058809794016e-07,0.0,25,"{""solver_solve_time"": 0.046177288, ""problem_class"": ""SDP""}" +2181,cvxpy_cvxopt,unknown,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:52,0.16975116729736328,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2182,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:57,4.875208854675293,OPTIMAL (INACCURATE),-0.0019666666133589523,-1.6631072323702496,1.6611405657568907,0.166111590183817,16899.147636217396,100000,"{""solver_solve_time"": 4.870198625, ""problem_class"": ""SDP""}" +2183,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:58,0.16129589080810547,OPTIMAL (INACCURATE),-13.633263748445593,-13.633266893655158,3.1452095647921396e-06,6.364345948755367e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2184,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:59,0.23012804985046387,OPTIMAL,-13.633267734899809,-13.633267702679126,-3.2220683010564244e-08,2.693486524788012e-07,0.0,29,"{""solver_solve_time"": 0.221856126, ""problem_class"": ""SDP""}" +2185,cvxpy_cvxopt,unknown,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:00,0.34781694412231445,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2186,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:14,14.100239038467407,OPTIMAL (INACCURATE),-0.037735833422812004,-0.27289208768706114,0.23515625426424913,0.13917932877951675,1893.5597441188274,100000,"{""solver_solve_time"": 14.090095958, ""problem_class"": ""SDP""}" +2187,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:15,0.33644914627075195,OPTIMAL (INACCURATE),-19.79422577234397,-19.7942315506204,5.778276428003437e-06,1.3327565863841907e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2188,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:17,0.8590762615203857,OPTIMAL,-19.79423318506499,-19.79423315316147,-3.190351804960301e-08,5.103843191955561e-07,5.641713395479458e-08,32,"{""solver_solve_time"": 0.841925412, ""problem_class"": ""SDP""}" +2189,cvxpy_cvxopt,unknown,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:19,1.2682511806488037,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2190,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:48,28.04506778717041,OPTIMAL (INACCURATE),-0.002563905576329976,-2.112935527155603,2.110371621579273,0.11510210278659297,14854.924304999919,100000,"{""solver_solve_time"": 28.022136791, ""problem_class"": ""SDP""}" +2191,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:49,0.6715381145477295,OPTIMAL (INACCURATE),-16.883575406676048,-16.883604992850316,2.9586174267848264e-05,2.7521358841549283e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2192,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:52,2.263176918029785,OPTIMAL,-16.88364881340114,-16.883648809313648,-4.087493010729304e-09,5.620802961416378e-07,5.697256261448682e-09,35,"{""solver_solve_time"": 2.230729789, ""problem_class"": ""SDP""}" +2193,cvxpy_cvxopt,unknown,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:55,2.0964319705963135,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2194,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:49,53.70480513572693,OPTIMAL (INACCURATE),-0.17807903005516243,-0.23275478696713833,0.054675756911975903,0.09362750982167806,369.6736319443367,100000,"{""solver_solve_time"": 53.657073791, ""problem_class"": ""SDP""}" +2195,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:51,1.3168079853057861,OPTIMAL (INACCURATE),-37.30434823321163,-37.30443772697064,8.94937590132372e-05,2.9293219588294305e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2196,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:58,5.672824859619141,OPTIMAL,-37.3044718247362,-37.30447181818093,-6.5552683281566715e-09,1.4634649666883939e-06,3.059050321188013e-06,42,"{""solver_solve_time"": 5.614913959, ""problem_class"": ""SDP""}" +2197,cvxpy_cvxopt,unknown,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:48:03,4.2641379833221436,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2198,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:36,91.90722298622131,OPTIMAL (INACCURATE),-0.5214729254574336,-1.0154678495708611,0.4939949241134275,0.08196294538901851,3266.178827189497,100000,"{""solver_solve_time"": 91.81093475, ""problem_class"": ""SDP""}" +2199,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:40,2.504279851913452,OPTIMAL (INACCURATE),-20.625054215291936,-20.625079174008114,2.4958716178247187e-05,7.626469959925607e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2200,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:51,10.41468095779419,OPTIMAL,-20.625077113896168,-20.625077105250966,-8.64520188770257e-09,6.579981870625703e-07,2.3499840470621547e-07,39,"{""solver_solve_time"": 10.31394521, ""problem_class"": ""SDP""}" +2201,cvxpy_cvxopt,unknown,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:50:00,8.096139907836914,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2202,cvxpy_scs,unknown,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:00,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2203,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:06,4.015629053115845,OPTIMAL (INACCURATE),-20.286315458750884,-20.286372440169522,5.698141863774708e-05,2.99146677629299e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2204,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:26,19.301553964614868,OPTIMAL,-20.2863714283772,-20.286371308207375,-1.201698260899775e-07,5.539607872665644e-07,1.4511474711248118e-07,40,"{""solver_solve_time"": 19.143677041, ""problem_class"": ""SDP""}" +2205,cvxpy_cvxopt,unknown,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:40,11.985829830169678,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2206,cvxpy_scs,unknown,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:54:40,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2207,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:54:48,6.55282998085022,OPTIMAL (INACCURATE),-14.67540228481323,-14.675431392929916,2.910811668499491e-05,1.4589427065347405e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2208,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:55:19,29.263099193572998,OPTIMAL,-14.675430563285023,-14.675430500128785,-6.315623757302546e-08,1.0734959395341116e-06,0.0,35,"{""solver_solve_time"": 29.023103417, ""problem_class"": ""SDP""}" +2209,cvxpy_cvxopt,unknown,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:55:39,18.054994821548462,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2210,cvxpy_scs,unknown,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:57:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2211,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:57:53,11.582292795181274,OPTIMAL (INACCURATE),-38.532875373216974,-38.53307092893413,0.00019555571715557107,2.813485631313094e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2212,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:58:53,58.74322485923767,OPTIMAL,-38.53310978438966,-38.53310974843417,-3.5955487476257986e-08,1.3387459817271676e-06,3.600325513296991e-11,44,"{""solver_solve_time"": 58.39190925, ""problem_class"": ""SDP""}" +2213,cvxpy_cvxopt,unknown,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:59:27,31.417057037353516,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2214,cvxpy_scs,unknown,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:01:28,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2215,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:01:48,17.948111295700073,OPTIMAL (INACCURATE),-31.95851149383577,-31.95870615260608,0.000194658770311662,1.7090596773415e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2216,cvxpy_clarabel,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:03:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2217,cvxpy_cvxopt,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:04:35,43.228622913360596,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2218,cvxpy_scs,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:06:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2219,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:07:28,50.860018253326416,OPTIMAL,-629.1552658005733,-629.1552929633996,2.716282631354261e-05,2.369371882908525e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2220,cvxpy_clarabel,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:08:01,32.29365611076355,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 00:07:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:07:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:07:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:07:29 - python_solver_runner - INFO - Subprocess solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - python_solver_runner - INFO - Solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:07:29 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG11.dat-s\n2025-08-05 00:07:29 - dat_loader - INFO - Converted equalG11: SDP problem (641601 vars, 801 constraints)\n2025-08-05 00:07:29 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG11', class='SDP', 641601 vars, 801 constraints)"", ""problem_class"": ""SDP""}" +2221,cvxpy_cvxopt,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:10:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2222,cvxpy_scs,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:12:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2223,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:13:43,98.00020503997803,OPTIMAL,-4005.6011905473815,-4005.6013169406397,0.00012639325814234326,7.832639830764701e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2224,cvxpy_clarabel,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:14:20,36.03781485557556,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 00:13:43 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:13:43 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:13:43 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:13:43 - python_solver_runner - INFO - Subprocess solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - python_solver_runner - INFO - Solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:13:43 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG51.dat-s\n2025-08-05 00:13:44 - dat_loader - INFO - Converted equalG51: SDP problem (1002001 vars, 1001 constraints)\n2025-08-05 00:13:44 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG51', class='SDP', 1002001 vars, 1001 constraints)"", ""problem_class"": ""SDP""}" +2225,cvxpy_cvxopt,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:16:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2226,cvxpy_scs,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2227,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:22,0.008648872375488281,OPTIMAL (INACCURATE),-56.946017137117806,-56.94340849281433,-0.0026086443034785134,1.9356932179028497e-06,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2228,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:22,0.0054168701171875,OPTIMAL,-56.95458417169877,-56.954584100815666,-7.088310383096541e-08,1.2182104934532567e-06,1.935530761916017e-08,21,"{""solver_solve_time"": 0.00223204, ""problem_class"": ""SDP""}" +2229,cvxpy_cvxopt,unknown,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:23,0.04180288314819336,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +2230,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:23,0.05362105369567871,OPTIMAL,-56.95290556196835,-56.95257093437306,-0.00033462759529356845,4.360158022165924e-06,9.60043824422556e-06,7875,"{""solver_solve_time"": 0.050502125, ""problem_class"": ""SDP""}" +2231,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:36,10.462555885314941,OPTIMAL,-63.477086010464404,-63.47708753548431,1.5250199041361157e-06,1.2905179494861903e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2232,cvxpy_clarabel,unknown,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:20:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2233,cvxpy_cvxopt,unknown,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:22:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2234,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:22:49,8.415114879608154,OPTIMAL,-63.477143052691204,-63.47716632190371,2.3269212505283576e-05,1.793398850777613e-07,5.95964349077978e-08,325,"{""solver_solve_time"": 6.774055375, ""problem_class"": ""SDP""}" +2235,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:23:05,14.341548681259155,OPTIMAL,-399.99999085524865,-400.0000000516816,9.196432927183196e-06,2.8791527184913406e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2236,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:23:21,14.389510154724121,OPTIMAL,-399.99997518390705,-399.9999722019107,-2.9819963742738764e-06,1.837354544732748e-08,1.1691283350191018e-10,11,"{""solver_solve_time"": 4.544505209, ""problem_class"": ""SDP""}" +2237,cvxpy_cvxopt,unknown,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:25:22,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2238,cvxpy_scs,unknown,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:27:22,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2239,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:15,14.232115983963013,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.405828291, ""problem_class"": ""SOCP""}" +2240,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:56,41.28279995918274,OPTIMAL,,-0.0507029966950411,,,1.7150846669879644e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2241,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2242,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2243,scipy_linprog,scipy-1.15.3,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2244,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:30:15,16.22143793106079,OPTIMAL,-13.012270674838557,-13.012270674894536,5.597833308002009e-11,9.914510380006027e-14,1.864666515247642e-13,19,"{""solver_solve_time"": 0.486653083, ""problem_class"": ""SOCP""}" +2245,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:19,63.724217653274536,OPTIMAL,,-12.992534672909207,,,2.152895408237386e-05,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2246,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2247,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2248,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2249,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:55,33.70647716522217,OPTIMAL,-1.628971980389783,-1.628971980444936,5.515299328351375e-11,2.4371980356500406e-14,1.125402358419654e-11,11,"{""solver_solve_time"": 0.43927575, ""problem_class"": ""SOCP""}" +2250,cvxpy_scip,unknown,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2251,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2252,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2253,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2254,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:34:14,16.770871877670288,OPTIMAL,-0.10256951119546298,-0.10256951120226779,6.804806718108125e-12,3.092966674770312e-14,2.36811594750051e-13,13,"{""solver_solve_time"": 0.335756291, ""problem_class"": ""SOCP""}" +2255,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:05,50.646941900253296,OPTIMAL,,-0.1025668967864537,,,1.098899869826144e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2256,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2257,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2258,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2259,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2260,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2261,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2262,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2263,scipy_linprog,scipy-1.15.3,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2264,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2265,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2266,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2267,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2268,scipy_linprog,scipy-1.15.3,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2269,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2270,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2271,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2272,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2273,scipy_linprog,scipy-1.15.3,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2274,cvxpy_scs,unknown,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:37:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2275,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:39:35,99.81731796264648,OPTIMAL (INACCURATE),1092.4922416744214,1092.544894125871,-0.05265245144960318,4.2353434666135e-07,0.0,100000,"{""solver_solve_time"": 99.759706791, ""problem_class"": ""SDP""}" +2276,cvxpy_scs,unknown,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:41:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2277,cvxpy_scs,unknown,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:43:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2278,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:44:58,79.17252993583679,OPTIMAL,133.206451029218,133.20645457503971,-3.5458217269024317e-06,1.8067377045067828e-06,0.0026439582371736107,91025,"{""solver_solve_time"": 78.408837208, ""problem_class"": ""SDP""}" +2279,cvxpy_cvxopt,unknown,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:46:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2280,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:47:05,1.3373730182647705,OPTIMAL,133.114594530196,133.1145927303965,1.7997994916640891e-06,7.29630106610369e-11,2.0041498867041285e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2281,matlab_sedumi,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:49:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2282,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:30:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2283,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:30:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2284,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2285,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2286,scipy_linprog,scipy-1.15.3,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2287,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2288,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2289,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2290,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2291,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2292,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2293,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2294,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2295,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2296,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:16,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2297,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2298,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2299,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2300,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2301,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2302,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2303,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2304,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2305,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2306,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2307,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2308,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2309,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2310,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2311,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2312,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2313,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2314,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2315,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2316,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2317,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2318,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2319,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2320,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2321,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2322,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2323,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2324,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:45,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2325,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2326,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:47,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2327,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2328,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2329,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2330,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2331,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2332,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2333,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2334,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2335,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2336,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2337,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2338,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2339,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2340,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2341,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2342,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2343,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2344,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2345,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2346,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2347,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2348,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2349,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2350,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2351,scipy_linprog,scipy-1.15.3,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2352,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2353,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2354,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2355,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2356,scipy_linprog,scipy-1.15.3,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2357,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2358,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2359,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2360,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2361,scipy_linprog,scipy-1.15.3,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2362,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2363,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2364,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2365,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2366,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2367,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2368,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2369,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2370,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2371,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:16,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2372,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2373,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2374,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2375,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2376,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2377,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2378,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2379,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2380,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2381,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2382,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2383,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2384,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2385,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2386,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2387,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2388,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2389,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2390,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2391,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2392,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2393,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2394,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2395,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2396,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2397,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2398,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2399,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2400,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2401,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2402,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2403,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:45,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2404,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2405,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2406,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2407,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2408,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2409,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2410,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2411,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2412,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2413,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2414,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2415,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2416,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2417,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2418,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2419,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2420,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2421,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2422,cvxpy_scip,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:59:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2423,cvxpy_scip,unknown,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:01:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2424,cvxpy_scip,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:03:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2425,cvxpy_ecos,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:15:08,41.56452298164368,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 22:14:26 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:14:26 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:14:26 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:14:26 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - python_solver_runner - INFO - Solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - solver_cvxpy_ecos - INFO - Initialized CVXPY solver 'cvxpy_ecos' with backend 'ECOS'\n2025-08-05 22:14:26 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:14:27 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:14:27 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +2426,cvxpy_scip,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:15:49,40.53333306312561,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 22:15:09 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:15:09 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:15:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:15:09 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - python_solver_runner - INFO - Solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - solver_cvxpy_scip - INFO - Initialized CVXPY solver 'cvxpy_scip' with backend 'SCIP'\n2025-08-05 22:15:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:15:09 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:15:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +2427,cvxpy_scip,unknown,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:18:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2428,cvxpy_scip,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:20:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2429,cvxpy_scip,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:22:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2430,cvxpy_scip,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:24:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2431,cvxpy_scip,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:45:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2432,cvxpy_scip,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:47:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2433,cvxpy_scip,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:49:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2434,cvxpy_scip,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:51:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2435,cvxpy_ecos,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:53:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2436,cvxpy_ecos,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2437,cvxpy_ecos,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:08,1.6577939987182617,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +2438,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:15,5.086763620376587,OPTIMAL (INACCURATE),93.815155585729,93.8151556507703,-6.504129146378546e-08,3.347342476175021e-07,3.756812771549544,60,"{""solver_solve_time"": 2.264175291, ""problem_class"": ""SOCP""}" diff --git a/docs/pages/data/benchmark_results_all.json b/docs/pages/data/benchmark_results_all.json new file mode 100644 index 0000000..2f19565 --- /dev/null +++ b/docs/pages/data/benchmark_results_all.json @@ -0,0 +1,118364 @@ +{ + "metadata": { + "generated_at": "2025-08-06T01:09:44.144398", + "total_results": 2117, + "export_format": "sanitized_benchmark_results", + "version": "2.0", + "full_environment_info": false, + "data_scope": "all" + }, + "summary": { + "total_results": 2117, + "total_solvers": 11, + "total_problems": 120, + "success_rate": 0.49330514446793516, + "avg_solve_time": 49.719333185776776, + "successful_results": 700, + "unsupported_results": 698, + "applicable_results": 1419, + "problem_type_distribution": { + "UNKNOWN": 163, + "SOCP": 344, + "SDP": 1610 + }, + "library_distribution": { + "DIMACS": 765, + "SDPLIB": 1352 + }, + "status_distribution": { + "ERROR": 216, + "OPTIMAL": 700, + "UNBOUNDED": 1, + "OPTIMAL (INACCURATE)": 154, + "UNSUPPORTED": 698, + "NUM_ERROR": 92, + "TIMEOUT": 111, + "MAX_ITER": 23, + "UNKNOWN": 72, + "INFEASIBLE": 13, + "UNBOUNDED (INACCURATE)": 2, + "SUBPROCESS_ERROR": 13, + "SIGKILL": 22 + }, + "solver_names": [ + "cvxpy_clarabel", + "cvxpy_cvxopt", + "cvxpy_ecos", + "cvxpy_highs", + "cvxpy_osqp", + "cvxpy_scip", + "cvxpy_scs", + "cvxpy_sdpa", + "matlab_sdpt3", + "matlab_sedumi", + "scipy_linprog" + ], + "problem_names": [ + "arch0", + "arch2", + "arch4", + "arch8", + "bm1", + "control1", + "control10", + "control11", + "control2", + "control3", + "control4", + "control5", + "control6", + "control7", + "control8", + "control9", + "copo14", + "copo23", + "equalG11", + "equalG51", + "fap09", + "filter48", + "gpp100", + "gpp124-1", + "gpp124-2", + "gpp124-3", + "gpp124-4", + "gpp250-1", + "gpp250-2", + "gpp250-3", + "gpp250-4", + "gpp500-1", + "gpp500-2", + "gpp500-3", + "gpp500-4", + "hamming_7_5_6", + "hamming_8_3_4", + "hamming_9_8", + "hinf1", + "hinf10", + "hinf11", + "hinf12", + "hinf12_sdp", + "hinf13", + "hinf13_sdp", + "hinf14", + "hinf15", + "hinf2", + "hinf3", + "hinf4", + "hinf5", + "hinf6", + "hinf7", + "hinf8", + "hinf9", + "maxG11", + "maxG32", + "maxG51", + "mcp100", + "mcp124-1", + "mcp124-2", + "mcp124-3", + "mcp124-4", + "mcp250-1", + "mcp250-2", + "mcp250-3", + "mcp250-4", + "mcp500-1", + "mcp500-2", + "mcp500-3", + "mcp500-4", + "minphase", + "nb", + "nb_L1", + "nb_L2", + "nb_L2_bessel", + "nql180", + "nql30", + "nql60", + "qap10", + "qap5", + "qap6", + "qap7", + "qap8", + "qap9", + "qpG11", + "qpG51", + "qssp30", + "qssp60", + "sched_100_100_orig", + "sched_100_100_scaled", + "sched_100_50_orig", + "sched_100_50_scaled", + "sched_200_100_orig", + "sched_200_100_scaled", + "sched_50_50_orig", + "sched_50_50_scaled", + "ss30", + "theta1", + "theta2", + "theta3", + "theta4", + "theta5", + "theta6", + "thetaG11", + "thetaG51", + "torusg3-15", + "torusg3-8", + "toruspm3-15-50", + "toruspm3-8-50", + "truss1", + "truss2", + "truss3", + "truss4", + "truss5", + "truss5_sdp", + "truss6", + "truss7", + "truss8", + "truss8_sdp" + ] + }, + "solver_comparison": [ + { + "solver_name": "cvxpy_ecos", + "problems_attempted": 171, + "problems_applicable": 45, + "problems_solved": 30, + "problems_unsupported": 126, + "success_rate": 0.6666666666666666, + "avg_solve_time": 17.10894959081303, + "min_solve_time": 3.814697265625e-05, + "max_solve_time": 120.0 + }, + { + "solver_name": "cvxpy_clarabel", + "problems_attempted": 210, + "problems_applicable": 210, + "problems_solved": 127, + "problems_unsupported": 0, + "success_rate": 0.6047619047619047, + "avg_solve_time": 22.18883602515511, + "min_solve_time": 0.0001780986785888672, + "max_solve_time": 120.0 + }, + { + "solver_name": "matlab_sdpt3", + "problems_attempted": 282, + "problems_applicable": 282, + "problems_solved": 141, + "problems_unsupported": 0, + "success_rate": 0.5, + "avg_solve_time": 10.973477853695853, + "min_solve_time": 0.24263908333333334, + "max_solve_time": 300.0 + }, + { + "solver_name": "matlab_sedumi", + "problems_attempted": 278, + "problems_applicable": 278, + "problems_solved": 137, + "problems_unsupported": 0, + "success_rate": 0.49280575539568344, + "avg_solve_time": 15.078394117037178, + "min_solve_time": 0.2549562083333333, + "max_solve_time": 300.0 + }, + { + "solver_name": "cvxpy_cvxopt", + "problems_attempted": 188, + "problems_applicable": 188, + "problems_solved": 89, + "problems_unsupported": 0, + "success_rate": 0.4734042553191489, + "avg_solve_time": 30.43961113276966, + "min_solve_time": 9.703636169433594e-05, + "max_solve_time": 880.0794627666473 + }, + { + "solver_name": "cvxpy_scs", + "problems_attempted": 176, + "problems_applicable": 176, + "problems_solved": 83, + "problems_unsupported": 0, + "success_rate": 0.4715909090909091, + "avg_solve_time": 250.4084932231903, + "min_solve_time": 0.00011610984802246094, + "max_solve_time": 36704.034167051315 + }, + { + "solver_name": "cvxpy_scip", + "problems_attempted": 150, + "problems_applicable": 25, + "problems_solved": 11, + "problems_unsupported": 125, + "success_rate": 0.44, + "avg_solve_time": 85.01200959086418, + "min_solve_time": 40.53333306312561, + "max_solve_time": 120.0 + }, + { + "solver_name": "cvxpy_sdpa", + "problems_attempted": 193, + "problems_applicable": 193, + "problems_solved": 82, + "problems_unsupported": 0, + "success_rate": 0.42487046632124353, + "avg_solve_time": 17.25159244137909, + "min_solve_time": 0.00010633468627929688, + "max_solve_time": 121.13185501098633 + }, + { + "solver_name": "cvxpy_osqp", + "problems_attempted": 159, + "problems_applicable": 9, + "problems_solved": 0, + "problems_unsupported": 150, + "success_rate": 0.0, + "avg_solve_time": 4.2438507080078125e-05, + "min_solve_time": 3.3855438232421875e-05, + "max_solve_time": 6.29425048828125e-05 + }, + { + "solver_name": "scipy_linprog", + "problems_attempted": 159, + "problems_applicable": 10, + "problems_solved": 0, + "problems_unsupported": 149, + "success_rate": 0.0, + "avg_solve_time": 4.819461277553013e-05, + "min_solve_time": 3.719329833984375e-05, + "max_solve_time": 7.891654968261719e-05 + }, + { + "solver_name": "cvxpy_highs", + "problems_attempted": 151, + "problems_applicable": 3, + "problems_solved": 0, + "problems_unsupported": 148, + "success_rate": 0.0, + "avg_solve_time": 5.793571472167969e-05, + "min_solve_time": 5.793571472167969e-05, + "max_solve_time": 5.793571472167969e-05 + } + ], + "results": [ + { + "id": 110, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:46", + "solve_time": 4.100799560546875e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 111, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:47", + "solve_time": 1.3107497692108154, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464849496, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 21, + "memo": null + }, + { + "id": 112, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:49", + "solve_time": 2.361949920654297, + "status": "OPTIMAL", + "primal_objective_value": -0.05070061603883091, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 5425, + "memo": null + }, + { + "id": 113, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:51", + "solve_time": 1.1708378791809082, + "status": "OPTIMAL", + "primal_objective_value": -0.050703094648322636, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 114, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:51", + "solve_time": 3.981590270996094e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 115, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:52", + "solve_time": 1.4645578861236572, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309469591302, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 116, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:45:54", + "solve_time": 1.346243143081665, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464849496, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 21, + "memo": null + }, + { + "id": 117, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:38", + "solve_time": 3.719329833984375e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 118, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:39", + "solve_time": 1.5329699516296387, + "status": "OPTIMAL", + "primal_objective_value": -13.012270672238593, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 17, + "memo": null + }, + { + "id": 119, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:47", + "solve_time": 7.499206066131592, + "status": "OPTIMAL", + "primal_objective_value": -13.01220020450462, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20575, + "memo": null + }, + { + "id": 120, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:48", + "solve_time": 1.4623680114746094, + "status": "OPTIMAL", + "primal_objective_value": -13.012270674894536, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 19, + "memo": null + }, + { + "id": 121, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:48", + "solve_time": 3.719329833984375e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 122, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:51", + "solve_time": 3.0801711082458496, + "status": "OPTIMAL", + "primal_objective_value": -13.012270457304474, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 123, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:53", + "solve_time": 1.5245318412780762, + "status": "OPTIMAL", + "primal_objective_value": -13.012270672238593, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 17, + "memo": null + }, + { + "id": 124, + "solver_name": "scipy_linprog", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 125, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 126, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 127, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 128, + "solver_name": "cvxpy_osqp", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 129, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 130, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T09:46:56", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 131, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:37", + "solve_time": 4.100799560546875e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 132, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:40", + "solve_time": 2.2409873008728027, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719808523724, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 12, + "memo": null + }, + { + "id": 133, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:41", + "solve_time": 1.8608348369598389, + "status": "OPTIMAL", + "primal_objective_value": -1.6289817153541597, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 775, + "memo": null + }, + { + "id": 134, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:43", + "solve_time": 1.7350881099700928, + "status": "OPTIMAL", + "primal_objective_value": -1.628971980444936, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 11, + "memo": null + }, + { + "id": 135, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:43", + "solve_time": 4.124641418457031e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 136, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:46", + "solve_time": 2.346411943435669, + "status": "OPTIMAL", + "primal_objective_value": -1.628971989187589, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 137, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:19:48", + "solve_time": 2.3051068782806396, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719808523724, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 12, + "memo": null + }, + { + "id": 138, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:42", + "solve_time": 3.910064697265625e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 139, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:44", + "solve_time": 1.2580223083496094, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121204069, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 14, + "memo": null + }, + { + "id": 140, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:45", + "solve_time": 1.1490800380706787, + "status": "OPTIMAL", + "primal_objective_value": -0.10257104661299753, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 950, + "memo": null + }, + { + "id": 141, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:46", + "solve_time": 1.1593446731567383, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951120226779, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 13, + "memo": null + }, + { + "id": 142, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:46", + "solve_time": 3.814697265625e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 143, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:47", + "solve_time": 1.3183510303497314, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951114752975, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 144, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:20:49", + "solve_time": 1.3061511516571045, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121204069, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 14, + "memo": null + }, + { + "id": 145, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:08", + "solve_time": 5.2928924560546875e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 146, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 0.0001780986785888672, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 147, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 0.00011610984802246094, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 148, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 3.981590270996094e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 149, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 4.38690185546875e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 150, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 9.703636169433594e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 151, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:22:09", + "solve_time": 0.00010633468627929688, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 152, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:28:54", + "solve_time": 46.942919969558716, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121204069, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 14, + "memo": null + }, + { + "id": 153, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T10:30:18", + "solve_time": 48.13991713523865, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": "Memory Error" + }, + { + "id": 154, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T13:09:05", + "solve_time": 79.02675819396973, + "status": "OPTIMAL", + "primal_objective_value": 23.439818435224183, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 155, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T13:10:16", + "solve_time": 4.7206878662109375e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 158, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T23:24:20", + "solve_time": 36704.034167051315, + "status": "OPTIMAL", + "primal_objective_value": 23.59206340887288, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 100000, + "memo": null + }, + { + "id": 159, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T23:24:20", + "solve_time": 3.814697265625e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 160, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T23:24:20", + "solve_time": 3.3855438232421875e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 161, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ce1969a22cbeb1ef396d49cbf1142984143d1297", + "timestamp": "2025-06-22T23:39:01", + "solve_time": 880.0794627666473, + "status": "OPTIMAL", + "primal_objective_value": 23.439801459798208, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 162, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:11:59", + "solve_time": 7.891654968261719e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 163, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:01", + "solve_time": 2.181784152984619, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464849496, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 21, + "memo": null + }, + { + "id": 164, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:05", + "solve_time": 4.004631996154785, + "status": "OPTIMAL", + "primal_objective_value": -0.05070061603883091, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 5425, + "memo": null + }, + { + "id": 165, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:07", + "solve_time": 1.9608960151672363, + "status": "OPTIMAL", + "primal_objective_value": -0.050703094648322636, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 166, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:07", + "solve_time": 6.29425048828125e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 167, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:10", + "solve_time": 2.397974967956543, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309469591302, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 168, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:12:15", + "solve_time": 5.21799898147583, + "status": "OPTIMAL", + "primal_objective_value": -1.8772174263594055, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 169, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:13:03", + "solve_time": 48.382381200790405, + "status": "OPTIMAL", + "primal_objective_value": -0.0507029966950411, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 170, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "82612d7c8346e9f418e4c4fb79124a2f7c3a48d4", + "timestamp": "2025-06-24T13:13:03", + "solve_time": 5.793571472167969e-05, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 171, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "5dd7d288c2dc25a8a93c03c618639bdd090f209a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "5dd7d288c2dc25a8a93c03c618639bdd090f209a", + "timestamp": "2025-06-24T13:22:21", + "solve_time": 2.133723258972168, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464849496, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 21, + "memo": null + }, + { + "id": 172, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ca42e835dbea708cc1dcf95987b5a2e56df60642" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ca42e835dbea708cc1dcf95987b5a2e56df60642", + "timestamp": "2025-06-24T15:06:32", + "solve_time": 1.1467840671539307, + "status": "OPTIMAL", + "primal_objective_value": -0.050703094648322636, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 173, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "ca42e835dbea708cc1dcf95987b5a2e56df60642" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "ca42e835dbea708cc1dcf95987b5a2e56df60642", + "timestamp": "2025-06-24T15:06:34", + "solve_time": 1.4811620712280273, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309469591302, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 174, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-unknown", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:16:58", + "solve_time": 6.018739938735962, + "status": "OPTIMAL", + "primal_objective_value": -1.8772174263594055, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 175, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:29:24", + "solve_time": 11.670561075210571, + "status": "OPTIMAL", + "primal_objective_value": -13.012153111134237, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 176, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-unknown", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:30:03", + "solve_time": 6.01131010055542, + "status": "OPTIMAL", + "primal_objective_value": -1.8772174263594055, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 177, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:42:45", + "solve_time": 2.3709490299224854, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464849496, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 21, + "memo": null + }, + { + "id": 178, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:42:49", + "solve_time": 4.158452987670898, + "status": "OPTIMAL", + "primal_objective_value": -0.05070061603883091, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 5425, + "memo": null + }, + { + "id": 179, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:42:51", + "solve_time": 2.0737509727478027, + "status": "OPTIMAL", + "primal_objective_value": -0.050703094648322636, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 180, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:42:54", + "solve_time": 2.5139200687408447, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309469591302, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 181, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-unknown", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:43:00", + "solve_time": 5.74547004699707, + "status": "OPTIMAL", + "primal_objective_value": -1.8772174263594055, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 182, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:43:48", + "solve_time": 48.25754904747009, + "status": "OPTIMAL", + "primal_objective_value": -0.0507029966950411, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 183, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e945508d6718b1edb2f579ce0b5a56da98570dbd", + "timestamp": "2025-06-25T00:47:58", + "solve_time": 5.9592790603637695, + "status": "OPTIMAL", + "primal_objective_value": -1.8772174263594055, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 184, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:34:25", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 185, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:39:13", + "solve_time": 0.0005629062652587891, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 186, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:45:14", + "solve_time": 0.0002989768981933594, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 187, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:46:14", + "solve_time": 0.0575251579284668, + "status": "OPTIMAL", + "primal_objective_value": -584.0007589021698, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 188, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:46:59", + "solve_time": 0.09392786026000977, + "status": "OPTIMAL", + "primal_objective_value": -583.9999934166422, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 189, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:47:21", + "solve_time": 0.05891919136047363, + "status": "UNBOUNDED", + "primal_objective_value": Infinity, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 190, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:48:56", + "solve_time": 0.09429812431335449, + "status": "OPTIMAL", + "primal_objective_value": -583.9999934166422, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 191, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "cfc13857622458340de916f7b88e151405ec7ef9", + "timestamp": "2025-06-25T15:49:04", + "solve_time": 0.0945899486541748, + "status": "OPTIMAL", + "primal_objective_value": -583.9999934166422, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": null + }, + { + "id": 192, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T06:21:55", + "solve_time": 2.0527617931365967, + "status": "OPTIMAL", + "primal_objective_value": -0.050703094648322636, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 193, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:38:23", + "solve_time": 2.052264928817749, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 6.326428876756556e-14, + "iterations": 20, + "memo": null + }, + { + "id": 194, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:40:00", + "solve_time": 0.0739438533782959, + "status": "OPTIMAL", + "primal_objective_value": 436.00000012500374, + "dual_objective_value": 436.0000001787257, + "duality_gap": null, + "primal_infeasibility": 15.686644324177905, + "dual_infeasibility": null, + "iterations": 9, + "memo": null + }, + { + "id": 195, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:48:35", + "solve_time": 0.0709218978881836, + "status": "OPTIMAL", + "primal_objective_value": 436.00000012500374, + "dual_objective_value": 436.0000001787257, + "duality_gap": -5.3721976200904464e-08, + "primal_infeasibility": 15.686644324177905, + "dual_infeasibility": 8.700480256542984e-14, + "iterations": 9, + "memo": null + }, + { + "id": 196, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:53:25", + "solve_time": 2.0524489879608154, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 7.810249675925604, + "dual_infeasibility": null, + "iterations": 20, + "memo": null + }, + { + "id": 197, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:53:44", + "solve_time": 0.07054281234741211, + "status": "OPTIMAL", + "primal_objective_value": 436.00000012500374, + "dual_objective_value": 436.0000001787257, + "duality_gap": -5.3721976200904464e-08, + "primal_infeasibility": 8.543064997221504e-10, + "dual_infeasibility": 8.700480256542984e-14, + "iterations": 9, + "memo": null + }, + { + "id": 198, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:54:11", + "solve_time": 0.061167240142822266, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 436.0403897924358, + "dual_objective_value": 435.9998304004548, + "duality_gap": 0.04055939198099168, + "primal_infeasibility": 9.059329771695843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": null + }, + { + "id": 199, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "246332a289c6cb2d9278620672101e08a7cf767a", + "timestamp": "2025-06-28T16:54:48", + "solve_time": 0.09554290771484375, + "status": "OPTIMAL", + "primal_objective_value": 436.00000638953816, + "dual_objective_value": 436.0000103135326, + "duality_gap": -3.923994427168509e-06, + "primal_infeasibility": 6.573074355875933e-08, + "dual_infeasibility": 5.296699388254977e-12, + "iterations": null, + "memo": null + }, + { + "id": 200, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2b66a821bda2f5f8beee8a0568fea2cab5025175" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "2b66a821bda2f5f8beee8a0568fea2cab5025175", + "timestamp": "2025-06-29T15:00:51", + "solve_time": 15.003283023834229, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "cvxpy_status": "optimal", + "backend_solver": "ECOS", + "solver_stats": { + "solver_name": "ECOS", + "solve_time": 0.415217041, + "setup_time": 0.006720791, + "num_iters": 20, + "extra_stats": { + "x": "[-1.73041982e-03 -5.73739436e-03 -1.48616161e-02 -2.31867615e-03\n -1.10467874e-02 1.68173256e-02 9.51544749e-03 1.35808170e-02\n 9.43829264e-03 -6.05600865e-15 -1.01193171e-02 -1.13321254e-02\n -1.94602686e-02 6.65026484e-03 2.65279290e-03 1.21855518e-02\n 7.17862687e-03 5.57791228e-03 5.63837544e-03 4.74490802e-15\n 9.51544749e-03 -1.35808170e-02 -1.35968837e-02 -1.07897337e-02\n -7.42403179e-03 1.58481768e-03 -5.99262742e-03 1.26967498e-02\n -1.33954820e-03 2.48482997e-02 3.03010899e-02 -7.23485936e-15\n 7.17862687e-03 -5.57791228e-03 -1.10467874e-02 -1.68173256e-02\n -1.01193171e-02 -1.13321254e-02 -7.42403179e-03 1.58481768e-03\n -2.30466276e-02 2.89149577e-02 2.64512916e-02 2.05734879e-02\n 3.23440746e-02 8.68157542e-15 -1.33954820e-03 -2.48482997e-02\n 2.65279290e-03 -1.21855518e-02 -1.48616161e-02 2.31867615e-03\n -1.73041982e-03 -5.73739436e-03 -1.94602686e-02 6.65026484e-03\n -5.99262742e-03 1.26967498e-02 2.64512916e-02 2.05734879e-02\n 7.59362492e-03 1.74135296e-15 2.64512916e-02 -2.05734879e-02\n -5.99262742e-03 -1.26967498e-02 -1.94602686e-02 -6.65026484e-03\n -1.73041982e-03 5.73739436e-03 -1.48616161e-02 -2.31867615e-03\n 2.65279290e-03 1.21855518e-02 -1.33954820e-03 2.48482997e-02\n 3.23440746e-02 -9.20044443e-15 2.64512916e-02 -2.05734879e-02\n -2.30466276e-02 -2.89149577e-02 -7.42403179e-03 -1.58481768e-03\n -1.01193171e-02 1.13321254e-02 -1.10467874e-02 1.68173256e-02\n 7.17862687e-03 5.57791228e-03 3.03010899e-02 3.70760424e-15\n -1.33954820e-03 -2.48482997e-02 -5.99262742e-03 -1.26967498e-02\n -7.42403179e-03 -1.58481768e-03 -1.35968837e-02 1.07897337e-02\n 9.51544749e-03 1.35808170e-02 5.63837544e-03 -2.02346452e-15\n 7.17862687e-03 -5.57791228e-03 2.65279290e-03 -1.21855518e-02\n -1.94602686e-02 -6.65026484e-03 -1.01193171e-02 1.13321254e-02\n 9.43829264e-03 5.77822290e-15 9.51544749e-03 -1.35808170e-02\n -1.10467874e-02 -1.68173256e-02 -1.48616161e-02 2.31867615e-03\n -1.73041982e-03 5.73739436e-03 -5.07030946e-02]", + "y": "[]", + "z": "[ 6.40965515e-02 1.33934569e-02 2.20880975e-02 ... 3.87232542e-04\n 3.87232542e-04 -2.83956245e-18]", + "s": "[ 6.18086218e-15 2.96424923e-14 1.79151455e-14 ... 5.07030946e-02\n -5.07030946e-02 3.71954638e-16]", + "info": { + "exitFlag": 0, + "pcost": 0.05070309464832263, + "dcost": 0.05070309464830582, + "pres": 5.3986390035888254e-14, + "dres": 2.0248646711209417e-13, + "pinf": 0.0, + "dinf": 0.0, + "pinfres": 1.97865667778259, + "dinfres": NaN, + "gap": 6.509451859240631e-10, + "relgap": 1.2838371906867692e-08, + "r0": 1e-08, + "iter": 20, + "mi_iter": -1, + "infostring": "Optimal solution found", + "timing": { + "runtime": 0.421937832, + "tsetup": 0.006720791, + "tsolve": 0.415217041 + }, + "numerr": 0 + } + } + }, + "cvxpy_version": "1.6.5", + "manual_duality_used": true, + "solver_solve_time": 0.415217041, + "solver_setup_time": 0.006720791, + "wall_clock_solve_time": 14.939136981964111, + "cvxpy_overhead": 14.523919940964111, + "overhead_percentage": 97.22060891802995 + } + }, + { + "id": 201, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi (version unknown)", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5", + "timestamp": "2025-07-01T14:49:35", + "solve_time": 5.51104998588562, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): WARNING: package sun.awt.X11 not in java.desktop; WARNING: package sun.awt.X11 not in java.desktop" + } + }, + { + "id": 202, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5", + "timestamp": "2025-07-01T14:50:11", + "solve_time": 25.45207405090332, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.916474834 + } + }, + { + "id": 203, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi (version unknown)", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5", + "timestamp": "2025-07-01T15:44:25", + "solve_time": 6.848468065261841, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7929419166666667, + "setup_time": [], + "iterations": 20, + "primal_objective": -0.05070309464513528, + "dual_objective": -0.05070309464949991, + "gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-02 00:44:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "temp_file_stats": { + "total_files": 0, + "total_size_bytes": 0, + "temp_directory": "/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T", + "oldest_file": null, + "oldest_age_hours": 0 + }, + "problem_registry_loaded": true, + "version_cache_available": true + } + }, + { + "id": 204, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi (version unknown)", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5", + "timestamp": "2025-07-01T15:48:30", + "solve_time": 5.7359349727630615, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.576935875, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-02 00:48:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "temp_file_stats": { + "total_files": 0, + "total_size_bytes": 0, + "temp_directory": "/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T", + "oldest_file": null, + "oldest_age_hours": 0 + }, + "problem_registry_loaded": true, + "version_cache_available": true + } + }, + { + "id": 205, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi (version unknown)", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "7fe9c04af0d21d63a50472b4562934160d8115c5", + "timestamp": "2025-07-01T15:49:41", + "solve_time": 5.599675178527832, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.58405275, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-02 00:49:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "temp_file_stats": { + "total_files": 0, + "total_size_bytes": 0, + "temp_directory": "/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T", + "oldest_file": null, + "oldest_age_hours": 0 + }, + "problem_registry_loaded": true, + "version_cache_available": true + } + }, + { + "id": 207, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e", + "timestamp": "2025-07-09T08:56:12", + "solve_time": 23.54078507423401, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "solver_solve_time": 0.689201375 + } + }, + { + "id": 208, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e", + "timestamp": "2025-07-09T08:56:34", + "solve_time": 10.306785106658936, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.72942325, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-09 17:56:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "temp_file_stats": { + "total_files": 0, + "total_size_bytes": 0, + "temp_directory": "/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T", + "oldest_file": null, + "oldest_age_hours": 0 + }, + "problem_interface_available": true, + "version_cache_available": true + } + }, + { + "id": 209, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e", + "timestamp": "2025-07-09T09:16:11", + "solve_time": 26.243193864822388, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "solver_solve_time": 0.876805 + } + }, + { + "id": 210, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e", + "timestamp": "2025-07-09T10:12:53", + "solve_time": 24.842955827713013, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "solver_solve_time": 0.700973916 + } + }, + { + "id": 211, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "a6b5437833327b41da26ca61bea8b54301d4c11e", + "timestamp": "2025-07-09T10:13:11", + "solve_time": 6.87321400642395, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7885212083333333, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-09 19:13:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "temp_file_stats": { + "total_files": 0, + "total_size_bytes": 0, + "temp_directory": "/var/folders/qw/zr1g0ncn2bb07fr9tr1kmd_h0000gn/T", + "oldest_file": null, + "oldest_age_hours": 0 + }, + "problem_interface_available": true, + "version_cache_available": true + } + }, + { + "id": 214, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b", + "timestamp": "2025-07-12T13:37:51", + "solve_time": 5.752341985702515, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5825386666666666, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:37:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 215, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b", + "timestamp": "2025-07-12T13:38:03", + "solve_time": 4.629278182983398, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.939291, + "setup_time": [], + "iterations": 25, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:38:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 217, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b", + "timestamp": "2025-07-12T13:38:49", + "solve_time": 5.693062782287598, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5549658333333334, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:38:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 218, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "0ee454e7fc43ae25df93351d951caa7dc0fada8b", + "timestamp": "2025-07-12T13:38:54", + "solve_time": 4.539752006530762, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9724175416666667, + "setup_time": [], + "iterations": 25, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:38:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 221, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T13:44:13", + "solve_time": 5.717331886291504, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.58465775, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:44:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 222, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T13:44:19", + "solve_time": 5.567007064819336, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9424599583333333, + "setup_time": [], + "iterations": 25, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 22:44:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 223, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T13:49:31", + "solve_time": 14.234610080718994, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.55783475 + } + }, + { + "id": 224, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T13:49:45", + "solve_time": 14.083254098892212, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "solver_solve_time": 0.407862041 + } + }, + { + "id": 225, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:06:01", + "solve_time": 5.811693906784058, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5324832083333333, + "setup_time": [], + "iterations": 20, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:05:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 226, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:06:12", + "solve_time": 5.6402411460876465, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9719586666666666, + "setup_time": [], + "iterations": 25, + "primal_objective": [], + "dual_objective": [], + "gap": [], + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:06:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 227, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:11:45", + "solve_time": 5.70088791847229, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6775225416666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:11:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 228, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:12:08", + "solve_time": 5.674897193908691, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9989806666666666, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:12:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 229, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:13:51", + "solve_time": 14.318236827850342, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.566578583 + } + }, + { + "id": 230, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:14:06", + "solve_time": 14.919658899307251, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": null, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": null, + "iterations": 20, + "memo": { + "solver_solve_time": 0.440347833 + } + }, + { + "id": 231, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:14:12", + "solve_time": 5.69724178314209, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.59998975, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:14:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 232, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:14:18", + "solve_time": 5.579698801040649, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0018009166666666, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:14:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 233, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:22:29", + "solve_time": 14.992480993270874, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.556451209 + } + }, + { + "id": 234, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:24:04", + "solve_time": 14.476727962493896, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.563144123 + } + }, + { + "id": 235, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:24:33", + "solve_time": 14.297224998474121, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": null, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": null, + "iterations": 21, + "memo": { + "solver_solve_time": 0.558655542 + } + }, + { + "id": 236, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:25:33", + "solve_time": 14.602757930755615, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.566318623 + } + }, + { + "id": 237, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:26:14", + "solve_time": 14.312147855758667, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.402906375 + } + }, + { + "id": 238, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:27:37", + "solve_time": 14.624479055404663, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.562138001 + } + }, + { + "id": 239, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:27:52", + "solve_time": 14.605855941772461, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.401662 + } + }, + { + "id": 240, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:27:57", + "solve_time": 5.8748931884765625, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7703717083333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:27:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab" + } + }, + { + "id": 241, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "736b84b8734bfd076ef9c9f505a1cf31bce807f1", + "timestamp": "2025-07-12T14:28:03", + "solve_time": 5.5392937660217285, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9742125, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:28:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab" + } + }, + { + "id": 242, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "854a6144a0742fca829bfbfb1d89f9f2deb3580a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "854a6144a0742fca829bfbfb1d89f9f2deb3580a", + "timestamp": "2025-07-12T14:46:45", + "solve_time": 14.478132963180542, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.560601208, + "problem_class": "SOCP" + } + }, + { + "id": 243, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "854a6144a0742fca829bfbfb1d89f9f2deb3580a" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "854a6144a0742fca829bfbfb1d89f9f2deb3580a", + "timestamp": "2025-07-12T14:47:03", + "solve_time": 5.913553237915039, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5512924583333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-12 23:46:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 244, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:28:32", + "solve_time": 15.19284987449646, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.62880275, + "problem_class": "SOCP" + } + }, + { + "id": 245, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:30:02", + "solve_time": 15.459609985351562, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.647321916, + "problem_class": "SOCP" + } + }, + { + "id": 246, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:30:51", + "solve_time": 15.850618839263916, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.650799, + "problem_class": "SOCP" + } + }, + { + "id": 247, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:31:25", + "solve_time": 16.408241271972656, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.653549875, + "problem_class": "SOCP" + } + }, + { + "id": 248, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:36:26", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver scipy_linprog cannot handle SOCP problems" + } + }, + { + "id": 249, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:36:40", + "solve_time": 14.16802978515625, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.5659345, + "problem_class": "SOCP" + } + }, + { + "id": 250, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:36:56", + "solve_time": 15.793625831604004, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.653572083, + "problem_class": "SOCP" + } + }, + { + "id": 251, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:37:11", + "solve_time": 15.220584154129028, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.407469125, + "problem_class": "SOCP" + } + }, + { + "id": 252, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:37:11", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver cvxpy_osqp cannot handle SOCP problems" + } + }, + { + "id": 253, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:37:26", + "solve_time": 14.970590114593506, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 254, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:37:56", + "solve_time": 29.577348947525024, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002033656695857644, + "dual_objective_value": -1.8772174263594055, + "duality_gap": 1.8751837696635478, + "primal_infeasibility": 0.16647016188566816, + "dual_infeasibility": 3.539291082432821e-11, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 255, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:38:38", + "solve_time": 41.817368030548096, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.0507029966950411, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.7150846669879644e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 256, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:38:38", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver cvxpy_highs cannot handle SOCP problems" + } + }, + { + "id": 257, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:38:44", + "solve_time": 5.810866117477417, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5818070833333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 00:38:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 258, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:38:49", + "solve_time": 5.676074981689453, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9559340833333333, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 00:38:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 259, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:38:49", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver scipy_linprog cannot handle SOCP problems" + } + }, + { + "id": 260, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:39:06", + "solve_time": 16.754071950912476, + "status": "OPTIMAL", + "primal_objective_value": -13.012270670036738, + "dual_objective_value": -13.012270672238593, + "duality_gap": 2.20185469856915e-09, + "primal_infeasibility": 5.357543858712498e-15, + "dual_infeasibility": 1.1266917166933884e-12, + "iterations": 17, + "memo": { + "solver_solve_time": 0.552499374, + "problem_class": "SOCP" + } + }, + { + "id": 261, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:41:43", + "solve_time": 14.507030010223389, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 262, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:44:01", + "solve_time": 23.857765913009644, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 263, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:45:02", + "solve_time": 48.4855477809906, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002033656695857644, + "dual_objective_value": -1.8772174263594055, + "duality_gap": 1.8751837696635478, + "primal_infeasibility": 0.16647016188566816, + "dual_infeasibility": 3.539291082432821e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 264, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1750582016.0 + }, + "commit_hash": "e0f440dd0fe8fd3b879b2314c64621e74e9cb065", + "timestamp": "2025-07-12T15:45:42", + "solve_time": 23.807657957077026, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.874906002, + "problem_class": "SOCP" + } + }, + { + "id": 265, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48", + "timestamp": "2025-07-13T04:20:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 266, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48", + "timestamp": "2025-07-13T04:20:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 267, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "949fc80f872ff80f86f08a2b22df1565a26acc48", + "timestamp": "2025-07-13T04:20:50", + "solve_time": 16.301424980163574, + "status": "OPTIMAL", + "primal_objective_value": -13.012270670036738, + "dual_objective_value": -13.012270672238593, + "duality_gap": 2.20185469856915e-09, + "primal_infeasibility": 5.357543858712498e-15, + "dual_infeasibility": 1.1266917166933884e-12, + "iterations": 17, + "memo": { + "solver_solve_time": 0.565587501, + "problem_class": "SOCP" + } + }, + { + "id": 268, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:05:52", + "solve_time": 14.080224990844727, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.568606751, + "problem_class": "SOCP" + } + }, + { + "id": 269, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:06:17", + "solve_time": 14.398108005523682, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 270, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:06:32", + "solve_time": 14.206388235092163, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.401632958, + "problem_class": "SOCP" + } + }, + { + "id": 271, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:06:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 272, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:06:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 273, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:07:26", + "solve_time": 41.04853415489197, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.0507029966950411, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.7150846669879644e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 274, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:07:42", + "solve_time": 15.451754808425903, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.643953666, + "problem_class": "SOCP" + } + }, + { + "id": 275, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:08:12", + "solve_time": 29.06814193725586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002033656695857644, + "dual_objective_value": -1.8772174263594055, + "duality_gap": 1.8751837696635478, + "primal_infeasibility": 0.16647016188566816, + "dual_infeasibility": 3.539291082432821e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 276, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:08:20", + "solve_time": 8.048792839050293, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.3277562083333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 19:08:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 277, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:08:36", + "solve_time": 5.638910293579102, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6119426666666666, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 19:08:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 278, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:08:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 279, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:09:36", + "solve_time": 16.796692848205566, + "status": "OPTIMAL", + "primal_objective_value": -13.012270670036738, + "dual_objective_value": -13.012270672238593, + "duality_gap": 2.20185469856915e-09, + "primal_infeasibility": 5.357543858712498e-15, + "dual_infeasibility": 1.1266917166933884e-12, + "iterations": 17, + "memo": { + "solver_solve_time": 0.487794001, + "problem_class": "SOCP" + } + }, + { + "id": 280, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:10:02", + "solve_time": 18.609934091567993, + "status": "OPTIMAL", + "primal_objective_value": -13.012270260650567, + "dual_objective_value": -13.012270457304474, + "duality_gap": 1.9665390738055066e-07, + "primal_infeasibility": 7.285115451032123e-13, + "dual_infeasibility": 9.002595409515661e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 281, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:10:30", + "solve_time": 16.795350790023804, + "status": "OPTIMAL", + "primal_objective_value": -13.012270674838557, + "dual_objective_value": -13.012270674894536, + "duality_gap": 5.597833308002009e-11, + "primal_infeasibility": 9.914510380006027e-14, + "dual_infeasibility": 1.864666515247642e-13, + "iterations": 19, + "memo": { + "solver_solve_time": 0.489211166, + "problem_class": "SOCP" + } + }, + { + "id": 282, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:10:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 283, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:10:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 284, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:11:50", + "solve_time": 64.57249712944031, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -12.992534672909207, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 2.152895408237386e-05, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 285, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:12:13", + "solve_time": 22.964880228042603, + "status": "OPTIMAL", + "primal_objective_value": -13.01223863583072, + "dual_objective_value": -13.01220020450462, + "duality_gap": -3.843132610015232e-05, + "primal_infeasibility": 7.134210269620723e-06, + "dual_infeasibility": 1.0320214770561878e-06, + "iterations": 20575, + "memo": { + "solver_solve_time": 6.570614666, + "problem_class": "SOCP" + } + }, + { + "id": 286, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:13:02", + "solve_time": 37.44233822822571, + "status": "OPTIMAL", + "primal_objective_value": -13.012153111134214, + "dual_objective_value": -13.012153111134237, + "duality_gap": 2.3092638912203256e-14, + "primal_infeasibility": 0.09539745847209875, + "dual_infeasibility": 5.092853585115458e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 287, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:13:08", + "solve_time": 5.661326885223389, + "status": "OPTIMAL", + "primal_objective_value": -13.012270587360916, + "dual_objective_value": -13.012270701517188, + "duality_gap": 1.1415627199085066e-07, + "primal_infeasibility": 5.912533758053113e-11, + "dual_infeasibility": 1.1086499606208974e-11, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.129858958333333, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -13.012270587360916, + "dual_objective_value": -13.012270701517188, + "duality_gap": 1.1415627199085066e-07, + "primal_infeasibility": 5.912533758053113e-11, + "dual_infeasibility": 1.1086499606208974e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 19:13:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 288, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:13:13", + "solve_time": 4.513097047805786, + "status": "OPTIMAL", + "primal_objective_value": -13.012270029385133, + "dual_objective_value": -13.012270026410215, + "duality_gap": 2.9749180896487815e-09, + "primal_infeasibility": 1.5604221692182964e-10, + "dual_infeasibility": 2.645992296428134e-10, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8159770416666666, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -13.012270029385133, + "dual_objective_value": -13.012270026410215, + "duality_gap": 2.9749180896487815e-09, + "primal_infeasibility": 1.5604221692182964e-10, + "dual_infeasibility": 2.645992296428134e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 19:13:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 289, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:13:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 290, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:14:19", + "solve_time": 35.55278205871582, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719788841075, + "dual_objective_value": -1.6289719808523724, + "duality_gap": 1.9682648844110417e-09, + "primal_infeasibility": 6.289904981982145e-12, + "dual_infeasibility": 4.939640235768386e-13, + "iterations": 12, + "memo": { + "solver_solve_time": 0.925920416, + "problem_class": "SOCP" + } + }, + { + "id": 291, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T10:15:01", + "solve_time": 40.887229919433594, + "status": "OPTIMAL", + "primal_objective_value": -1.6289717401048371, + "dual_objective_value": -1.628971989187589, + "duality_gap": 2.490827517576122e-07, + "primal_infeasibility": 1.2771965700046602e-09, + "dual_infeasibility": 5.012498098520504e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 292, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:21:12", + "solve_time": 34.03510904312134, + "status": "OPTIMAL", + "primal_objective_value": -1.628971980389783, + "dual_objective_value": -1.628971980444936, + "duality_gap": 5.515299328351375e-11, + "primal_infeasibility": 2.4371980356500406e-14, + "dual_infeasibility": 1.125402358419654e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.43808625, + "problem_class": "SOCP" + } + }, + { + "id": 293, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:21:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 294, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:21:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 295, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:24:00", + "solve_time": 33.691174030303955, + "status": "OPTIMAL", + "primal_objective_value": -1.6289712152465583, + "dual_objective_value": -1.6289817153541597, + "duality_gap": 1.0500107601396635e-05, + "primal_infeasibility": 2.121405856474299e-05, + "dual_infeasibility": 2.3664912021212606e-07, + "iterations": 775, + "memo": { + "solver_solve_time": 0.47297929099999997, + "problem_class": "SOCP" + } + }, + { + "id": 296, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:26:10", + "solve_time": 7.565924644470215, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719758278038, + "dual_objective_value": -1.6289719649738734, + "duality_gap": 1.0853930421106384e-08, + "primal_infeasibility": 1.5847819778542365e-10, + "dual_infeasibility": 2.38745041905577e-10, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.279740625, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -1.6289719758278038, + "dual_objective_value": -1.6289719649738734, + "duality_gap": 1.0853930421106384e-08, + "primal_infeasibility": 1.5847819778542365e-10, + "dual_infeasibility": 2.38745041905577e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:26:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 297, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:26:17", + "solve_time": 5.8478169441223145, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7119388333333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:26:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 298, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:26:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 299, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:28:01", + "solve_time": 17.504395723342896, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121188174, + "dual_objective_value": -0.10256951121204069, + "duality_gap": 1.589561815507068e-13, + "primal_infeasibility": 8.039548008470551e-16, + "dual_infeasibility": 2.720397466104802e-14, + "iterations": 14, + "memo": { + "solver_solve_time": 0.432617, + "problem_class": "SOCP" + } + }, + { + "id": 300, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:28:20", + "solve_time": 17.77618932723999, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950565999576, + "dual_objective_value": -0.10256951114752975, + "duality_gap": 5.487533996650917e-09, + "primal_infeasibility": 2.6441459719661748e-11, + "dual_infeasibility": 2.0332286620010367e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 301, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:28:38", + "solve_time": 17.56754207611084, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951119546298, + "dual_objective_value": -0.10256951120226779, + "duality_gap": 6.804806718108125e-12, + "primal_infeasibility": 3.092966674770312e-14, + "dual_infeasibility": 2.36811594750051e-13, + "iterations": 13, + "memo": { + "solver_solve_time": 0.338675416, + "problem_class": "SOCP" + } + }, + { + "id": 302, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:28:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 303, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:28:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 304, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:29:08", + "solve_time": 17.17594003677368, + "status": "OPTIMAL", + "primal_objective_value": -0.10256936649935693, + "dual_objective_value": -0.10257104661299753, + "duality_gap": 1.6801136406008332e-06, + "primal_infeasibility": 3.1910805185769294e-05, + "dual_infeasibility": 1.891547527204477e-07, + "iterations": 950, + "memo": { + "solver_solve_time": 0.31569962500000004, + "problem_class": "SOCP" + } + }, + { + "id": 305, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:29:14", + "solve_time": 5.600294828414917, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.836593625, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:29:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 306, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:29:20", + "solve_time": 4.828796148300171, + "status": "OPTIMAL", + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.81262675, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:29:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 307, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:29:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 308, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:30:23", + "solve_time": 51.81062984466553, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.1025668967864537, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.098899869826144e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 309, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:31:03", + "solve_time": 38.577078104019165, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.10256935572921497, + "dual_objective_value": -0.1025694147293237, + "duality_gap": 5.9000108729168055e-08, + "primal_infeasibility": 2.8997429768473637e-07, + "dual_infeasibility": 3.76033631227958e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 310, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:39:49", + "solve_time": 59.989562034606934, + "status": "NUM_ERROR", + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 54.870529958333336, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:39:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 311, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:40:08", + "solve_time": 11.592885971069336, + "status": "NUM_ERROR", + "primal_objective_value": 23.439883661510144, + "dual_objective_value": 23.43981854369851, + "duality_gap": 6.511781163354158e-05, + "primal_infeasibility": 1.129501557284527e-12, + "dual_infeasibility": 5.164319701422163e-12, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "num_error", + "solve_time": 6.361447625, + "setup_time": [], + "iterations": 18, + "primal_objective_value": 23.439883661510144, + "dual_objective_value": 23.43981854369851, + "duality_gap": 6.511781163354158e-05, + "primal_infeasibility": 1.129501557284527e-12, + "dual_infeasibility": 5.164319701422163e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 22:40:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 312, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:41:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 313, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:41:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 314, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:41:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 315, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:41:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 316, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:42:49", + "solve_time": 69.87112617492676, + "status": "OPTIMAL", + "primal_objective_value": 23.439818974587567, + "dual_objective_value": 23.439818435224183, + "duality_gap": 5.393633841777046e-07, + "primal_infeasibility": 1.589519974455338e-11, + "dual_infeasibility": 4.7948349842514454e-14, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 317, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:42:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 318, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:48:48", + "solve_time": 1.9512720108032227, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Clarabel: unrecognized solver setting 'max_time'.", + "problem_class": "SDP" + } + }, + { + "id": 319, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:49:25", + "solve_time": 1.607564926147461, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Clarabel: unrecognized solver setting 'max_time_sec'.", + "problem_class": "SDP" + } + }, + { + "id": 320, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.9.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:52:08", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "timeout_reason": "Command timeout", + "known_issue": "CLARABEL SIGKILL on large SDP problems" + } + }, + { + "id": 321, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:52:08", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "timeout_reason": "Command timeout" + } + }, + { + "id": 322, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T13:52:08", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "timeout_reason": "Command timeout" + } + }, + { + "id": 337, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:32", + "solve_time": 0.23426198959350586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -1.6401068919646988e-08, + "dual_objective_value": -3.033602862628601e-08, + "duality_gap": 1.3934959706639019e-08, + "primal_infeasibility": 7.24230986971135e-09, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "solver_solve_time": 0.18839046, + "problem_class": "SDP" + } + }, + { + "id": 338, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:34", + "solve_time": 2.3531270027160645, + "status": "OPTIMAL", + "primal_objective_value": -2.497696811876171e-08, + "dual_objective_value": -3.94442290703259e-08, + "duality_gap": 1.4467260951564188e-08, + "primal_infeasibility": 7.720817848199098e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 339, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 340, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 341, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 342, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 343, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": 0.09977483749389648, + "status": "OPTIMAL", + "primal_objective_value": 2.763797219494657e-06, + "dual_objective_value": 6.008903171780412e-07, + "duality_gap": 2.1629069023166157e-06, + "primal_infeasibility": 5.79374368893745e-07, + "dual_infeasibility": 2.176976834364473e-09, + "iterations": 275, + "memo": { + "solver_solve_time": 0.055474916, + "problem_class": "SDP" + } + }, + { + "id": 344, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:35", + "solve_time": 0.13973784446716309, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 345, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:40", + "solve_time": 5.58610987663269, + "status": "OPTIMAL", + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8651230833333333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:08:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 346, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:46", + "solve_time": 5.53113579750061, + "status": "OPTIMAL", + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7172639583333333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:08:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 347, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:08:46", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 348, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:10:40", + "solve_time": 4.257943153381348, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -4.4884696204575136e-08, + "dual_objective_value": -6.567172048617617e-08, + "duality_gap": 2.0787024281601034e-08, + "primal_infeasibility": 1.0638153482222468e-08, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "solver_solve_time": 3.280234458, + "problem_class": "SDP" + } + }, + { + "id": 349, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:43", + "solve_time": 62.819146156311035, + "status": "OPTIMAL", + "primal_objective_value": -2.4827762840420875e-08, + "dual_objective_value": -3.392721178555364e-08, + "duality_gap": 9.099448945132768e-09, + "primal_infeasibility": 4.740723896523209e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 350, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 351, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 352, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 353, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 354, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:45", + "solve_time": 1.2642018795013428, + "status": "OPTIMAL", + "primal_objective_value": -7.956279965304347e-06, + "dual_objective_value": -3.197190700468751e-06, + "duality_gap": -4.759089264835596e-06, + "primal_infeasibility": 2.804389571931542e-06, + "dual_infeasibility": 8.648485158449915e-09, + "iterations": 300, + "memo": { + "solver_solve_time": 0.282846708, + "problem_class": "SDP" + } + }, + { + "id": 355, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:48", + "solve_time": 2.2467129230499268, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 356, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:11:59", + "solve_time": 11.636394262313843, + "status": "OPTIMAL", + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.72506075, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:11:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 357, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:12:28", + "solve_time": 28.6621150970459, + "status": "OPTIMAL", + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 23.552582916666665, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:12:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 358, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752362240.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:12:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 359, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:34", + "solve_time": 1.4079649448394775, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161020106468114, + "dual_objective_value": 1.4161020228518586, + "duality_gap": -1.2205047195124052e-08, + "primal_infeasibility": 1.1274549784995933e-06, + "dual_infeasibility": 6.106204455194476e-09, + "iterations": 31, + "memo": { + "solver_solve_time": 1.372236911, + "problem_class": "SDP" + } + }, + { + "id": 360, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:42", + "solve_time": 8.001045942306519, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 361, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 362, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 363, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 364, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:45:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 365, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:46:14", + "solve_time": 31.373349905014038, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.409073703261462, + "dual_objective_value": 1.4090806844233812, + "duality_gap": -6.981161919217271e-06, + "primal_infeasibility": 7.523837266388142e-05, + "dual_infeasibility": 3.375321326271274e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 31.341522207999997, + "problem_class": "SDP" + } + }, + { + "id": 366, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:46:54", + "solve_time": 39.998786211013794, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161295151451585, + "dual_objective_value": 1.4161284417476618, + "duality_gap": 1.0733974966647963e-06, + "primal_infeasibility": 3.529475717602551e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 367, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:02", + "solve_time": 7.678075790405273, + "status": "MAX_ITER", + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0.0, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 3.09142575, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:47:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 368, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:09", + "solve_time": 6.840111017227173, + "status": "OPTIMAL", + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.4125649166666667, + "setup_time": [], + "iterations": 37, + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:48:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 369, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:11", + "solve_time": 1.458812952041626, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161020106468114, + "dual_objective_value": 1.4161020228518586, + "duality_gap": -1.2205047195124052e-08, + "primal_infeasibility": 1.1274549784995933e-06, + "dual_infeasibility": 6.106204455194476e-09, + "iterations": 31, + "memo": { + "solver_solve_time": 1.425402127, + "problem_class": "SDP" + } + }, + { + "id": 370, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:18", + "solve_time": 7.210028886795044, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 371, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 372, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 373, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 374, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 375, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:48:49", + "solve_time": 31.47291898727417, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.409073703261462, + "dual_objective_value": 1.4090806844233812, + "duality_gap": -6.981161919217271e-06, + "primal_infeasibility": 7.523837266388142e-05, + "dual_infeasibility": 3.375321326271274e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 31.439016208, + "problem_class": "SDP" + } + }, + { + "id": 376, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:49:30", + "solve_time": 40.1348659992218, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161295151451585, + "dual_objective_value": 1.4161284417476618, + "duality_gap": 1.0733974966647963e-06, + "primal_infeasibility": 3.529475717602551e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 377, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:49:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 389, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:13", + "solve_time": 5.549195051193237, + "status": "UNKNOWN", + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.7854669166666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:53:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 390, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:18", + "solve_time": 5.551377773284912, + "status": "NUM_ERROR", + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5479260833333334, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-13 23:53:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 391, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:19", + "solve_time": 1.3531219959259033, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.966248462567837, + "dual_objective_value": 5.966249544813763, + "duality_gap": -1.0822459266535134e-06, + "primal_infeasibility": 9.701486038460028e-07, + "dual_infeasibility": 0.0, + "iterations": 38, + "memo": { + "solver_solve_time": 1.3497306660000001, + "problem_class": "SDP" + } + }, + { + "id": 392, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:20", + "solve_time": 0.5625021457672119, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 393, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 394, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 395, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 396, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 397, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:38", + "solve_time": 18.2932550907135, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.942591741517748, + "dual_objective_value": 5.94744385187505, + "duality_gap": -0.004852110357302486, + "primal_infeasibility": 1.128928529831279e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.290127541, + "problem_class": "SDP" + } + }, + { + "id": 398, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:39", + "solve_time": 0.13327908515930176, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.9713171314052325, + "dual_objective_value": 5.976935592929294, + "duality_gap": -0.0056184615240617575, + "primal_infeasibility": 1.08915726239491e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 399, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T14:53:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 400, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:21:49", + "solve_time": 6.828199863433838, + "status": "OPTIMAL", + "primal_objective_value": -223.99999755382208, + "dual_objective_value": -224.00000119657497, + "duality_gap": 3.642752886889866e-06, + "primal_infeasibility": 3.435419260401472e-11, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.9881776666666666, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -223.99999755382208, + "dual_objective_value": -224.00000119657497, + "duality_gap": 3.642752886889866e-06, + "primal_infeasibility": 3.435419260401472e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 00:21:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 401, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:22:17", + "solve_time": 28.773623943328857, + "status": "OPTIMAL", + "primal_objective_value": -224.00000026429433, + "dual_objective_value": -224.00000011609177, + "duality_gap": 1.4820255955783068e-07, + "primal_infeasibility": 5.2487088009421366e-09, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 23.351098458333333, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -224.00000026429433, + "dual_objective_value": -224.00000011609177, + "duality_gap": 1.4820255955783068e-07, + "primal_infeasibility": 5.2487088009421366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 00:22:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 402, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 403, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 404, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 405, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 406, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 407, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:31:13", + "solve_time": 21.987760066986084, + "status": "OPTIMAL", + "primal_objective_value": -224.0003222026227, + "dual_objective_value": -224.00037351826538, + "duality_gap": 5.131564267912836e-05, + "primal_infeasibility": 5.492586278581966e-07, + "dual_infeasibility": 1.2811657673655026e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 21.050265458000002, + "problem_class": "SDP" + } + }, + { + "id": 408, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:31:20", + "solve_time": 2.6725239753723145, + "status": "OPTIMAL", + "primal_objective_value": -223.99999657347732, + "dual_objective_value": -224.00000195439648, + "duality_gap": 5.380919162689679e-06, + "primal_infeasibility": 7.830681581889643e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 416, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:44:47", + "solve_time": 6.90191912651062, + "status": "OPTIMAL", + "primal_objective_value": -42.66666606990655, + "dual_objective_value": -42.66666679075191, + "duality_gap": 7.208453638440915e-07, + "primal_infeasibility": 1.0369985582790911e-10, + "dual_infeasibility": 0.0, + "iterations": 8, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8053178333333333, + "setup_time": [], + "iterations": 8, + "primal_objective_value": -42.66666606990655, + "dual_objective_value": -42.66666679075191, + "duality_gap": 7.208453638440915e-07, + "primal_infeasibility": 1.0369985582790911e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 00:44:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 417, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:03", + "solve_time": 9.566908836364746, + "status": "OPTIMAL", + "primal_objective_value": -42.666666707488446, + "dual_objective_value": -42.66666670384585, + "duality_gap": 3.6425973348741536e-09, + "primal_infeasibility": 2.7680298055873787e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 4.882939291666666, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -42.666666707488446, + "dual_objective_value": -42.66666670384585, + "duality_gap": 3.6425973348741536e-09, + "primal_infeasibility": 2.7680298055873787e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 00:45:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 418, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 419, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 420, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 421, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 422, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 423, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:18", + "solve_time": 0.3216381072998047, + "status": "OPTIMAL", + "primal_objective_value": -42.66663809919346, + "dual_objective_value": -42.666691827474416, + "duality_gap": 5.3728280953180274e-05, + "primal_infeasibility": 3.823840598620477e-07, + "dual_infeasibility": 0.0, + "iterations": 150, + "memo": { + "solver_solve_time": 0.260323333, + "problem_class": "SDP" + } + }, + { + "id": 424, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:25", + "solve_time": 0.6072909832000732, + "status": "OPTIMAL", + "primal_objective_value": -42.66666466059041, + "dual_objective_value": -42.66666774012631, + "duality_gap": 3.0795358938462414e-06, + "primal_infeasibility": 4.494236949271214e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 425, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:45:38", + "solve_time": 6.381925106048584, + "status": "OPTIMAL", + "primal_objective_value": -42.666666408791805, + "dual_objective_value": -42.66666641006614, + "duality_gap": 1.2743370803036669e-09, + "primal_infeasibility": 3.3836883209684965e-16, + "dual_infeasibility": 4.956901572407782e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 426, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:46:05", + "solve_time": 18.875242948532104, + "status": "OPTIMAL", + "primal_objective_value": -42.66666667203015, + "dual_objective_value": -42.66666666625962, + "duality_gap": -5.770530719928502e-09, + "primal_infeasibility": 1.8842178928241884e-09, + "dual_infeasibility": 8.196094314750425e-14, + "iterations": 6, + "memo": { + "solver_solve_time": 18.824221376, + "problem_class": "SDP" + } + }, + { + "id": 427, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:48:04", + "solve_time": 86.88486099243164, + "status": "OPTIMAL", + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 82.61410366666667, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 00:48:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 428, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 429, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 430, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 431, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 432, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 433, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:36", + "solve_time": 5.7120819091796875, + "status": "OPTIMAL", + "primal_objective_value": -25.599995287166273, + "dual_objective_value": -25.599994400951143, + "duality_gap": -8.862151297250875e-07, + "primal_infeasibility": 8.066216926898107e-08, + "dual_infeasibility": 1.0420348665432626e-09, + "iterations": 225, + "memo": { + "solver_solve_time": 2.087001041, + "problem_class": "SDP" + } + }, + { + "id": 435, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:06", + "solve_time": 5.890522003173828, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 436, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:18", + "solve_time": 4.405834913253784, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 437, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:28", + "solve_time": 1.8724610805511475, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9141614331465502, + "dual_objective_value": -0.8869089226495065, + "duality_gap": -0.02725251049704369, + "primal_infeasibility": 8.264335179641823e-08, + "dual_infeasibility": 1.6865610824784975e-07, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.866658041, + "problem_class": "SDP" + } + }, + { + "id": 438, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:37", + "solve_time": 0.019330739974975586, + "status": "OPTIMAL", + "primal_objective_value": -5.925342226589732e-05, + "dual_objective_value": -5.925213757701722e-05, + "duality_gap": -1.284688880104324e-09, + "primal_infeasibility": 1.639363195032902e-05, + "dual_infeasibility": 0.0, + "iterations": 44, + "memo": { + "solver_solve_time": 0.015895543, + "problem_class": "SDP" + } + }, + { + "id": 439, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:37", + "solve_time": 0.38875889778137207, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 440, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:37", + "solve_time": 0.01279592514038086, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -26.284632319814868, + "dual_objective_value": -3.218852415953317, + "duality_gap": -23.06577990386155, + "primal_infeasibility": 0.0002664963558692289, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 441, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 442, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 443, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 444, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 445, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:55:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 446, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:56:39", + "solve_time": 4.389965057373047, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 447, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:56:50", + "solve_time": 2.832101821899414, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -30.338550211015605, + "dual_objective_value": -30.33799946764806, + "duality_gap": -0.0005507433675440154, + "primal_infeasibility": 5.355649271250418e-06, + "dual_infeasibility": 9.237317500777047e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 2.8275627909999996, + "problem_class": "SDP" + } + }, + { + "id": 448, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:56:50", + "solve_time": 0.01382899284362793, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 449, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": 4.410099029541016, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 450, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": 0.07933282852172852, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 451, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": 0.011415958404541016, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 452, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 453, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 454, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 455, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 456, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:57:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 457, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:05:15", + "solve_time": 7.069135904312134, + "status": "OPTIMAL", + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.060778875, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:05:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 458, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:05:26", + "solve_time": 5.561333894729614, + "status": "OPTIMAL", + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5134755416666666, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:05:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 459, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:05:58", + "solve_time": 21.510102033615112, + "status": "OPTIMAL", + "primal_objective_value": -0.9460280973730932, + "dual_objective_value": -0.9460280998223545, + "duality_gap": 2.4492612382687184e-09, + "primal_infeasibility": 1.956251612313512e-08, + "dual_infeasibility": 1.3360942438602618e-08, + "iterations": 15, + "memo": { + "solver_solve_time": 0.080912458, + "problem_class": "SOCP" + } + }, + { + "id": 460, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:06:20", + "solve_time": 22.299565076828003, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 461, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:06:42", + "solve_time": 21.298002243041992, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9460284749224446, + "dual_objective_value": -0.9460284748518045, + "duality_gap": -7.064004936552237e-11, + "primal_infeasibility": 3.478855069906872e-11, + "dual_infeasibility": 8.506553783847303e-09, + "iterations": 63, + "memo": { + "solver_solve_time": 0.339001291, + "problem_class": "SOCP" + } + }, + { + "id": 462, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:06:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 463, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:06:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 464, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:08:05", + "solve_time": 20.956520080566406, + "status": "OPTIMAL", + "primal_objective_value": -0.9460027956114715, + "dual_objective_value": -0.9459981676622777, + "duality_gap": -4.627949193758418e-06, + "primal_infeasibility": 2.900046732074137e-06, + "dual_infeasibility": 1.0668505768545404e-05, + "iterations": 475, + "memo": { + "solver_solve_time": 0.163330708, + "problem_class": "SOCP" + } + }, + { + "id": 465, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:08:54", + "solve_time": 42.34715795516968, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 466, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:09:57", + "solve_time": 57.389968156814575, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.9316011995967092, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 0.0004163234009667355, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 467, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:10:22", + "solve_time": 21.114145040512085, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9460284749224446, + "dual_objective_value": -0.9460284748518045, + "duality_gap": -7.064004936552237e-11, + "primal_infeasibility": 3.478855069906872e-11, + "dual_infeasibility": 8.506553783847303e-09, + "iterations": 63, + "memo": { + "solver_solve_time": 0.339042, + "problem_class": "SOCP" + } + }, + { + "id": 468, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:11:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 469, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:12:13", + "solve_time": 8.729975938796997, + "status": "OPTIMAL", + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 3.647422875, + "setup_time": [], + "iterations": 42, + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:12:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 470, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:12:24", + "solve_time": 4.559087753295898, + "status": "OPTIMAL", + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8408809166666666, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:12:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 471, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:16:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 472, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:16:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 473, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:16:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 474, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:26:33", + "solve_time": 38.296096086502075, + "status": "OPTIMAL", + "primal_objective_value": -0.9277286138855316, + "dual_objective_value": -0.9277286209962038, + "duality_gap": 7.1106721621916336e-09, + "primal_infeasibility": 5.686816721005497e-11, + "dual_infeasibility": 1.0939141340491139e-12, + "iterations": 58, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 31.5971865, + "setup_time": [], + "iterations": 58, + "primal_objective_value": -0.9277286138855316, + "dual_objective_value": -0.9277286209962038, + "duality_gap": 7.1106721621916336e-09, + "primal_infeasibility": 5.686816721005497e-11, + "dual_infeasibility": 1.0939141340491139e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:26:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 475, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:26:57", + "solve_time": 16.849349975585938, + "status": "OPTIMAL", + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 12.072145375, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:26:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 476, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:27:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 477, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:27:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 478, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:27:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 499, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:56:01", + "solve_time": 5.668828010559082, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8035435833333333, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:55:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 500, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:56:18", + "solve_time": 5.5808491706848145, + "status": "OPTIMAL", + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.49651104166666665, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 22:56:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 501, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:56:46", + "solve_time": 16.746599197387695, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121188174, + "dual_objective_value": -0.10256951121204069, + "duality_gap": 1.589561815507068e-13, + "primal_infeasibility": 8.039548008470551e-16, + "dual_infeasibility": 2.720397466104802e-14, + "iterations": 14, + "memo": { + "solver_solve_time": 0.443129, + "problem_class": "SOCP" + } + }, + { + "id": 502, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:57:03", + "solve_time": 17.025321006774902, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950565999576, + "dual_objective_value": -0.10256951114752975, + "duality_gap": 5.487533996650917e-09, + "primal_infeasibility": 2.6441459719661748e-11, + "dual_infeasibility": 2.0332286620010367e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 503, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:57:20", + "solve_time": 16.910020112991333, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951119546298, + "dual_objective_value": -0.10256951120226779, + "duality_gap": 6.804806718108125e-12, + "primal_infeasibility": 3.092966674770312e-14, + "dual_infeasibility": 2.36811594750051e-13, + "iterations": 13, + "memo": { + "solver_solve_time": 0.334672958, + "problem_class": "SOCP" + } + }, + { + "id": 504, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:57:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 505, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:57:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 506, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:58:11", + "solve_time": 50.8220100402832, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.1025668967864537, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.098899869826144e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 507, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:58:59", + "solve_time": 17.142093896865845, + "status": "OPTIMAL", + "primal_objective_value": -0.10256936649935693, + "dual_objective_value": -0.10257104661299753, + "duality_gap": 1.6801136406008332e-06, + "primal_infeasibility": 3.1910805185769294e-05, + "dual_infeasibility": 1.891547527204477e-07, + "iterations": 950, + "memo": { + "solver_solve_time": 0.306512833, + "problem_class": "SOCP" + } + }, + { + "id": 508, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:59:46", + "solve_time": 37.45549201965332, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.10256935572921497, + "dual_objective_value": -0.1025694147293237, + "duality_gap": 5.9000108729168055e-08, + "primal_infeasibility": 2.8997429768473637e-07, + "dual_infeasibility": 3.76033631227958e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 509, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T13:59:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 510, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:02:47", + "solve_time": 4.609687089920044, + "status": "UNKNOWN", + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.715404625, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 23:02:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 511, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:03:05", + "solve_time": 5.594038009643555, + "status": "OPTIMAL", + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.47516129166666665, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 23:03:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 512, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:04:07", + "solve_time": 52.38844394683838, + "status": "OPTIMAL", + "primal_objective_value": -6.496675072773684, + "dual_objective_value": -6.496675072817704, + "duality_gap": 4.4019898837177607e-11, + "primal_infeasibility": 8.612756727893201e-10, + "dual_infeasibility": 3.714323041760762e-09, + "iterations": 19, + "memo": { + "solver_solve_time": 0.12342425, + "problem_class": "SOCP" + } + }, + { + "id": 513, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:05:37", + "solve_time": 77.06227493286133, + "status": "OPTIMAL", + "primal_objective_value": -6.496674199067025, + "dual_objective_value": -6.496674193174276, + "duality_gap": -5.892748511371337e-09, + "primal_infeasibility": 2.237809310520621e-09, + "dual_infeasibility": 8.622386895665068e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 514, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:07:31", + "solve_time": 52.14936709403992, + "status": "OPTIMAL", + "primal_objective_value": -6.496675716987453, + "dual_objective_value": -6.496675716971549, + "duality_gap": -1.5903722783150442e-11, + "primal_infeasibility": 7.350808444749379e-13, + "dual_infeasibility": 7.798431676338478e-10, + "iterations": 17, + "memo": { + "solver_solve_time": 0.17480625, + "problem_class": "SOCP" + } + }, + { + "id": 515, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:07:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 516, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:07:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 517, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:12:59", + "solve_time": 57.17706084251404, + "status": "OPTIMAL", + "primal_objective_value": -6.496662894119256, + "dual_objective_value": -6.496659451196209, + "duality_gap": -3.4429230471033634e-06, + "primal_infeasibility": 8.634202940522347e-08, + "dual_infeasibility": 5.405298460172423e-06, + "iterations": 14375, + "memo": { + "solver_solve_time": 5.181465375, + "problem_class": "SOCP" + } + }, + { + "id": 518, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:14:57", + "solve_time": 104.95400619506836, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 519, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:14:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 520, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:19:43", + "solve_time": 6.598160266876221, + "status": "UNKNOWN", + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.153102083333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 23:19:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 521, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:19:59", + "solve_time": 6.538948059082031, + "status": "OPTIMAL", + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.6807733333333332, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-14 23:19:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 522, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:24:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 523, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:24:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 524, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:24:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 537, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:41:32", + "solve_time": 5.55631685256958, + "status": "MAX_ITER", + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.7122815416666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 00:41:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 538, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:41:45", + "solve_time": 5.536787986755371, + "status": "OPTIMAL", + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "iterations": 44, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6427959583333334, + "setup_time": [], + "iterations": 44, + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 00:41:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 539, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:41:56", + "solve_time": 0.15216612815856934, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 26673.000976502055, + "dual_objective_value": 26673.000976503732, + "duality_gap": -1.6771082300692797e-09, + "primal_infeasibility": 6.4391229604616e-06, + "dual_infeasibility": 1.2221958605691128e-11, + "iterations": 29, + "memo": { + "solver_solve_time": 0.095922207, + "problem_class": "SOCP" + } + }, + { + "id": 540, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", + "solve_time": 23.28376317024231, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 541, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", + "solve_time": 0.17055892944335938, + "status": "OPTIMAL", + "primal_objective_value": 26673.000987463758, + "dual_objective_value": 26673.000988293505, + "duality_gap": -8.297465683426708e-07, + "primal_infeasibility": 0.0008211845592554915, + "dual_infeasibility": 3.175354988442067e-09, + "iterations": 30, + "memo": { + "solver_solve_time": 0.114245291, + "problem_class": "SOCP" + } + }, + { + "id": 542, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 543, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 544, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:46:34", + "solve_time": 18.283209800720215, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 35809.49201866682, + "dual_objective_value": 36069.131423950195, + "duality_gap": -259.63940528337844, + "primal_infeasibility": 0.6278642052360084, + "dual_infeasibility": 2013643.3276811917, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.221846582999998, + "problem_class": "SOCP" + } + }, + { + "id": 545, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:47:26", + "solve_time": 36.98214912414551, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 546, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:47:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 547, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:50:02", + "solve_time": 6.5833518505096436, + "status": "MAX_ITER", + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 1.3252521666666666, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 00:49:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 548, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:50:07", + "solve_time": 5.615222930908203, + "status": "OPTIMAL", + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "iterations": 41, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.0267285833333333, + "setup_time": [], + "iterations": 41, + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 00:50:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 549, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:50:18", + "solve_time": 0.3952810764312744, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 181889.9302235155, + "dual_objective_value": 181889.93017808485, + "duality_gap": 4.543064278550446e-05, + "primal_infeasibility": 0.20507020561906186, + "dual_infeasibility": 1.6535033732446265e-07, + "iterations": 30, + "memo": { + "solver_solve_time": 0.215109335, + "problem_class": "SOCP" + } + }, + { + "id": 550, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:52:07", + "solve_time": 108.75608777999878, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 551, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:52:08", + "solve_time": 0.4621720314025879, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 181889.9476437784, + "dual_objective_value": 181889.94765594476, + "duality_gap": -1.216636155731976e-05, + "primal_infeasibility": 0.3529266178870372, + "dual_infeasibility": 2.339171186358583e-05, + "iterations": 40, + "memo": { + "solver_solve_time": 0.267833375, + "problem_class": "SOCP" + } + }, + { + "id": 552, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:52:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 553, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:52:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 554, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:52:59", + "solve_time": 38.64277791976929, + "status": "UNBOUNDED (INACCURATE)", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 100000, + "memo": { + "solver_solve_time": 38.448400791, + "problem_class": "SOCP" + } + }, + { + "id": 555, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:59:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 556, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T16:00:55", + "solve_time": 5.614400863647461, + "status": "UNKNOWN", + "primal_objective_value": 717664.7819529852, + "dual_objective_value": 717343.935387326, + "duality_gap": 320.84656565915793, + "primal_infeasibility": 1.4635089779954944e-05, + "dual_infeasibility": 0.0, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.008978, + "setup_time": [], + "iterations": 30, + "primal_objective_value": 717664.7819529852, + "dual_objective_value": 717343.935387326, + "duality_gap": 320.84656565915793, + "primal_infeasibility": 1.4635089779954944e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 01:00:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 557, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T16:01:04", + "solve_time": 8.602581024169922, + "status": "NUM_ERROR", + "primal_objective_value": 717367.7873780461, + "dual_objective_value": 717367.7875279884, + "duality_gap": 0.0001499423524364829, + "primal_infeasibility": 3.2577166049237135e-05, + "dual_infeasibility": 3.822526277112251e-09, + "iterations": 101, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.5169220416666667, + "setup_time": [], + "iterations": 101, + "primal_objective_value": 717367.7873780461, + "dual_objective_value": 717367.7875279884, + "duality_gap": 0.0001499423524364829, + "primal_infeasibility": 3.2577166049237135e-05, + "dual_infeasibility": 3.822526277112251e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 01:01:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 558, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:24:34", + "solve_time": 1.0301058292388916, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 717367.9694302354, + "dual_objective_value": 717367.9693405145, + "duality_gap": 8.972093928605318e-05, + "primal_infeasibility": 0.4553377125041338, + "dual_infeasibility": 1.7972121515951058e-07, + "iterations": 29, + "memo": { + "solver_solve_time": 0.401100872, + "problem_class": "SOCP" + } + }, + { + "id": 559, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:24:44", + "solve_time": 1.4604618549346924, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 717387.6566034524, + "dual_objective_value": 717387.6570615877, + "duality_gap": -0.0004581352695822716, + "primal_infeasibility": 0.010368232231233494, + "dual_infeasibility": 0.0016076899929897248, + "iterations": 70, + "memo": { + "solver_solve_time": 0.888042958, + "problem_class": "SOCP" + } + }, + { + "id": 560, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:24:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 561, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:24:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 562, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:24:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 563, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:28:41", + "solve_time": 69.69011402130127, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1426694.15480458, + "dual_objective_value": 1426060.9124832153, + "duality_gap": 633.2423213645816, + "primal_infeasibility": 4.495169240132521, + "dual_infeasibility": 668608.3395679782, + "iterations": 100000, + "memo": { + "solver_solve_time": 69.087200041, + "problem_class": "SOCP" + } + }, + { + "id": 564, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:30:24", + "solve_time": 10.792490005493164, + "status": "MAX_ITER", + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, + "dual_infeasibility": 0.0, + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 5.4686972916666665, + "setup_time": [], + "iterations": 39, + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 07:30:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 565, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T22:30:38", + "solve_time": 13.64169192314148, + "status": "INFEASIBLE", + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "iterations": 150, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "infeasible", + "solve_time": 9.060077083333333, + "setup_time": [], + "iterations": 150, + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-15 07:30:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 566, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:46:07", + "solve_time": 4.994290113449097, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 567, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:47:08", + "solve_time": 6.631985902786255, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 568, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:49:21", + "solve_time": 4.700660943984985, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 569, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:52:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 570, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:52:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 571, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:52:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 572, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:05", + "solve_time": 7.826324939727783, + "status": "OPTIMAL", + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8310375416666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 14:57:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 573, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:10", + "solve_time": 5.541210174560547, + "status": "OPTIMAL", + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.526994625, + "setup_time": [], + "iterations": 31, + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 14:57:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 574, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:19", + "solve_time": 0.1251518726348877, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038439863746, + "dual_objective_value": 7.852038439863737, + "duality_gap": 8.881784197001252e-15, + "primal_infeasibility": 5.942633532349437e-09, + "dual_infeasibility": 3.1698625599395943e-13, + "iterations": 26, + "memo": { + "solver_solve_time": 0.082240832, + "problem_class": "SOCP" + } + }, + { + "id": 575, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:38", + "solve_time": 18.378044843673706, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 576, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:38", + "solve_time": 0.31072497367858887, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 577, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:57", + "solve_time": 18.66447901725769, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852068168748205, + "dual_objective_value": 7.852068714033491, + "duality_gap": -5.452852862575241e-07, + "primal_infeasibility": 1.3471978048109906e-08, + "dual_infeasibility": 0.00038825804604077893, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.617637666, + "problem_class": "SOCP" + } + }, + { + "id": 578, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:58:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 579, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:58:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 580, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T06:03:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 581, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T06:05:24", + "solve_time": 78.08418297767639, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038526235663, + "dual_objective_value": 7.852043972235164, + "duality_gap": -5.445999500253151e-06, + "primal_infeasibility": 1.669993096788863e-08, + "dual_infeasibility": 4.0060306334744484e-07, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 582, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T06:05:37", + "solve_time": 5.596590995788574, + "status": "OPTIMAL", + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.72104875, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 15:05:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 583, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T06:05:50", + "solve_time": 5.596127033233643, + "status": "OPTIMAL", + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.49117570833333335, + "setup_time": [], + "iterations": 31, + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 15:05:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 584, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:27:42", + "solve_time": 5.686886787414551, + "status": "UNKNOWN", + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.1679639583333334, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:27:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 585, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:27:48", + "solve_time": 5.527230978012085, + "status": "OPTIMAL", + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.9435232916666667, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:27:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 586, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:27:58", + "solve_time": 0.3410778045654297, + "status": "OPTIMAL", + "primal_objective_value": 67.16503110771706, + "dual_objective_value": 67.16503110770685, + "duality_gap": 1.0203393685515039e-11, + "primal_infeasibility": 1.3166341677133402e-05, + "dual_infeasibility": 3.192143596063497e-10, + "iterations": 28, + "memo": { + "solver_solve_time": 0.207739377, + "problem_class": "SOCP" + } + }, + { + "id": 587, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:29:28", + "solve_time": 89.21416902542114, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 588, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:29:28", + "solve_time": 0.8036279678344727, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 589, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:30:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 590, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:30:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 591, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:30:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 592, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:02", + "solve_time": 7.929091930389404, + "status": "UNKNOWN", + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.7880629583333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:32:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 593, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:07", + "solve_time": 5.567889928817749, + "status": "OPTIMAL", + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "iterations": 60, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.9609340416666667, + "setup_time": [], + "iterations": 60, + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:33:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 594, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 595, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 596, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 597, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:34:10", + "solve_time": 8.647787094116211, + "status": "UNKNOWN", + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 4.962180541666667, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:34:08", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 598, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:34:22", + "solve_time": 11.663788080215454, + "status": "OPTIMAL", + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "iterations": 79, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 6.1357995, + "setup_time": [], + "iterations": 79, + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:34:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 599, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:34:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 600, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:34:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 601, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:34:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 602, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:59:50", + "solve_time": 6.541438102722168, + "status": "OPTIMAL", + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.6325337083333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 18:59:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 603, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:00:03", + "solve_time": 12.579945087432861, + "status": "OPTIMAL", + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 7.55835425, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:00:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 604, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 605, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 606, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 607, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 608, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 609, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:04:34", + "solve_time": 75.3174741268158, + "status": "OPTIMAL", + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 66.21210475, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:04:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 610, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 611, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 612, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 613, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 614, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 615, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:14", + "solve_time": 5.600940942764282, + "status": "OPTIMAL", + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.6269358333333332, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:06:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 616, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:26", + "solve_time": 11.690231084823608, + "status": "OPTIMAL", + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 7.940229291666666, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:06:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 617, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 618, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 619, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 620, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 621, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 622, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:08:25", + "solve_time": 75.14031600952148, + "status": "OPTIMAL", + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 68.064607875, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:08:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 623, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 624, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 625, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 626, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 627, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 628, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:11", + "solve_time": 4.393420934677124, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 629, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:23", + "solve_time": 4.34223198890686, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 630, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:32", + "solve_time": 0.4248371124267578, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 132.63530797336855, + "dual_objective_value": 132.6353098328787, + "duality_gap": -1.8595101494156552e-06, + "primal_infeasibility": 2.976961436986348e-06, + "dual_infeasibility": 6.742415211712427e-08, + "iterations": 19, + "memo": { + "solver_solve_time": 0.38295104, + "problem_class": "SDP" + } + }, + { + "id": 631, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": 1.2074768543243408, + "status": "OPTIMAL", + "primal_objective_value": 132.63567622801477, + "dual_objective_value": 132.63567623702812, + "duality_gap": -9.013348289954592e-09, + "primal_infeasibility": 1.4353448618618097e-08, + "dual_infeasibility": 3.018302548232494e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 632, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 633, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 634, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 635, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 636, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:13:05", + "solve_time": 21.932883977890015, + "status": "OPTIMAL", + "primal_objective_value": 132.67032214278458, + "dual_objective_value": 132.67032627913713, + "duality_gap": -4.136352544037436e-06, + "primal_infeasibility": 2.4188989473182798e-06, + "dual_infeasibility": 0.0024103317967444286, + "iterations": 83675, + "memo": { + "solver_solve_time": 21.892902833, + "problem_class": "SDP" + } + }, + { + "id": 637, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:13:05", + "solve_time": 0.15076208114624023, + "status": "OPTIMAL", + "primal_objective_value": 132.6356794538592, + "dual_objective_value": 132.63567502877504, + "duality_gap": 4.425084171089111e-06, + "primal_infeasibility": 6.293316373095602e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 638, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:13:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 639, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:13:58", + "solve_time": 4.378378868103027, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 640, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:18", + "solve_time": 4.43747615814209, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 641, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:25", + "solve_time": 7.333973407745361, + "status": "OPTIMAL", + "primal_objective_value": 133.11452300392386, + "dual_objective_value": 133.1145231602386, + "duality_gap": -1.5631474070687545e-07, + "primal_infeasibility": 5.880442946566506e-07, + "dual_infeasibility": 2.416827226267145e-08, + "iterations": 20, + "memo": { + "solver_solve_time": 7.194446292, + "problem_class": "SDP" + } + }, + { + "id": 642, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": 4.541913032531738, + "status": "OPTIMAL", + "primal_objective_value": 133.11458873614384, + "dual_objective_value": 133.11458873454836, + "duality_gap": 1.5954810805851594e-09, + "primal_infeasibility": 5.1857958079351704e-09, + "dual_infeasibility": 9.454734908598581e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 643, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 644, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 645, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 646, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 647, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:15:48", + "solve_time": 78.31024694442749, + "status": "OPTIMAL", + "primal_objective_value": 133.206421971091, + "dual_objective_value": 133.2064255039062, + "duality_gap": -3.532815185280924e-06, + "primal_infeasibility": 1.809776268177368e-06, + "dual_infeasibility": 0.0026429235860219477, + "iterations": 90650, + "memo": { + "solver_solve_time": 78.17087804100001, + "problem_class": "SDP" + } + }, + { + "id": 648, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:15:49", + "solve_time": 0.618751049041748, + "status": "OPTIMAL", + "primal_objective_value": 133.11459453047246, + "dual_objective_value": 133.11459273039674, + "duality_gap": 1.8000757222580432e-06, + "primal_infeasibility": 1.4560143550748557e-10, + "dual_infeasibility": 2.0041502554605766e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 649, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:15:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 650, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:16:49", + "solve_time": 6.552584886550903, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.8054952916666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:16:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 651, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:05", + "solve_time": 6.273025035858154, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.5287795833333333, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:17:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 652, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:13", + "solve_time": 8.003314018249512, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172821147114, + "dual_objective_value": -0.5665172817725594, + "duality_gap": -3.421519734203571e-10, + "primal_infeasibility": 1.022967781834959e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 4.988927835, + "problem_class": "SDP" + } + }, + { + "id": 653, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": 8.43869686126709, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172762101253, + "dual_objective_value": -0.5665172760832871, + "duality_gap": -1.2683820660441825e-10, + "primal_infeasibility": 2.9533438966925347e-08, + "dual_infeasibility": 4.1854682344393564e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 654, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 655, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 656, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 657, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 658, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:21:23", + "solve_time": 3.5877089500427246, + "status": "OPTIMAL", + "primal_objective_value": -0.566517267707974, + "dual_objective_value": -0.5665172734748258, + "duality_gap": 5.766851884914104e-09, + "primal_infeasibility": 6.702895394246997e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 659, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:21:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 660, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:22:32", + "solve_time": 6.103507041931152, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.3465764166666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:22:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 661, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:22:38", + "solve_time": 6.765030860900879, + "status": "OPTIMAL", + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.0417528333333332, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:22:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 662, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:22:51", + "solve_time": 5.150921821594238, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154099679571, + "dual_objective_value": -0.6715154097625702, + "duality_gap": -2.0538692968585792e-10, + "primal_infeasibility": 3.512925202723288e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.10602146, + "problem_class": "SDP" + } + }, + { + "id": 663, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:22:59", + "solve_time": 7.646672964096069, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154087273556, + "dual_objective_value": -0.6715154086542251, + "duality_gap": -7.313050165436152e-11, + "primal_infeasibility": 1.1755370688932572e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 664, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:03", + "solve_time": 3.7065846920013428, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.6715149919393316, + "dual_objective_value": -0.6715154519149769, + "duality_gap": 4.599756452394743e-07, + "primal_infeasibility": 9.880028136196605e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 665, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 666, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 667, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 668, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 669, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 670, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:08", + "solve_time": 6.23797607421875, + "status": "OPTIMAL", + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5270425833333334, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:26:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 671, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:15", + "solve_time": 6.838447093963623, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.1125775416666666, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:26:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 672, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:32", + "solve_time": 4.8658952713012695, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274329610303, + "dual_objective_value": -0.9726274322104886, + "duality_gap": -7.505416288466904e-10, + "primal_infeasibility": 1.1813692812382962e-07, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "solver_solve_time": 1.8078781689999999, + "problem_class": "SDP" + } + }, + { + "id": 673, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": 7.340211868286133, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274304903915, + "dual_objective_value": -0.9726274299150273, + "duality_gap": -5.753642007277904e-10, + "primal_infeasibility": 7.421682204955683e-08, + "dual_infeasibility": 2.5603242314031326e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 674, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 675, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 676, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 677, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 678, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:44", + "solve_time": 3.6738202571868896, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9726272676562057, + "dual_objective_value": -0.9726274431143305, + "duality_gap": 1.7545812480701528e-07, + "primal_infeasibility": 6.41651460356969e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 679, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 680, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:27:58", + "solve_time": 6.200899124145508, + "status": "UNKNOWN", + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.50864925, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:27:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 681, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:04", + "solve_time": 6.003604173660278, + "status": "OPTIMAL", + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.293280916666667, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:28:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 682, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:09", + "solve_time": 5.211400032043457, + "status": "OPTIMAL", + "primal_objective_value": -7.056985719383242, + "dual_objective_value": -7.0569856944182865, + "duality_gap": -2.4964955436246328e-08, + "primal_infeasibility": 2.7109763353502106e-06, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.141730209, + "problem_class": "SDP" + } + }, + { + "id": 683, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:17", + "solve_time": 8.097594976425171, + "status": "OPTIMAL", + "primal_objective_value": -7.056980177129674, + "dual_objective_value": -7.056980175019456, + "duality_gap": -2.1102177782950093e-09, + "primal_infeasibility": 8.034408651651353e-08, + "dual_infeasibility": 1.259191489724154e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 684, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:21", + "solve_time": 3.7246809005737305, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -7.056979925817409, + "dual_objective_value": -7.056980053305484, + "duality_gap": 1.2748807520779337e-07, + "primal_infeasibility": 1.428558638956882e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 685, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 686, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 687, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 688, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 689, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 690, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:26", + "solve_time": 4.813464164733887, + "status": "OPTIMAL", + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.30856429166666666, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:30:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 691, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:31", + "solve_time": 4.935827970504761, + "status": "OPTIMAL", + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0.0, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.32204354166666666, + "setup_time": [], + "iterations": 30, + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:30:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 692, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:38", + "solve_time": 0.014431953430175781, + "status": "OPTIMAL", + "primal_objective_value": -18.057693540129556, + "dual_objective_value": -18.05769338831607, + "duality_gap": -1.5181348445025833e-07, + "primal_infeasibility": 0.02414985830941088, + "dual_infeasibility": 0.0, + "iterations": 56, + "memo": { + "solver_solve_time": 0.011695578, + "problem_class": "SDP" + } + }, + { + "id": 693, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:39", + "solve_time": 0.9244139194488525, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002878232961825694, + "dual_objective_value": -20.48065620588266, + "duality_gap": 20.477777972920833, + "primal_infeasibility": 0.27819661314555105, + "dual_infeasibility": 546368.1134344704, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.921197333, + "problem_class": "SDP" + } + }, + { + "id": 694, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": 0.16951608657836914, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 695, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 696, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 697, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 698, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 699, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": 0.011685848236083984, + "status": "OPTIMAL", + "primal_objective_value": -17.78462618700244, + "dual_objective_value": -17.784627142638215, + "duality_gap": 9.556357731810294e-07, + "primal_infeasibility": 1.9992999166489883e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 700, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 701, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:31:48", + "solve_time": 5.061094760894775, + "status": "MAX_ITER", + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.41280133333333335, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:31:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 702, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:31:54", + "solve_time": 5.130542039871216, + "status": "OPTIMAL", + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.33466908333333334, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:31:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 703, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:02", + "solve_time": 0.05029797554016113, + "status": "OPTIMAL", + "primal_objective_value": -8.30000052797604, + "dual_objective_value": -8.300000490399094, + "duality_gap": -3.7576945999262534e-08, + "primal_infeasibility": 1.0799058809794016e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "solver_solve_time": 0.04589692, + "problem_class": "SDP" + } + }, + { + "id": 704, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": 4.882005929946899, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.0019666666133589523, + "dual_objective_value": -1.6631072323702496, + "duality_gap": 1.6611405657568907, + "primal_infeasibility": 0.166111590183817, + "dual_infeasibility": 16899.147636217396, + "iterations": 100000, + "memo": { + "solver_solve_time": 4.877240708, + "problem_class": "SDP" + } + }, + { + "id": 705, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": 0.1693129539489746, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 706, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 707, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 708, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 709, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 710, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": 0.037503957748413086, + "status": "OPTIMAL", + "primal_objective_value": -8.299999482545115, + "dual_objective_value": -8.300000044307849, + "duality_gap": 5.617627341081288e-07, + "primal_infeasibility": 1.6670044255637843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 711, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 712, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:50", + "solve_time": 5.292490005493164, + "status": "MAX_ITER", + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.5662195416666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:32:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 713, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:55", + "solve_time": 5.323393106460571, + "status": "NUM_ERROR", + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.479292875, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:32:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 714, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:05", + "solve_time": 0.22819089889526367, + "status": "OPTIMAL", + "primal_objective_value": -13.633267734899809, + "dual_objective_value": -13.633267702679126, + "duality_gap": -3.2220683010564244e-08, + "primal_infeasibility": 2.693486524788012e-07, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "solver_solve_time": 0.21956029, + "problem_class": "SDP" + } + }, + { + "id": 715, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": 14.102894306182861, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.037735833422812004, + "dual_objective_value": -0.27289208768706114, + "duality_gap": 0.23515625426424913, + "primal_infeasibility": 0.13917932877951675, + "dual_infeasibility": 1893.5597441188274, + "iterations": 100000, + "memo": { + "solver_solve_time": 14.09346725, + "problem_class": "SDP" + } + }, + { + "id": 716, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": 0.3841969966888428, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 717, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 718, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 719, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 720, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 721, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:20", + "solve_time": 0.1595902442932129, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -13.633263748445593, + "dual_objective_value": -13.633266893655158, + "duality_gap": 3.1452095647921396e-06, + "primal_infeasibility": 6.364345948755367e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 722, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 723, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:08", + "solve_time": 5.934272050857544, + "status": "UNKNOWN", + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.0662595, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:34:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 724, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:13", + "solve_time": 5.522533893585205, + "status": "NUM_ERROR", + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.6153702916666667, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:34:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 725, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:14", + "solve_time": 0.8667011260986328, + "status": "OPTIMAL", + "primal_objective_value": -19.79423318506499, + "dual_objective_value": -19.79423315316147, + "duality_gap": -3.190351804960301e-08, + "primal_infeasibility": 5.103843191955561e-07, + "dual_infeasibility": 5.641713395479458e-08, + "iterations": 32, + "memo": { + "solver_solve_time": 0.849402712, + "problem_class": "SDP" + } + }, + { + "id": 726, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:42", + "solve_time": 27.7015540599823, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002563905576329976, + "dual_objective_value": -2.112935527155603, + "duality_gap": 2.110371621579273, + "primal_infeasibility": 0.11510210278659297, + "dual_infeasibility": 14854.924304999919, + "iterations": 100000, + "memo": { + "solver_solve_time": 27.679751250000002, + "problem_class": "SDP" + } + }, + { + "id": 727, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": 1.2850801944732666, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 728, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 729, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 730, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 731, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 732, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": 0.3332328796386719, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -19.79422577234397, + "dual_objective_value": -19.7942315506204, + "duality_gap": 5.778276428003437e-06, + "primal_infeasibility": 1.3327565863841907e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 733, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 734, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:35:32", + "solve_time": 6.201632738113403, + "status": "UNKNOWN", + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.2019423333333332, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:35:30", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 735, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:35:38", + "solve_time": 6.2450501918792725, + "status": "NUM_ERROR", + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.100189625, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:35:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 736, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:35:41", + "solve_time": 2.2983057498931885, + "status": "OPTIMAL", + "primal_objective_value": -16.88364881340114, + "dual_objective_value": -16.883648809313648, + "duality_gap": -4.087493010729304e-09, + "primal_infeasibility": 5.620802961416378e-07, + "dual_infeasibility": 5.697256261448682e-09, + "iterations": 35, + "memo": { + "solver_solve_time": 2.262509295, + "problem_class": "SDP" + } + }, + { + "id": 737, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:35", + "solve_time": 53.787150144577026, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.17807903005516243, + "dual_objective_value": -0.23275478696713833, + "duality_gap": 0.054675756911975903, + "primal_infeasibility": 0.09362750982167806, + "dual_infeasibility": 369.6736319443367, + "iterations": 100000, + "memo": { + "solver_solve_time": 53.739289541, + "problem_class": "SDP" + } + }, + { + "id": 738, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:37", + "solve_time": 2.2808189392089844, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 739, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 740, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 741, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 742, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 743, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:39", + "solve_time": 0.6724143028259277, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -16.883575406676048, + "dual_objective_value": -16.883604992850316, + "duality_gap": 2.9586174267848264e-05, + "primal_infeasibility": 2.7521358841549283e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 744, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 745, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:48:27", + "solve_time": 6.972930669784546, + "status": "UNKNOWN", + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.591642125, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:48:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 746, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:48:33", + "solve_time": 6.547445058822632, + "status": "NUM_ERROR", + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.204321625, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:48:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 747, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:48:39", + "solve_time": 5.831175804138184, + "status": "OPTIMAL", + "primal_objective_value": -37.3044718247362, + "dual_objective_value": -37.30447181818093, + "duality_gap": -6.5552683281566715e-09, + "primal_infeasibility": 1.4634649666883939e-06, + "dual_infeasibility": 3.059050321188013e-06, + "iterations": 42, + "memo": { + "solver_solve_time": 5.772460962, + "problem_class": "SDP" + } + }, + { + "id": 748, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:12", + "solve_time": 92.80738425254822, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.5214729254574336, + "dual_objective_value": -1.0154678495708611, + "duality_gap": 0.4939949241134275, + "primal_infeasibility": 0.08196294538901851, + "dual_infeasibility": 3266.178827189497, + "iterations": 100000, + "memo": { + "solver_solve_time": 92.711285291, + "problem_class": "SDP" + } + }, + { + "id": 749, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": 4.976245164871216, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 750, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 751, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 752, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 753, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 754, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:37", + "solve_time": 6.875578880310059, + "status": "UNKNOWN", + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.5373036666666666, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:50:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 755, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:45", + "solve_time": 7.516172170639038, + "status": "NUM_ERROR", + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.190012041666667, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:50:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 756, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:59", + "solve_time": 5.778800010681152, + "status": "OPTIMAL", + "primal_objective_value": -37.3044718247362, + "dual_objective_value": -37.30447181818093, + "duality_gap": -6.5552683281566715e-09, + "primal_infeasibility": 1.4634649666883939e-06, + "dual_infeasibility": 3.059050321188013e-06, + "iterations": 42, + "memo": { + "solver_solve_time": 5.7201280820000004, + "problem_class": "SDP" + } + }, + { + "id": 757, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:51:01", + "solve_time": 1.3343961238861084, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -37.30434823321163, + "dual_objective_value": -37.30443772697064, + "duality_gap": 8.94937590132372e-05, + "primal_infeasibility": 2.9293219588294305e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 758, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:51:45", + "solve_time": 6.783206939697266, + "status": "UNKNOWN", + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.0850477916666668, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:51:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 759, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:51:54", + "solve_time": 8.334377765655518, + "status": "NUM_ERROR", + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.5914079583333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:51:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 760, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:52:05", + "solve_time": 10.574847936630249, + "status": "OPTIMAL", + "primal_objective_value": -20.625077113896168, + "dual_objective_value": -20.625077105250966, + "duality_gap": -8.64520188770257e-09, + "primal_infeasibility": 6.579981870625703e-07, + "dual_infeasibility": 2.3499840470621547e-07, + "iterations": 39, + "memo": { + "solver_solve_time": 10.475649665, + "problem_class": "SDP" + } + }, + { + "id": 761, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:52:08", + "solve_time": 2.546146869659424, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.625054215291936, + "dual_objective_value": -20.625079174008114, + "duality_gap": 2.4958716178247187e-05, + "primal_infeasibility": 7.626469959925607e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 762, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:52:27", + "solve_time": 9.446385860443115, + "status": "UNKNOWN", + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 3.2125922916666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:52:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 763, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:52:40", + "solve_time": 12.659881830215454, + "status": "NUM_ERROR", + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.312520041666667, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:52:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 764, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:53:01", + "solve_time": 20.004897117614746, + "status": "OPTIMAL", + "primal_objective_value": -20.2863714283772, + "dual_objective_value": -20.286371308207375, + "duality_gap": -1.201698260899775e-07, + "primal_infeasibility": 5.539607872665644e-07, + "dual_infeasibility": 1.4511474711248118e-07, + "iterations": 40, + "memo": { + "solver_solve_time": 19.842628374, + "problem_class": "SDP" + } + }, + { + "id": 765, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:53:05", + "solve_time": 4.108912706375122, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.286315458750884, + "dual_objective_value": -20.286372440169522, + "duality_gap": 5.698141863774708e-05, + "primal_infeasibility": 2.99146677629299e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 766, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:53:29", + "solve_time": 12.02483320236206, + "status": "UNKNOWN", + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.048848416666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:53:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 767, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:53:47", + "solve_time": 17.167847871780396, + "status": "NUM_ERROR", + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 10.196318083333333, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:53:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 768, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:54:17", + "solve_time": 29.91910195350647, + "status": "OPTIMAL", + "primal_objective_value": -14.675430563285023, + "dual_objective_value": -14.675430500128785, + "duality_gap": -6.315623757302546e-08, + "primal_infeasibility": 1.0734959395341116e-06, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "solver_solve_time": 29.6817975, + "problem_class": "SDP" + } + }, + { + "id": 769, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:54:24", + "solve_time": 6.653412103652954, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -14.67540228481323, + "dual_objective_value": -14.675431392929916, + "duality_gap": 2.910811668499491e-05, + "primal_infeasibility": 1.4589427065347405e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 770, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:54:50", + "solve_time": 15.176681995391846, + "status": "UNKNOWN", + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 8.356905458333333, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:54:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 771, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:55:16", + "solve_time": 24.90148401260376, + "status": "NUM_ERROR", + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0.0, + "iterations": 43, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 17.833667083333335, + "setup_time": [], + "iterations": 43, + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:55:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 772, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:56:15", + "solve_time": 58.60123419761658, + "status": "OPTIMAL", + "primal_objective_value": -38.53310978438966, + "dual_objective_value": -38.53310974843417, + "duality_gap": -3.5955487476257986e-08, + "primal_infeasibility": 1.3387459817271676e-06, + "dual_infeasibility": 3.600325513296991e-11, + "iterations": 44, + "memo": { + "solver_solve_time": 58.209529293, + "problem_class": "SDP" + } + }, + { + "id": 773, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:56:29", + "solve_time": 13.28674602508545, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -38.532875373216974, + "dual_objective_value": -38.53307092893413, + "duality_gap": 0.00019555571715557107, + "primal_infeasibility": 2.813485631313094e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 774, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:57:05", + "solve_time": 21.006484985351562, + "status": "UNKNOWN", + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 11.894748666666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:57:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 775, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:57:44", + "solve_time": 38.14123892784119, + "status": "NUM_ERROR", + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0.0, + "iterations": 47, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 30.063784625, + "setup_time": [], + "iterations": 47, + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 19:57:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 776, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:01:21", + "solve_time": 7.806764125823975, + "status": "UNKNOWN", + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.098992625, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:01:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 777, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:01:31", + "solve_time": 9.282496929168701, + "status": "NUM_ERROR", + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.559211625, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:01:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 778, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:01:51", + "solve_time": 10.645551919937134, + "status": "OPTIMAL", + "primal_objective_value": -20.625077113896168, + "dual_objective_value": -20.625077105250966, + "duality_gap": -8.64520188770257e-09, + "primal_infeasibility": 6.579981870625703e-07, + "dual_infeasibility": 2.3499840470621547e-07, + "iterations": 39, + "memo": { + "solver_solve_time": 10.542696963000001, + "problem_class": "SDP" + } + }, + { + "id": 779, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:01:53", + "solve_time": 2.557873249053955, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.625054215291936, + "dual_objective_value": -20.625079174008114, + "duality_gap": 2.4958716178247187e-05, + "primal_infeasibility": 7.626469959925607e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 780, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:02:09", + "solve_time": 8.10211992263794, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 781, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 782, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 783, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 784, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 785, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 786, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:05:10", + "solve_time": 9.326553106307983, + "status": "UNKNOWN", + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 3.0677360416666666, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:05:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 787, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:05:22", + "solve_time": 11.393048763275146, + "status": "NUM_ERROR", + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.088460041666667, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:05:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 788, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:05:50", + "solve_time": 19.99690079689026, + "status": "OPTIMAL", + "primal_objective_value": -20.2863714283772, + "dual_objective_value": -20.286371308207375, + "duality_gap": -1.201698260899775e-07, + "primal_infeasibility": 5.539607872665644e-07, + "dual_infeasibility": 1.4511474711248118e-07, + "iterations": 40, + "memo": { + "solver_solve_time": 19.832786835, + "problem_class": "SDP" + } + }, + { + "id": 789, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:05:55", + "solve_time": 4.0786097049713135, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.286315458750884, + "dual_objective_value": -20.286372440169522, + "duality_gap": 5.698141863774708e-05, + "primal_infeasibility": 2.99146677629299e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 790, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 791, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 792, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 793, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 794, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 795, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:26", + "solve_time": 12.640835762023926, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 796, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:09:40", + "solve_time": 10.996235847473145, + "status": "UNKNOWN", + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.005379875, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:09:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 797, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:09:58", + "solve_time": 17.221930980682373, + "status": "NUM_ERROR", + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 10.214732958333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:09:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 798, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:34", + "solve_time": 29.05992603302002, + "status": "OPTIMAL", + "primal_objective_value": -14.675430563285023, + "dual_objective_value": -14.675430500128785, + "duality_gap": -6.315623757302546e-08, + "primal_infeasibility": 1.0734959395341116e-06, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "solver_solve_time": 28.788269375, + "problem_class": "SDP" + } + }, + { + "id": 799, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:41", + "solve_time": 6.4581170082092285, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -14.67540228481323, + "dual_objective_value": -14.675431392929916, + "duality_gap": 2.910811668499491e-05, + "primal_infeasibility": 1.4589427065347405e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 800, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 801, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 802, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 803, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 804, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 805, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:11:20", + "solve_time": 17.646233081817627, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 806, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:12:17", + "solve_time": 16.087404012680054, + "status": "UNKNOWN", + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 8.203628875, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:12:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 807, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:12:43", + "solve_time": 24.995198965072632, + "status": "NUM_ERROR", + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0.0, + "iterations": 43, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 17.137565416666668, + "setup_time": [], + "iterations": 43, + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:12:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 808, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:13:49", + "solve_time": 56.15797710418701, + "status": "OPTIMAL", + "primal_objective_value": -38.53310978438966, + "dual_objective_value": -38.53310974843417, + "duality_gap": -3.5955487476257986e-08, + "primal_infeasibility": 1.3387459817271676e-06, + "dual_infeasibility": 3.600325513296991e-11, + "iterations": 44, + "memo": { + "solver_solve_time": 55.823745497, + "problem_class": "SDP" + } + }, + { + "id": 809, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:01", + "solve_time": 11.48241901397705, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -38.532875373216974, + "dual_objective_value": -38.53307092893413, + "duality_gap": 0.00019555571715557107, + "primal_infeasibility": 2.813485631313094e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 810, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 811, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 812, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 813, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 814, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 815, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:51", + "solve_time": 27.150655031204224, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 816, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:15:58", + "solve_time": 20.878068923950195, + "status": "UNKNOWN", + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 11.885887208333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:15:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 817, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:16:38", + "solve_time": 39.034053802490234, + "status": "NUM_ERROR", + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0.0, + "iterations": 47, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 30.069223958333332, + "setup_time": [], + "iterations": 47, + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:16:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 818, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:11", + "solve_time": 17.384504079818726, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -31.95851149383577, + "dual_objective_value": -31.95870615260608, + "duality_gap": 0.000194658770311662, + "primal_infeasibility": 1.7090596773415e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 819, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 820, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 821, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 822, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 823, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 824, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:20:14", + "solve_time": 38.3471896648407, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 825, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:23:41", + "solve_time": 18.602707147598267, + "status": "OPTIMAL", + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.168329, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:23:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 826, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:24:33", + "solve_time": 52.330207109451294, + "status": "NUM_ERROR", + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 38.95986383333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:24:30", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 827, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:26:15", + "solve_time": 51.45907402038574, + "status": "OPTIMAL", + "primal_objective_value": -629.1552658005733, + "dual_objective_value": -629.1552929633996, + "duality_gap": 2.716282631354261e-05, + "primal_infeasibility": 2.369371882908525e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 828, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:28:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 829, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:28:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 830, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:28:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 831, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:28:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 832, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:28:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 833, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:29:45", + "solve_time": 33.080212116241455, + "status": "OPTIMAL", + "primal_objective_value": -4005.6012880134062, + "dual_objective_value": -4005.6013163667785, + "duality_gap": 2.8353372272249544e-05, + "primal_infeasibility": 5.7348549598162015e-11, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 8.708667666666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -4005.6012880134062, + "dual_objective_value": -4005.6013163667785, + "duality_gap": 2.8353372272249544e-05, + "primal_infeasibility": 5.7348549598162015e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:29:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 834, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:32:58", + "solve_time": 97.77459287643433, + "status": "OPTIMAL", + "primal_objective_value": -4005.6011905473815, + "dual_objective_value": -4005.6013169406397, + "duality_gap": 0.00012639325814234326, + "primal_infeasibility": 7.832639830764701e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 835, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 836, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 837, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 838, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 839, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 840, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:34:11", + "solve_time": 5.41062593460083, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 841, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:34:15", + "solve_time": 4.2922632694244385, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 842, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:34:36", + "solve_time": 4.297234773635864, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 843, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:34:40", + "solve_time": 4.273474931716919, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 844, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:12", + "solve_time": 4.949815988540649, + "status": "OPTIMAL", + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.38025133333333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:35:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 845, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:17", + "solve_time": 4.91975998878479, + "status": "NUM_ERROR", + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.30531395833333336, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-16 20:35:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 846, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:27", + "solve_time": 0.005463123321533203, + "status": "OPTIMAL", + "primal_objective_value": -56.95458417169877, + "dual_objective_value": -56.954584100815666, + "duality_gap": -7.088310383096541e-08, + "primal_infeasibility": 1.2182104934532567e-06, + "dual_infeasibility": 1.935530761916017e-08, + "iterations": 21, + "memo": { + "solver_solve_time": 0.002227752, + "problem_class": "SDP" + } + }, + { + "id": 847, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:27", + "solve_time": 0.04079627990722656, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 848, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:27", + "solve_time": 0.053626060485839844, + "status": "OPTIMAL", + "primal_objective_value": -56.95290556196835, + "dual_objective_value": -56.95257093437306, + "duality_gap": -0.00033462759529356845, + "primal_infeasibility": 4.360158022165924e-06, + "dual_infeasibility": 9.60043824422556e-06, + "iterations": 7875, + "memo": { + "solver_solve_time": 0.050412208, + "problem_class": "SDP" + } + }, + { + "id": 849, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:27", + "solve_time": 0.00951695442199707, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -56.946017137117806, + "dual_objective_value": -56.94340849281433, + "duality_gap": -0.0026086443034785134, + "primal_infeasibility": 1.9356932179028497e-06, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 850, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 851, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 852, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 853, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 854, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 855, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:33", + "solve_time": 7.201956748962402, + "status": "MAX_ITER", + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.4340955833333333, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:16:30", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 856, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:38", + "solve_time": 5.164846897125244, + "status": "OPTIMAL", + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.513974, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:16:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 857, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:51", + "solve_time": 0.006082057952880859, + "status": "OPTIMAL", + "primal_objective_value": -274.76580456156256, + "dual_objective_value": -274.7658044528675, + "duality_gap": -1.0869507605093531e-07, + "primal_infeasibility": 2.9587869724570718e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.002680333, + "problem_class": "SDP" + } + }, + { + "id": 858, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:51", + "solve_time": 0.04786086082458496, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 859, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:51", + "solve_time": 0.05469679832458496, + "status": "OPTIMAL", + "primal_objective_value": -274.8169686239859, + "dual_objective_value": -274.8175011426577, + "duality_gap": 0.0005325186718323494, + "primal_infeasibility": 1.5793940777175766e-05, + "dual_infeasibility": 5.0915418172079886e-09, + "iterations": 7175, + "memo": { + "solver_solve_time": 0.051255083, + "problem_class": "SDP" + } + }, + { + "id": 860, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:16:51", + "solve_time": 0.009414196014404297, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -274.7642606658802, + "dual_objective_value": -274.7640791113404, + "duality_gap": -0.00018155453983581538, + "primal_infeasibility": 2.067736809821613e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 861, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 862, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 863, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 864, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 865, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 866, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:20", + "solve_time": 4.87605094909668, + "status": "UNKNOWN", + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.2984519583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:17:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 867, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:25", + "solve_time": 4.9117021560668945, + "status": "NUM_ERROR", + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.30733883333333334, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:17:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 868, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:36", + "solve_time": 0.005780935287475586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -362.4299072470292, + "dual_objective_value": -362.4295803431538, + "duality_gap": -0.000326903875361495, + "primal_infeasibility": 4.958727500256144e-06, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "solver_solve_time": 0.001926126, + "problem_class": "SDP" + } + }, + { + "id": 869, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:36", + "solve_time": 0.04375004768371582, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 870, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:36", + "solve_time": 0.08634090423583984, + "status": "OPTIMAL", + "primal_objective_value": -320.9234414376666, + "dual_objective_value": -320.92497928960995, + "duality_gap": 0.0015378519433397742, + "primal_infeasibility": 3.052930540788306e-06, + "dual_infeasibility": 0.00027660204589100273, + "iterations": 13300, + "memo": { + "solver_solve_time": 0.082843541, + "problem_class": "SDP" + } + }, + { + "id": 871, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:36", + "solve_time": 0.00928187370300293, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -363.08837704719326, + "dual_objective_value": -362.65312853712743, + "duality_gap": -0.43524851006583276, + "primal_infeasibility": 0.0031096059091866054, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 872, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 873, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 874, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 875, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 876, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 877, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:17:57", + "solve_time": 5.022402048110962, + "status": "MAX_ITER", + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.4499312916666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:17:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 878, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:02", + "solve_time": 4.985614061355591, + "status": "NUM_ERROR", + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.362921875, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:17:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 879, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:02", + "solve_time": 0.005731821060180664, + "status": "OPTIMAL", + "primal_objective_value": -448.95023164103816, + "dual_objective_value": -448.9502285290299, + "duality_gap": -3.1120082439883845e-06, + "primal_infeasibility": 4.4077878809117167e-07, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "solver_solve_time": 0.002473248, + "problem_class": "SDP" + } + }, + { + "id": 880, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:02", + "solve_time": 0.058962345123291016, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 881, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": 0.6459720134735107, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -245.90113198641467, + "dual_objective_value": -245.85737180839376, + "duality_gap": -0.043760178020903595, + "primal_infeasibility": 1.3088894176536186e-05, + "dual_infeasibility": 0.0003530484760489283, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.642388916, + "problem_class": "SDP" + } + }, + { + "id": 882, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": 0.011317014694213867, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -448.97876320335996, + "dual_objective_value": -448.9556735151818, + "duality_gap": -0.023089688178174583, + "primal_infeasibility": 3.2823630729197306e-05, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 883, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 884, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 885, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 886, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 887, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 888, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:23", + "solve_time": 4.97474217414856, + "status": "OPTIMAL", + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3501699166666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:18:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 889, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:28", + "solve_time": 4.962123155593872, + "status": "NUM_ERROR", + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3058602083333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:18:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 890, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:28", + "solve_time": 0.005518198013305664, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 891, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:28", + "solve_time": 0.03847193717956543, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 892, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": 0.6876869201660156, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -389.32499417666725, + "dual_objective_value": -389.3066200564397, + "duality_gap": -0.018374120227520052, + "primal_infeasibility": 6.437354049320336e-06, + "dual_infeasibility": 1.5407433103673238e-06, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.6840934580000001, + "problem_class": "SDP" + } + }, + { + "id": 893, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": 0.0077250003814697266, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -386.2729744082578, + "dual_objective_value": -394.11795931873803, + "duality_gap": 7.844984910480207, + "primal_infeasibility": 0.0010676527612919265, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 894, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 895, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 896, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 897, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 898, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:18:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 899, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:20:47", + "solve_time": 4.918865919113159, + "status": "MAX_ITER", + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.3601869166666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:20:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 900, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:20:52", + "solve_time": 4.99153470993042, + "status": "NUM_ERROR", + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3221649166666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:20:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 901, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.0065250396728515625, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -116.162359822706, + "dual_objective_value": -116.16235950573696, + "duality_gap": -3.1696903590727743e-07, + "primal_infeasibility": 7.420952338087494e-07, + "dual_infeasibility": 3.2950076855126425e-07, + "iterations": 29, + "memo": { + "solver_solve_time": 0.003015376, + "problem_class": "SDP" + } + }, + { + "id": 902, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.03650498390197754, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 903, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.2217872142791748, + "status": "OPTIMAL", + "primal_objective_value": -113.4663274817136, + "dual_objective_value": -113.46736346299392, + "duality_gap": 0.0010359812803102386, + "primal_infeasibility": 2.0881037650067233e-06, + "dual_infeasibility": 2.9352242087893714e-05, + "iterations": 33450, + "memo": { + "solver_solve_time": 0.218281083, + "problem_class": "SDP" + } + }, + { + "id": 904, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.008577823638916016, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -116.18084367885152, + "dual_objective_value": -116.17297265490086, + "duality_gap": -0.007871023950656308, + "primal_infeasibility": 2.1524411488941546e-05, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 905, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 906, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 907, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 908, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 909, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 910, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:50", + "solve_time": 4.948487043380737, + "status": "UNKNOWN", + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.3528595, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:21:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 911, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:55", + "solve_time": 4.960848808288574, + "status": "OPTIMAL", + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.323254625, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:21:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 912, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:05", + "solve_time": 0.006279945373535156, + "status": "OPTIMAL", + "primal_objective_value": -236.2492537893636, + "dual_objective_value": -236.24925167798062, + "duality_gap": -2.111382968905673e-06, + "primal_infeasibility": 1.1227693010097353e-09, + "dual_infeasibility": 7.503567730794685e-13, + "iterations": 27, + "memo": { + "solver_solve_time": 0.002816334, + "problem_class": "SDP" + } + }, + { + "id": 913, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:05", + "solve_time": 0.07575297355651855, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 914, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:06", + "solve_time": 0.6299283504486084, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -23.995993470322126, + "dual_objective_value": -23.73307395594187, + "duality_gap": -0.2629195143802576, + "primal_infeasibility": 0.0002501696048966344, + "dual_infeasibility": 4.7055340393382825e-06, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.626416875, + "problem_class": "SDP" + } + }, + { + "id": 915, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:06", + "solve_time": 0.02733016014099121, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -236.24929860181874, + "dual_objective_value": -236.24925825295142, + "duality_gap": -4.034886731574261e-05, + "primal_infeasibility": 6.211843885658271e-06, + "dual_infeasibility": 1.1701336108488862e-17, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 916, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 917, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 918, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 919, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 920, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 921, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:44", + "solve_time": 4.91386604309082, + "status": "UNKNOWN", + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.36200766666666667, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:22:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 922, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:48", + "solve_time": 3.9673030376434326, + "status": "NUM_ERROR", + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3518449166666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:22:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 923, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.006523847579956055, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -108.78737562810723, + "dual_objective_value": -108.78736989216672, + "duality_gap": -5.73594050479187e-06, + "primal_infeasibility": 7.50016586494756e-08, + "dual_infeasibility": 8.372072031670971e-08, + "iterations": 24, + "memo": { + "solver_solve_time": 0.003101377, + "problem_class": "SDP" + } + }, + { + "id": 924, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.0596768856048584, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 925, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.7690088748931885, + "status": "OPTIMAL", + "primal_objective_value": -109.67066975246388, + "dual_objective_value": -109.6700504066821, + "duality_gap": -0.0006193457817857961, + "primal_infeasibility": 2.294628633625865e-06, + "dual_infeasibility": 3.7480545771311504e-06, + "iterations": 97050, + "memo": { + "solver_solve_time": 0.765419125, + "problem_class": "SDP" + } + }, + { + "id": 926, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.012375831604003906, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -108.86347113724204, + "dual_objective_value": -108.78673318394273, + "duality_gap": -0.07673795329931465, + "primal_infeasibility": 8.231747852466604e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 927, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 928, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 929, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 930, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 931, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 932, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:39", + "solve_time": 4.936923265457153, + "status": "UNKNOWN", + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.4015208333333333, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:23:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 933, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:23:44", + "solve_time": 5.007129907608032, + "status": "NUM_ERROR", + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.379976125, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-17 00:23:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 934, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:14", + "solve_time": 0.00967717170715332, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -65.90991351702351, + "dual_objective_value": -65.90990389505751, + "duality_gap": -9.62196600085008e-06, + "primal_infeasibility": 3.264652971267897e-08, + "dual_infeasibility": 7.961207252939813e-10, + "iterations": 25, + "memo": { + "solver_solve_time": 0.006049124, + "problem_class": "SDP" + } + }, + { + "id": 935, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:14", + "solve_time": 0.06746697425842285, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 936, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:15", + "solve_time": 1.2248289585113525, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -67.03265487888538, + "dual_objective_value": -66.9425045006043, + "duality_gap": -0.09015037828108063, + "primal_infeasibility": 7.271735945414379e-06, + "dual_infeasibility": 2.372132910723892e-12, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.2213040000000002, + "problem_class": "SDP" + } + }, + { + "id": 937, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:15", + "solve_time": 0.012714862823486328, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -65.96092354028318, + "dual_objective_value": -65.91206628197119, + "duality_gap": -0.04885725831198329, + "primal_infeasibility": 4.861398484093877e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 938, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 939, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 940, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 941, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 942, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:24:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 943, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:20", + "solve_time": 4.373261213302612, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 944, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:24", + "solve_time": 4.34638524055481, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 945, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:35", + "solve_time": 0.01759481430053711, + "status": "OPTIMAL", + "primal_objective_value": -5.925342226589732e-05, + "dual_objective_value": -5.925213757701722e-05, + "duality_gap": -1.284688880104324e-09, + "primal_infeasibility": 1.639363195032902e-05, + "dual_infeasibility": 0.0, + "iterations": 44, + "memo": { + "solver_solve_time": 0.014165622, + "problem_class": "SDP" + } + }, + { + "id": 946, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:35", + "solve_time": 0.3677828311920166, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 947, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:37", + "solve_time": 1.846771001815796, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9141614331465502, + "dual_objective_value": -0.8869089226495065, + "duality_gap": -0.02725251049704369, + "primal_infeasibility": 8.264335179641823e-08, + "dual_infeasibility": 1.6865610824784975e-07, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.842922833, + "problem_class": "SDP" + } + }, + { + "id": 948, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:37", + "solve_time": 0.013288259506225586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -26.284632319814868, + "dual_objective_value": -3.218852415953317, + "duality_gap": -23.06577990386155, + "primal_infeasibility": 0.0002664963558692289, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 949, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 950, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 951, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 952, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 953, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:25:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 954, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:07", + "solve_time": 48.48702621459961, + "status": "UNKNOWN", + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, + "dual_infeasibility": 0.0, + "iterations": 61, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.6598367083333334, + "setup_time": [], + "iterations": 61, + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:48:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 955, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:12", + "solve_time": 5.280565977096558, + "status": "OPTIMAL", + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5377166666666666, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:48:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 956, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:25", + "solve_time": 0.01746988296508789, + "status": "OPTIMAL", + "primal_objective_value": -3.2433629986793885e-05, + "dual_objective_value": -3.2432575308661486e-05, + "duality_gap": -1.0546781323988747e-09, + "primal_infeasibility": 8.300260965155049e-06, + "dual_infeasibility": 0.0, + "iterations": 44, + "memo": { + "solver_solve_time": 0.013888374, + "problem_class": "SDP" + } + }, + { + "id": 957, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:26", + "solve_time": 0.3970298767089844, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 958, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:28", + "solve_time": 1.8517041206359863, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -1.5660892533183435, + "dual_objective_value": -1.550972805649461, + "duality_gap": -0.015116447668882538, + "primal_infeasibility": 1.2713713263916197e-07, + "dual_infeasibility": 9.437455397904784e-07, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.846340583, + "problem_class": "SDP" + } + }, + { + "id": 959, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:28", + "solve_time": 0.01336216926574707, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -26.28462100943706, + "dual_objective_value": -3.218764582272006, + "duality_gap": -23.065856427165055, + "primal_infeasibility": 0.00026649547088509193, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 960, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 961, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 962, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 963, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 964, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 965, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:28", + "solve_time": 5.085371971130371, + "status": "UNKNOWN", + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.501086125, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:50:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 966, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:33", + "solve_time": 5.072270154953003, + "status": "NUM_ERROR", + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.373962875, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:50:30", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 967, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:39", + "solve_time": 0.014467954635620117, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 968, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:39", + "solve_time": 0.08350205421447754, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 969, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:42", + "solve_time": 2.7371368408203125, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -30.338550177295044, + "dual_objective_value": -30.33799855091353, + "duality_gap": -0.0005516263815152911, + "primal_infeasibility": 5.355726666806104e-06, + "dual_infeasibility": 9.237315025625231e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 2.731196458, + "problem_class": "SDP" + } + }, + { + "id": 970, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:42", + "solve_time": 0.012221097946166992, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 971, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 972, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 973, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 974, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 975, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 976, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:00", + "solve_time": 5.077782154083252, + "status": "UNKNOWN", + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.504, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:51:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 977, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:05", + "solve_time": 5.142008066177368, + "status": "NUM_ERROR", + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.42816145833333336, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:52:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 978, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.029858112335205078, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -12.991620016749662, + "dual_objective_value": -12.991619832202199, + "duality_gap": -1.8454746353313567e-07, + "primal_infeasibility": 7.960100598663184e-08, + "dual_infeasibility": 2.8200844817922423e-07, + "iterations": 25, + "memo": { + "solver_solve_time": 0.023652419, + "problem_class": "SDP" + } + }, + { + "id": 979, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.1548140048980713, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 980, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.260235071182251, + "status": "OPTIMAL", + "primal_objective_value": -13.016693637637012, + "dual_objective_value": -13.016676436910254, + "duality_gap": -1.7200726757593543e-05, + "primal_infeasibility": 9.713120873550967e-06, + "dual_infeasibility": 3.7424537617375734e-05, + "iterations": 7350, + "memo": { + "solver_solve_time": 0.25517412500000003, + "problem_class": "SDP" + } + }, + { + "id": 981, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:13", + "solve_time": 0.01812005043029785, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -12.977127071396835, + "dual_objective_value": -13.002235688978644, + "duality_gap": 0.025108617581809156, + "primal_infeasibility": 1.4121816289795736e-05, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 982, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 983, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 984, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 985, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 986, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 987, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:10", + "solve_time": 5.2033421993255615, + "status": "UNKNOWN", + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.529179125, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:53:08", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 988, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:16", + "solve_time": 5.02793288230896, + "status": "NUM_ERROR", + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.33310558333333334, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:53:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 989, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:23", + "solve_time": 0.03337883949279785, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -24.823804805102615, + "dual_objective_value": -24.823648667307985, + "duality_gap": -0.00015613779462952948, + "primal_infeasibility": 3.8123673598819243e-06, + "dual_infeasibility": 1.3632493267012344e-06, + "iterations": 19, + "memo": { + "solver_solve_time": 0.02654958, + "problem_class": "SDP" + } + }, + { + "id": 990, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:23", + "solve_time": 0.12059998512268066, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 991, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:28", + "solve_time": 4.816857099533081, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -6.535899836686729, + "dual_objective_value": -6.535738728003019, + "duality_gap": -0.0001611086837103315, + "primal_infeasibility": 1.2124638376828503e-05, + "dual_infeasibility": 0.0007877132599741793, + "iterations": 100000, + "memo": { + "solver_solve_time": 4.811149333, + "problem_class": "SDP" + } + }, + { + "id": 992, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:28", + "solve_time": 0.018558025360107422, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 993, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 994, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 995, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 996, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 997, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 998, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:54:47", + "solve_time": 4.995841979980469, + "status": "UNKNOWN", + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.386292, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:54:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 999, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:54:52", + "solve_time": 5.023981809616089, + "status": "NUM_ERROR", + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3865498333333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:54:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1000, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:01", + "solve_time": 0.005572795867919922, + "status": "OPTIMAL", + "primal_objective_value": -2.0326681219679923, + "dual_objective_value": -2.0326681159848516, + "duality_gap": -5.983140649590268e-09, + "primal_infeasibility": 1.5142732808798136e-09, + "dual_infeasibility": 5.8528406408805414e-08, + "iterations": 27, + "memo": { + "solver_solve_time": 0.002366377, + "problem_class": "SDP" + } + }, + { + "id": 1001, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:01", + "solve_time": 0.05380678176879883, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1002, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:02", + "solve_time": 0.5455272197723389, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -2.034025995512536, + "dual_objective_value": -2.033865317055243, + "duality_gap": -0.00016067845729317298, + "primal_infeasibility": 2.999590308495669e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.541413458, + "problem_class": "SDP" + } + }, + { + "id": 1003, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:02", + "solve_time": 0.008548974990844727, + "status": "OPTIMAL", + "primal_objective_value": -2.0326162960518173, + "dual_objective_value": -2.0326162960518173, + "duality_gap": 0.0, + "primal_infeasibility": 3.967316966357652e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1004, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1005, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1006, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1007, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1008, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1009, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:22", + "solve_time": 4.86243200302124, + "status": "UNKNOWN", + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.31890266666666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:57:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1010, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:27", + "solve_time": 4.949515104293823, + "status": "NUM_ERROR", + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.31751525, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:57:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1011, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:35", + "solve_time": 0.005145072937011719, + "status": "OPTIMAL", + "primal_objective_value": -10.967598918863468, + "dual_objective_value": -10.96759886205494, + "duality_gap": -5.6808527659768515e-08, + "primal_infeasibility": 1.9892414732039526e-07, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "solver_solve_time": 0.001845334, + "problem_class": "SDP" + } + }, + { + "id": 1012, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:35", + "solve_time": 0.03723597526550293, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1013, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:36", + "solve_time": 0.4676029682159424, + "status": "OPTIMAL", + "primal_objective_value": -10.956014425126677, + "dual_objective_value": -10.95598391306363, + "duality_gap": -3.0512063046828075e-05, + "primal_infeasibility": 2.723109573191675e-06, + "dual_infeasibility": 0.00048699575464379656, + "iterations": 74125, + "memo": { + "solver_solve_time": 0.46430825, + "problem_class": "SDP" + } + }, + { + "id": 1014, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:36", + "solve_time": 0.009016036987304688, + "status": "OPTIMAL", + "primal_objective_value": -10.967063926554635, + "dual_objective_value": -10.967063926554637, + "duality_gap": 1.7763568394002505e-15, + "primal_infeasibility": 5.723703689342138e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1015, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1016, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1017, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1018, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1019, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1020, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:29", + "solve_time": 4.8960120677948, + "status": "MAX_ITER", + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.35503575, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:58:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1021, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:34", + "solve_time": 4.966598987579346, + "status": "OPTIMAL", + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.34887470833333334, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:58:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1022, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.005476951599121094, + "status": "OPTIMAL", + "primal_objective_value": -274.76580456156256, + "dual_objective_value": -274.7658044528675, + "duality_gap": -1.0869507605093531e-07, + "primal_infeasibility": 2.9587869724570718e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.002260333, + "problem_class": "SDP" + } + }, + { + "id": 1023, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.052572011947631836, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1024, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.05102682113647461, + "status": "OPTIMAL", + "primal_objective_value": -274.8169686239859, + "dual_objective_value": -274.8175011426577, + "duality_gap": 0.0005325186718323494, + "primal_infeasibility": 1.5793940777175766e-05, + "dual_infeasibility": 5.0915418172079886e-09, + "iterations": 7175, + "memo": { + "solver_solve_time": 0.047997041000000004, + "problem_class": "SDP" + } + }, + { + "id": 1025, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.01003885269165039, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -274.7642606658802, + "dual_objective_value": -274.7640791113404, + "duality_gap": -0.00018155453983581538, + "primal_infeasibility": 2.067736809821613e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1026, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1027, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1028, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1029, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1030, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1031, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:37", + "solve_time": 4.805355072021484, + "status": "UNKNOWN", + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.2904674583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:59:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1032, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:42", + "solve_time": 4.9534101486206055, + "status": "NUM_ERROR", + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.305820375, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 20:59:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1033, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.0060749053955078125, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -362.4299072470292, + "dual_objective_value": -362.4295803431538, + "duality_gap": -0.000326903875361495, + "primal_infeasibility": 4.958727500256144e-06, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "solver_solve_time": 0.002001209, + "problem_class": "SDP" + } + }, + { + "id": 1034, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.0457768440246582, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1035, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.08220601081848145, + "status": "OPTIMAL", + "primal_objective_value": -320.9234414376666, + "dual_objective_value": -320.92497928960995, + "duality_gap": 0.0015378519433397742, + "primal_infeasibility": 3.052930540788306e-06, + "dual_infeasibility": 0.00027660204589100273, + "iterations": 13300, + "memo": { + "solver_solve_time": 0.07908475, + "problem_class": "SDP" + } + }, + { + "id": 1036, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.008898258209228516, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -363.08837704719326, + "dual_objective_value": -362.65312853712743, + "duality_gap": -0.43524851006583276, + "primal_infeasibility": 0.0031096059091866054, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1037, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1038, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1039, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1040, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1041, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1042, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:20", + "solve_time": 4.944347858428955, + "status": "MAX_ITER", + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.4577738333333333, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:02:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1043, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:25", + "solve_time": 4.984795093536377, + "status": "NUM_ERROR", + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.37734158333333334, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:02:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1044, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:31", + "solve_time": 0.005522966384887695, + "status": "OPTIMAL", + "primal_objective_value": -448.95023164103816, + "dual_objective_value": -448.9502285290299, + "duality_gap": -3.1120082439883845e-06, + "primal_infeasibility": 4.4077878809117167e-07, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "solver_solve_time": 0.002378126, + "problem_class": "SDP" + } + }, + { + "id": 1045, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:31", + "solve_time": 0.05508112907409668, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1046, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:32", + "solve_time": 0.6322319507598877, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -245.90113198641467, + "dual_objective_value": -245.85737180839376, + "duality_gap": -0.043760178020903595, + "primal_infeasibility": 1.3088894176536186e-05, + "dual_infeasibility": 0.0003530484760489283, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.627335833, + "problem_class": "SDP" + } + }, + { + "id": 1047, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:32", + "solve_time": 0.011322736740112305, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -448.97876320335996, + "dual_objective_value": -448.9556735151818, + "duality_gap": -0.023089688178174583, + "primal_infeasibility": 3.2823630729197306e-05, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1048, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1049, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1050, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1051, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1052, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1053, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:12", + "solve_time": 4.8567070960998535, + "status": "OPTIMAL", + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.32100379166666665, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:03:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1054, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:17", + "solve_time": 4.883062124252319, + "status": "NUM_ERROR", + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.29440333333333335, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:03:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1055, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:23", + "solve_time": 0.00506281852722168, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1056, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:23", + "solve_time": 0.03922271728515625, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1057, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:24", + "solve_time": 0.6557118892669678, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -389.32499417666725, + "dual_objective_value": -389.3066200564397, + "duality_gap": -0.018374120227520052, + "primal_infeasibility": 6.437354049320336e-06, + "dual_infeasibility": 1.5407433103673238e-06, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.652232833, + "problem_class": "SDP" + } + }, + { + "id": 1058, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:24", + "solve_time": 0.007824182510375977, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -386.2729744082578, + "dual_objective_value": -394.11795931873803, + "duality_gap": 7.844984910480207, + "primal_infeasibility": 0.0010676527612919265, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1059, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1060, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1061, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1062, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1063, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1108, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:09:51", + "solve_time": 14.502842903137207, + "status": "OPTIMAL", + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.857293916666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:09:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1109, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:10:21", + "solve_time": 28.946648120880127, + "status": "OPTIMAL", + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 18.808365375, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:10:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1110, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:10:33", + "solve_time": 5.780447959899902, + "status": "OPTIMAL", + "primal_objective_value": -629.1647805357129, + "dual_objective_value": -629.1647805350874, + "duality_gap": -6.255049811443314e-10, + "primal_infeasibility": 3.358572693912759e-15, + "dual_infeasibility": 1.776705970627518e-11, + "iterations": 16, + "memo": { + "solver_solve_time": 2.942479084, + "problem_class": "SDP" + } + }, + { + "id": 1111, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:16:28", + "solve_time": 228.55329608917236, + "status": "OPTIMAL", + "primal_objective_value": -629.1647801726815, + "dual_objective_value": -629.1647801710005, + "duality_gap": -1.6809735825518146e-09, + "primal_infeasibility": 1.2726085361287806e-12, + "dual_infeasibility": 2.1291444400788673e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1112, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:36:57", + "solve_time": 6.635096073150635, + "status": "OPTIMAL", + "primal_objective_value": -629.1647613155295, + "dual_objective_value": -629.1647831444957, + "duality_gap": 2.1828966168868646e-05, + "primal_infeasibility": 1.093272639824208e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1113, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:37:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1114, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:37:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1115, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:37:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1116, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:37:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1117, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:37:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1118, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:42:46", + "solve_time": 161.42489886283875, + "status": "OPTIMAL", + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 15.476917375, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:42:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1119, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:12", + "solve_time": 300.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } + }, + { + "id": 1120, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1121, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1122, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1123, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1124, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1125, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:49:58", + "solve_time": 25.425204277038574, + "status": "OPTIMAL", + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.223092875, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:49:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1126, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:50:57", + "solve_time": 59.53362798690796, + "status": "OPTIMAL", + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 43.29670183333333, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 21:50:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1127, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:54:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1128, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:54:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1129, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:54:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1130, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:54:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1131, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:54:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1146, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:00:22", + "solve_time": 3.569775104522705, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1147, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:00:26", + "solve_time": 4.319256067276001, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1148, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:00:39", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Benchmark execution failed: Failed to load problem mcp100: could not convert string to float: '{+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}'" + } + }, + { + "id": 1149, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:00:52", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Benchmark execution failed: Failed to load problem mcp124-1: could not convert string to float: '{+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}'" + } + }, + { + "id": 1150, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:43", + "solve_time": 4.137083053588867, + "status": "OPTIMAL", + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0.0, + "iterations": 10, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.4589776666666667, + "setup_time": [], + "iterations": 10, + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:01:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1151, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:48", + "solve_time": 5.012485980987549, + "status": "OPTIMAL", + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.29023525, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:01:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1152, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.039627790451049805, + "status": "OPTIMAL", + "primal_objective_value": 436.00000012500374, + "dual_objective_value": 436.0000001787257, + "duality_gap": -5.3721976200904464e-08, + "primal_infeasibility": 8.543064997221504e-10, + "dual_infeasibility": 8.700480256542984e-14, + "iterations": 9, + "memo": { + "solver_solve_time": 0.036510792, + "problem_class": "SDP" + } + }, + { + "id": 1153, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.05824089050292969, + "status": "OPTIMAL", + "primal_objective_value": 436.00000638953816, + "dual_objective_value": 436.0000103135326, + "duality_gap": -3.923994427168509e-06, + "primal_infeasibility": 6.573074355875933e-08, + "dual_infeasibility": 5.296699388254977e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1154, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.015094995498657227, + "status": "OPTIMAL", + "primal_objective_value": 436.00007269274516, + "dual_objective_value": 435.9998052039491, + "duality_gap": 0.00026748879605520415, + "primal_infeasibility": 2.3053436931048306e-07, + "dual_infeasibility": 0.0, + "iterations": 225, + "memo": { + "solver_solve_time": 0.012320290999999999, + "problem_class": "SDP" + } + }, + { + "id": 1155, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.020327091217041016, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 436.0403897924358, + "dual_objective_value": 435.9998304004548, + "duality_gap": 0.04055939198099168, + "primal_infeasibility": 9.059329771695843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1156, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:03:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1157, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:03:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1158, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:03:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1159, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:03:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1160, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:03:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1161, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:36", + "solve_time": 5.690578937530518, + "status": "OPTIMAL", + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.91437, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:04:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1162, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:41", + "solve_time": 5.050200700759888, + "status": "NUM_ERROR", + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3709242916666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:04:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1163, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:47", + "solve_time": 0.3584439754486084, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.43279582401055, + "dual_objective_value": 381.4327960779774, + "duality_gap": -2.539668457757216e-07, + "primal_infeasibility": 9.455201134480351e-10, + "dual_infeasibility": 4.251389530798158e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 0.353374376, + "problem_class": "SDP" + } + }, + { + "id": 1164, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:48", + "solve_time": 0.4547898769378662, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1165, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:59", + "solve_time": 11.140121698379517, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.1579788447341, + "dual_objective_value": 381.2947477911839, + "duality_gap": -0.13676894644981985, + "primal_infeasibility": 2.5734585406151894e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 11.135406458, + "problem_class": "SDP" + } + }, + { + "id": 1166, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:59", + "solve_time": 0.09423494338989258, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.5253368559963, + "dual_objective_value": 381.38626400064095, + "duality_gap": 0.1390728553553231, + "primal_infeasibility": 4.7219042964099784e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1167, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1168, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1169, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1170, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1171, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1172, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:36", + "solve_time": 5.414994239807129, + "status": "UNKNOWN", + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.710025875, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:05:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1173, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:41", + "solve_time": 4.324882984161377, + "status": "NUM_ERROR", + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5528550833333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:05:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1174, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:49", + "solve_time": 1.2171392440795898, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.81215093653674, + "dual_objective_value": 424.8121509794146, + "duality_gap": -4.28778434979904e-08, + "primal_infeasibility": 1.4814603139603626e-09, + "dual_infeasibility": 2.3106894516466327e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 1.208488294, + "problem_class": "SDP" + } + }, + { + "id": 1175, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:50", + "solve_time": 0.7405779361724854, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1176, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:10", + "solve_time": 20.12582302093506, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.5225849795715, + "dual_objective_value": 424.66763159392576, + "duality_gap": -0.14504661435427124, + "primal_infeasibility": 2.5643940808572178e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 20.117360833, + "problem_class": "SDP" + } + }, + { + "id": 1177, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:10", + "solve_time": 0.1465590000152588, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.8762477985437, + "dual_objective_value": 424.79985124990344, + "duality_gap": 0.07639654864027534, + "primal_infeasibility": 2.3370667875751253e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1178, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1179, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1180, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1181, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1182, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1183, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:49", + "solve_time": 4.285322904586792, + "status": "OPTIMAL", + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5856180833333333, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:06:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1184, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:55", + "solve_time": 5.6087799072265625, + "status": "NUM_ERROR", + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.862835625, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:06:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1185, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:08", + "solve_time": 3.9440019130706787, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 756.9434336934269, + "dual_objective_value": 756.9434339047293, + "duality_gap": -2.1130244931555353e-07, + "primal_infeasibility": 1.1033134136067158e-09, + "dual_infeasibility": 1.8036454579220684e-09, + "iterations": 29, + "memo": { + "solver_solve_time": 3.928795753, + "problem_class": "SDP" + } + }, + { + "id": 1186, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:09", + "solve_time": 1.6612441539764404, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1187, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:46", + "solve_time": 36.509506940841675, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 756.5711755506155, + "dual_objective_value": 756.7533977873954, + "duality_gap": -0.18222223677992133, + "primal_infeasibility": 1.7661078048246205e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 36.495549333, + "problem_class": "SDP" + } + }, + { + "id": 1188, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:46", + "solve_time": 0.23933076858520508, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 757.0347850401854, + "dual_objective_value": 756.9408334188629, + "duality_gap": 0.09395162132250334, + "primal_infeasibility": 1.6356761098055173e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1189, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1190, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1191, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1192, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1193, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1194, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:08:32", + "solve_time": 5.600432872772217, + "status": "OPTIMAL", + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8264437916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:08:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1195, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:08:39", + "solve_time": 6.16489315032959, + "status": "NUM_ERROR", + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.32479125, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:08:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1196, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:08:56", + "solve_time": 9.71919322013855, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1409.9415896092542, + "dual_objective_value": 1409.941617901437, + "duality_gap": -2.8292182832956314e-05, + "primal_infeasibility": 7.656624897637267e-08, + "dual_infeasibility": 8.594780663566562e-10, + "iterations": 24, + "memo": { + "solver_solve_time": 9.690633708, + "problem_class": "SDP" + } + }, + { + "id": 1197, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:08:59", + "solve_time": 2.7372238636016846, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1198, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:44", + "solve_time": 44.790440797805786, + "status": "OPTIMAL", + "primal_objective_value": 1409.9180851457008, + "dual_objective_value": 1409.9311892082915, + "duality_gap": -0.013104062590628018, + "primal_infeasibility": 2.0332473972900747e-05, + "dual_infeasibility": 1.2215291832739586e-08, + "iterations": 74700, + "memo": { + "solver_solve_time": 44.763336166, + "problem_class": "SDP" + } + }, + { + "id": 1199, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:45", + "solve_time": 0.36574411392211914, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1410.25627924329, + "dual_objective_value": 1409.8952495753765, + "duality_gap": 0.361029667913499, + "primal_infeasibility": 4.0892029004511786e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1200, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1201, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1202, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1203, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1204, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1205, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:10:29", + "solve_time": 5.8064398765563965, + "status": "UNKNOWN", + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.859712, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:10:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1206, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:10:37", + "solve_time": 7.553555965423584, + "status": "NUM_ERROR", + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.5975340416666666, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:10:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1207, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:11:11", + "solve_time": 25.793164014816284, + "status": "OPTIMAL", + "primal_objective_value": 1092.5981048387882, + "dual_objective_value": 1092.5981049304173, + "duality_gap": -9.162909009319264e-08, + "primal_infeasibility": 5.720872373199901e-10, + "dual_infeasibility": 1.1890157244942814e-10, + "iterations": 26, + "memo": { + "solver_solve_time": 25.738914749, + "problem_class": "SDP" + } + }, + { + "id": 1208, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:11:16", + "solve_time": 4.625144004821777, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1209, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:12:55", + "solve_time": 0.5981779098510742, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1093.0721614033846, + "dual_objective_value": 1092.5599703709595, + "duality_gap": 0.5121910324251076, + "primal_infeasibility": 2.3061857111994798e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1210, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1211, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1212, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1213, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1214, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1215, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:45:31", + "solve_time": 31.200602054595947, + "status": "OPTIMAL", + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.784308541666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:45:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1216, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:49:36", + "solve_time": 20.110408067703247, + "status": "OPTIMAL", + "primal_objective_value": -2448.659092952946, + "dual_objective_value": -2448.6590929340227, + "duality_gap": -1.892340151243843e-08, + "primal_infeasibility": 1.7496194581406766e-08, + "dual_infeasibility": 3.538743119610824e-11, + "iterations": 15, + "memo": { + "solver_solve_time": 3.195941749, + "problem_class": "SDP" + } + }, + { + "id": 1217, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:23", + "solve_time": 29.925652980804443, + "status": "OPTIMAL", + "primal_objective_value": -2448.6590489835125, + "dual_objective_value": -2448.6591322561353, + "duality_gap": 8.327262275997782e-05, + "primal_infeasibility": 2.3298734319033554e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1218, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1219, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1220, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1221, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1222, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:54:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1223, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:58:16", + "solve_time": 65.04648661613464, + "status": "OPTIMAL", + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 4.866530833333333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 22:58:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1224, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1225, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1226, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1227, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1228, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1229, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:05:03", + "solve_time": 8.209748983383179, + "status": "UNKNOWN", + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 3.0873134583333335, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:05:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1230, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:05:17", + "solve_time": 13.37722110748291, + "status": "NUM_ERROR", + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, + "dual_infeasibility": 0.0, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 9.496570375, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:05:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1231, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:06:06", + "solve_time": 41.18780493736267, + "status": "OPTIMAL", + "primal_objective_value": -20.239510587223354, + "dual_objective_value": -20.239510586816014, + "duality_gap": -4.0733993955655023e-10, + "primal_infeasibility": 9.912076322563995e-08, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "solver_solve_time": 34.756203417, + "problem_class": "SDP" + } + }, + { + "id": 1232, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:06:28", + "solve_time": 21.264667987823486, + "status": "OPTIMAL", + "primal_objective_value": -20.239510644969997, + "dual_objective_value": -20.239510638137972, + "duality_gap": -6.8320247237352305e-09, + "primal_infeasibility": 8.94817783016025e-08, + "dual_infeasibility": 5.0557558792995994e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1233, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:09:55", + "solve_time": 7.810168981552124, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.239507687488363, + "dual_objective_value": -20.23951064833439, + "duality_gap": 2.960846028798869e-06, + "primal_infeasibility": 1.5496658619045873e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1234, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1235, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1236, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1237, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1238, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1239, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:51", + "solve_time": 5.080946922302246, + "status": "OPTIMAL", + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.39615579166666665, + "setup_time": [], + "iterations": 11, + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:10:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1240, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:10:56", + "solve_time": 5.039260149002075, + "status": "OPTIMAL", + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.299004125, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:10:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1241, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.5781240463256836, + "status": "OPTIMAL", + "primal_objective_value": -23.000000113696405, + "dual_objective_value": -23.00000006485042, + "duality_gap": -4.884598681087482e-08, + "primal_infeasibility": 1.7021181449260494e-08, + "dual_infeasibility": 1.1944769291368984e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.573968168, + "problem_class": "SDP" + } + }, + { + "id": 1242, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.30235886573791504, + "status": "OPTIMAL", + "primal_objective_value": -22.99999992045278, + "dual_objective_value": -22.999999920596142, + "duality_gap": 1.4336265508063661e-10, + "primal_infeasibility": 1.1739084766113277e-16, + "dual_infeasibility": 4.107080131386077e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1243, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.059606075286865234, + "status": "OPTIMAL", + "primal_objective_value": -22.99957523727033, + "dual_objective_value": -22.999473468676786, + "duality_gap": -0.00010176859354515955, + "primal_infeasibility": 8.547389016417847e-06, + "dual_infeasibility": 2.873384339106012e-07, + "iterations": 250, + "memo": { + "solver_solve_time": 0.055213041, + "problem_class": "SDP" + } + }, + { + "id": 1244, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.025326967239379883, + "status": "OPTIMAL", + "primal_objective_value": -22.99999909785378, + "dual_objective_value": -23.000000314920484, + "duality_gap": 1.217066703418368e-06, + "primal_infeasibility": 5.552518868004142e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1245, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1246, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1247, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1248, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1249, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:11:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1250, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:11", + "solve_time": 5.340824842453003, + "status": "OPTIMAL", + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5564947916666667, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:12:08", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1251, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:16", + "solve_time": 4.532660961151123, + "status": "OPTIMAL", + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.721409625, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:12:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1252, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:36", + "solve_time": 10.558916091918945, + "status": "OPTIMAL", + "primal_objective_value": -32.87916985873813, + "dual_objective_value": -32.87916961787732, + "duality_gap": -2.4086081396035297e-07, + "primal_infeasibility": 9.043557291921717e-08, + "dual_infeasibility": 6.7143730115455886e-12, + "iterations": 10, + "memo": { + "solver_solve_time": 10.531377999, + "problem_class": "SDP" + } + }, + { + "id": 1253, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:38", + "solve_time": 2.042449951171875, + "status": "OPTIMAL", + "primal_objective_value": -32.87916894882581, + "dual_objective_value": -32.87916894877984, + "duality_gap": -4.596500957632088e-11, + "primal_infeasibility": 1.4343967695977949e-12, + "dual_infeasibility": 2.2664637685921277e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1254, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:38", + "solve_time": 0.41171908378601074, + "status": "OPTIMAL", + "primal_objective_value": -32.879092775414236, + "dual_objective_value": -32.87901385888463, + "duality_gap": -7.891652960267947e-05, + "primal_infeasibility": 1.00022956740785e-06, + "dual_infeasibility": 2.3274278129605833e-07, + "iterations": 350, + "memo": { + "solver_solve_time": 0.3871845, + "problem_class": "SDP" + } + }, + { + "id": 1255, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:39", + "solve_time": 0.47716593742370605, + "status": "OPTIMAL", + "primal_objective_value": -32.87916857824288, + "dual_objective_value": -32.87916905441676, + "duality_gap": 4.761738736647203e-07, + "primal_infeasibility": 4.57224779883188e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1256, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1257, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1258, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1259, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1260, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:12:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1261, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:23:31", + "solve_time": 5.14396595954895, + "status": "OPTIMAL", + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0262072916666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:23:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1262, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:23:38", + "solve_time": 6.509634017944336, + "status": "OPTIMAL", + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.401252125, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:23:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1263, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:24:54", + "solve_time": 67.7079222202301, + "status": "OPTIMAL", + "primal_objective_value": -42.16698181950611, + "dual_objective_value": -42.16698175324743, + "duality_gap": -6.625868564924531e-08, + "primal_infeasibility": 2.566384582637676e-08, + "dual_infeasibility": 6.118994005248439e-14, + "iterations": 10, + "memo": { + "solver_solve_time": 67.592432958, + "problem_class": "SDP" + } + }, + { + "id": 1264, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:02", + "solve_time": 7.798202753067017, + "status": "OPTIMAL", + "primal_objective_value": -42.166981272985936, + "dual_objective_value": -42.166981273163785, + "duality_gap": 1.7784884676075308e-10, + "primal_infeasibility": 3.401035803092698e-15, + "dual_infeasibility": 3.975102289462933e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1265, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:03", + "solve_time": 1.58660888671875, + "status": "OPTIMAL", + "primal_objective_value": -42.166983999600596, + "dual_objective_value": -42.166985728095874, + "duality_gap": 1.7284952775753482e-06, + "primal_infeasibility": 2.2777817734753627e-08, + "dual_infeasibility": 6.1942128146186496e-09, + "iterations": 450, + "memo": { + "solver_solve_time": 1.477760083, + "problem_class": "SDP" + } + }, + { + "id": 1266, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:05", + "solve_time": 1.048050880432129, + "status": "OPTIMAL", + "primal_objective_value": -42.16698095442231, + "dual_objective_value": -42.166981616724364, + "duality_gap": 6.623020567531057e-07, + "primal_infeasibility": 2.3718112851955558e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1267, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1268, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1269, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1270, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1271, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1272, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:32", + "solve_time": 7.635164976119995, + "status": "OPTIMAL", + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.695165875, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:25:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1273, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:45", + "solve_time": 12.677574157714844, + "status": "OPTIMAL", + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 7.63776375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:25:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1274, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:55", + "solve_time": 9.572349309921265, + "status": "OPTIMAL", + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.878710125, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:25:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1275, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:26:30", + "solve_time": 33.82769799232483, + "status": "OPTIMAL", + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 27.11175225, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:26:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1276, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:26:47", + "solve_time": 16.618361234664917, + "status": "OPTIMAL", + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.670787375, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:26:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1277, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:29:08", + "solve_time": 91.52134919166565, + "status": "OPTIMAL", + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 80.89928704166667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:29:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1278, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:30:01", + "solve_time": 34.29532480239868, + "status": "OPTIMAL", + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.048874666666666, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:29:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1279, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:31:34", + "solve_time": 92.35972785949707, + "status": "OPTIMAL", + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "iterations": 33, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 65.081882375, + "setup_time": [], + "iterations": 33, + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:31:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1280, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:35:44", + "solve_time": 241.1041750907898, + "status": "UNKNOWN", + "primal_objective_value": -348.9999945185722, + "dual_objective_value": -349.0000002426005, + "duality_gap": 5.724028312670271e-06, + "primal_infeasibility": 1.8779632575768103e-08, + "dual_infeasibility": 0.0, + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 116.13666708333334, + "setup_time": [], + "iterations": 39, + "primal_objective_value": -348.9999945185722, + "dual_objective_value": -349.0000002426005, + "duality_gap": 5.724028312670271e-06, + "primal_infeasibility": 1.8779632575768103e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-18 23:35:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1281, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:41:01", + "solve_time": 300.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } + }, + { + "id": 1282, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:15", + "solve_time": 10.543416023254395, + "status": "OPTIMAL", + "primal_objective_value": 8.999996513737967, + "dual_objective_value": 8.999996285281131, + "duality_gap": 2.2845683567140895e-07, + "primal_infeasibility": 2.3112684240151632e-09, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.44853316666666665, + "setup_time": [], + "iterations": 9, + "primal_objective_value": 8.999996513737967, + "dual_objective_value": 8.999996285281131, + "duality_gap": 2.2845683567140895e-07, + "primal_infeasibility": 2.3112684240151632e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:05:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1283, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:21", + "solve_time": 5.028787851333618, + "status": "OPTIMAL", + "primal_objective_value": 8.999996304463258, + "dual_objective_value": 8.999996309461777, + "duality_gap": 4.998518932097795e-09, + "primal_infeasibility": 2.0925600974181833e-09, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.42363433333333333, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 8.999996304463258, + "dual_objective_value": 8.999996309461777, + "duality_gap": 4.998518932097795e-09, + "primal_infeasibility": 2.0925600974181833e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:05:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1284, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:27", + "solve_time": 0.0055849552154541016, + "status": "OPTIMAL", + "primal_objective_value": 8.999996209209556, + "dual_objective_value": 8.999996230766877, + "duality_gap": -2.1557321261411744e-08, + "primal_infeasibility": 1.8223965354693912e-08, + "dual_infeasibility": 9.58875201462206e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.000157167, + "problem_class": "SDP" + } + }, + { + "id": 1285, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:27", + "solve_time": 0.021031856536865234, + "status": "OPTIMAL", + "primal_objective_value": 8.999996217101113, + "dual_objective_value": 8.999996231565662, + "duality_gap": -1.446454866993463e-08, + "primal_infeasibility": 2.1552454348135378e-08, + "dual_infeasibility": 1.3113686044545564e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1286, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:27", + "solve_time": 0.005464076995849609, + "status": "OPTIMAL", + "primal_objective_value": 9.000014086327363, + "dual_objective_value": 9.000007538484402, + "duality_gap": 6.547842961168726e-06, + "primal_infeasibility": 7.190939502213777e-07, + "dual_infeasibility": 2.017647402124318e-05, + "iterations": 175, + "memo": { + "solver_solve_time": 0.000432083, + "problem_class": "SDP" + } + }, + { + "id": 1287, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:27", + "solve_time": 0.015557050704956055, + "status": "OPTIMAL", + "primal_objective_value": 8.999996508066124, + "dual_objective_value": 8.999996257439102, + "duality_gap": 2.5062702135869586e-07, + "primal_infeasibility": 3.858578150973925e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1288, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1289, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1290, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1291, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1292, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:05:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1293, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:01", + "solve_time": 6.63208794593811, + "status": "OPTIMAL", + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.450353, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:05:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1294, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:06", + "solve_time": 5.089740991592407, + "status": "OPTIMAL", + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.39883325, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:06:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1295, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:13", + "solve_time": 0.031990766525268555, + "status": "OPTIMAL", + "primal_objective_value": 123.38032438780319, + "dual_objective_value": 123.38032501198148, + "duality_gap": -6.241782983806843e-07, + "primal_infeasibility": 4.5631147473518165e-07, + "dual_infeasibility": 5.400635161301182e-09, + "iterations": 14, + "memo": { + "solver_solve_time": 0.005764081, + "problem_class": "SDP" + } + }, + { + "id": 1296, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:13", + "solve_time": 0.35665202140808105, + "status": "OPTIMAL", + "primal_objective_value": 123.38035632795552, + "dual_objective_value": 123.38035633377643, + "duality_gap": -5.820908199893893e-09, + "primal_infeasibility": 2.6424809145593065e-09, + "dual_infeasibility": 3.955822371523896e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1297, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:14", + "solve_time": 0.8292007446289062, + "status": "OPTIMAL", + "primal_objective_value": 123.38606688355063, + "dual_objective_value": 123.3860739362167, + "duality_gap": -7.052666077811409e-06, + "primal_infeasibility": 6.498518343337364e-06, + "dual_infeasibility": 0.0006916402494040062, + "iterations": 20875, + "memo": { + "solver_solve_time": 0.804396958, + "problem_class": "SDP" + } + }, + { + "id": 1298, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:14", + "solve_time": 0.06996703147888184, + "status": "OPTIMAL", + "primal_objective_value": 123.38036039934943, + "dual_objective_value": 123.38035581736214, + "duality_gap": 4.58198728381376e-06, + "primal_infeasibility": 4.557386001179585e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1299, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1300, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1301, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1302, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1303, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1304, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:47", + "solve_time": 5.025975227355957, + "status": "OPTIMAL", + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.33348833333333333, + "setup_time": [], + "iterations": 12, + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:06:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1305, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:06:52", + "solve_time": 4.912085056304932, + "status": "OPTIMAL", + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3005470416666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:06:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1306, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:04", + "solve_time": 4.419965982437134, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1307, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:08", + "solve_time": 4.3709330558776855, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1308, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:12", + "solve_time": 4.355494260787964, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1309, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:17", + "solve_time": 4.373051881790161, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1310, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:21", + "solve_time": 3.8298470973968506, + "status": "OPTIMAL", + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3171707916666667, + "setup_time": [], + "iterations": 12, + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1311, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:26", + "solve_time": 4.933191776275635, + "status": "OPTIMAL", + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.28215783333333333, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1312, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:30", + "solve_time": 4.786700010299683, + "status": "OPTIMAL", + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.2753730833333333, + "setup_time": [], + "iterations": 11, + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1313, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:35", + "solve_time": 4.920204162597656, + "status": "OPTIMAL", + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.271228375, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1314, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:42", + "solve_time": 4.366755962371826, + "status": "MAX_ITER", + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.6308557916666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1315, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:49", + "solve_time": 5.764998912811279, + "status": "NUM_ERROR", + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.9387889583333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1316, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:07:56", + "solve_time": 5.24981689453125, + "status": "UNKNOWN", + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.537898, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1317, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:01", + "solve_time": 4.921502351760864, + "status": "OPTIMAL", + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.21663925, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:07:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1318, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.00537109375, + "status": "OPTIMAL", + "primal_objective_value": 8.999996209209556, + "dual_objective_value": 8.999996230766877, + "duality_gap": -2.1557321261411744e-08, + "primal_infeasibility": 1.8223965354693912e-08, + "dual_infeasibility": 9.58875201462206e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.000160999, + "problem_class": "SDP" + } + }, + { + "id": 1319, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.027730941772460938, + "status": "OPTIMAL", + "primal_objective_value": 8.999996217101113, + "dual_objective_value": 8.999996231565662, + "duality_gap": -1.446454866993463e-08, + "primal_infeasibility": 2.1552454348135378e-08, + "dual_infeasibility": 1.3113686044545564e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1320, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.005390167236328125, + "status": "OPTIMAL", + "primal_objective_value": 9.000014086327363, + "dual_objective_value": 9.000007538484402, + "duality_gap": 6.547842961168726e-06, + "primal_infeasibility": 7.190939502213777e-07, + "dual_infeasibility": 2.017647402124318e-05, + "iterations": 175, + "memo": { + "solver_solve_time": 0.000392291, + "problem_class": "SDP" + } + }, + { + "id": 1321, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.013810157775878906, + "status": "OPTIMAL", + "primal_objective_value": 8.999996508066124, + "dual_objective_value": 8.999996257439102, + "duality_gap": 2.5062702135869586e-07, + "primal_infeasibility": 3.858578150973925e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1322, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.028374910354614258, + "status": "OPTIMAL", + "primal_objective_value": 123.38032438780319, + "dual_objective_value": 123.38032501198148, + "duality_gap": -6.241782983806843e-07, + "primal_infeasibility": 4.5631147473518165e-07, + "dual_infeasibility": 5.400635161301182e-09, + "iterations": 14, + "memo": { + "solver_solve_time": 0.003692876, + "problem_class": "SDP" + } + }, + { + "id": 1323, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.34323596954345703, + "status": "OPTIMAL", + "primal_objective_value": 123.38035632795552, + "dual_objective_value": 123.38035633377643, + "duality_gap": -5.820908199893893e-09, + "primal_infeasibility": 2.6424809145593065e-09, + "dual_infeasibility": 3.955822371523896e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1324, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:52", + "solve_time": 0.8349161148071289, + "status": "OPTIMAL", + "primal_objective_value": 123.38606688355063, + "dual_objective_value": 123.3860739362167, + "duality_gap": -7.052666077811409e-06, + "primal_infeasibility": 6.498518343337364e-06, + "dual_infeasibility": 0.0006916402494040062, + "iterations": 20875, + "memo": { + "solver_solve_time": 0.810098083, + "problem_class": "SDP" + } + }, + { + "id": 1325, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.07007503509521484, + "status": "OPTIMAL", + "primal_objective_value": 123.38036039934943, + "dual_objective_value": 123.38035581736214, + "duality_gap": 4.58198728381376e-06, + "primal_infeasibility": 4.557386001179585e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1326, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.007981061935424805, + "status": "OPTIMAL", + "primal_objective_value": 9.109996173192481, + "dual_objective_value": 9.109996174546737, + "duality_gap": -1.3542553745082841e-09, + "primal_infeasibility": 4.4855110956190985e-09, + "dual_infeasibility": 3.2774392518465433e-10, + "iterations": 12, + "memo": { + "solver_solve_time": 0.002694167, + "problem_class": "SDP" + } + }, + { + "id": 1327, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.05614018440246582, + "status": "OPTIMAL", + "primal_objective_value": 9.10999614243476, + "dual_objective_value": 9.109996145768458, + "duality_gap": -3.333697762286647e-09, + "primal_infeasibility": 1.0593331383658811e-08, + "dual_infeasibility": 3.349913566356823e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1328, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.5332508087158203, + "status": "OPTIMAL", + "primal_objective_value": 9.110041972462652, + "dual_objective_value": 9.110042582572902, + "duality_gap": -6.101102503208722e-07, + "primal_infeasibility": 1.529861449889821e-06, + "dual_infeasibility": 1.7591794995023966e-05, + "iterations": 44625, + "memo": { + "solver_solve_time": 0.5268769160000001, + "problem_class": "SDP" + } + }, + { + "id": 1329, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.0164947509765625, + "status": "OPTIMAL", + "primal_objective_value": 9.109996393410452, + "dual_objective_value": 9.109996016151454, + "duality_gap": 3.7725899737495183e-07, + "primal_infeasibility": 2.3142072741567036e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1330, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:53", + "solve_time": 0.005547046661376953, + "status": "OPTIMAL", + "primal_objective_value": 9.00999593358179, + "dual_objective_value": 9.00999596605511, + "duality_gap": -3.2473320032977426e-08, + "primal_infeasibility": 4.6640533097330856e-08, + "dual_infeasibility": 2.7918005083928495e-09, + "iterations": 10, + "memo": { + "solver_solve_time": 0.000317915, + "problem_class": "SDP" + } + }, + { + "id": 1331, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:54", + "solve_time": 0.040513038635253906, + "status": "OPTIMAL", + "primal_objective_value": 9.009995897864977, + "dual_objective_value": 9.009995926940062, + "duality_gap": -2.907508545035853e-08, + "primal_infeasibility": 4.360070834724522e-08, + "dual_infeasibility": 9.499477870988926e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1332, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:54", + "solve_time": 0.006245851516723633, + "status": "OPTIMAL", + "primal_objective_value": 9.009997345729218, + "dual_objective_value": 9.00999656325741, + "duality_gap": 7.82471808236096e-07, + "primal_infeasibility": 1.658167187900526e-07, + "dual_infeasibility": 6.101049682851663e-06, + "iterations": 225, + "memo": { + "solver_solve_time": 0.001088625, + "problem_class": "SDP" + } + }, + { + "id": 1333, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:54", + "solve_time": 0.014287710189819336, + "status": "OPTIMAL", + "primal_objective_value": 9.009996558636908, + "dual_objective_value": 9.009996064429895, + "duality_gap": 4.94207013090886e-07, + "primal_infeasibility": 5.460020736031756e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1334, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:56", + "solve_time": 0.25171804428100586, + "status": "OPTIMAL", + "primal_objective_value": 901.0002651409602, + "dual_objective_value": 901.0002705585873, + "duality_gap": -5.41762710781768e-06, + "primal_infeasibility": 1.4882091019913554e-06, + "dual_infeasibility": 6.463946489176919e-09, + "iterations": 25, + "memo": { + "solver_solve_time": 0.023413668, + "problem_class": "SDP" + } + }, + { + "id": 1335, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:00", + "solve_time": 2.006617784500122, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1336, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:16", + "solve_time": 14.444201946258545, + "status": "OPTIMAL", + "primal_objective_value": 901.0950988636213, + "dual_objective_value": 901.0950990173255, + "duality_gap": -1.537042635391117e-07, + "primal_infeasibility": 8.45148707615466e-06, + "dual_infeasibility": 0.013751596838046476, + "iterations": 99775, + "memo": { + "solver_solve_time": 14.213166083, + "problem_class": "SDP" + } + }, + { + "id": 1337, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:18", + "solve_time": 0.3029501438140869, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1338, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:19", + "solve_time": 0.12482285499572754, + "status": "OPTIMAL", + "primal_objective_value": 900.0010893310988, + "dual_objective_value": 900.0010944910015, + "duality_gap": -5.159902684681583e-06, + "primal_infeasibility": 7.752164593566989e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.006725375, + "problem_class": "SDP" + } + }, + { + "id": 1339, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:22", + "solve_time": 1.2377231121063232, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1340, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:26", + "solve_time": 3.880141019821167, + "status": "OPTIMAL", + "primal_objective_value": 900.0356340281699, + "dual_objective_value": 900.0356340614165, + "duality_gap": -3.3246692510147113e-08, + "primal_infeasibility": 9.397384533448782e-06, + "dual_infeasibility": 0.007035153135339471, + "iterations": 59000, + "memo": { + "solver_solve_time": 3.757820333, + "problem_class": "SDP" + } + }, + { + "id": 1341, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:28", + "solve_time": 0.333240270614624, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 900.0013051383315, + "dual_objective_value": 900.0014232785333, + "duality_gap": -0.00011814020172096207, + "primal_infeasibility": 3.7841041393477322e-06, + "dual_infeasibility": 2.3476799902441506e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1342, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1343, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1344, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1345, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1346, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1347, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1348, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1349, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1350, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1351, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1352, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1353, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1354, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1355, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1356, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1357, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1358, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1359, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1360, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1361, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1362, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1363, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1364, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1365, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1366, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:45", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1367, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:46", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1368, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:47", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1369, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1370, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1371, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1372, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:10:18", + "solve_time": 4.58935284614563, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1373, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:10:22", + "solve_time": 4.376220941543579, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1374, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:10:48", + "solve_time": 6.57210898399353, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.736989375, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:10:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1375, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:10:55", + "solve_time": 7.028964996337891, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.271947208333333, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:10:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1376, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:10", + "solve_time": 6.399893045425415, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.682455875, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1377, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:17", + "solve_time": 6.221850872039795, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.44971225, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1378, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:23", + "solve_time": 6.2794270515441895, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.55073325, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1379, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:30", + "solve_time": 6.7028679847717285, + "status": "OPTIMAL", + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.9857934166666666, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1380, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:36", + "solve_time": 6.247876882553101, + "status": "OPTIMAL", + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5343246666666666, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1381, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:43", + "solve_time": 6.909981966018677, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.1732149166666668, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1382, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:50", + "solve_time": 6.386530637741089, + "status": "UNKNOWN", + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.6728169583333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1383, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:11:57", + "solve_time": 7.051914930343628, + "status": "OPTIMAL", + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.284110958333333, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:11:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1384, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:12:17", + "solve_time": 8.206942081451416, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172821147114, + "dual_objective_value": -0.5665172817725594, + "duality_gap": -3.421519734203571e-10, + "primal_infeasibility": 1.022967781834959e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 5.106811166, + "problem_class": "SDP" + } + }, + { + "id": 1385, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:12:25", + "solve_time": 8.386672973632812, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172762101253, + "dual_objective_value": -0.5665172760832871, + "duality_gap": -1.2683820660441825e-10, + "primal_infeasibility": 2.9533438966925347e-08, + "dual_infeasibility": 4.1854682344393564e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1386, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:14:36", + "solve_time": 18.91683077812195, + "status": "OPTIMAL", + "primal_objective_value": -629.1552923299075, + "dual_objective_value": -629.1552928252305, + "duality_gap": 4.953229790771729e-07, + "primal_infeasibility": 4.481328896581869e-12, + "dual_infeasibility": 6.4689153410981875e-18, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.186532833333334, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -629.1552923299075, + "dual_objective_value": -629.1552928252305, + "duality_gap": 4.953229790771729e-07, + "primal_infeasibility": 4.481328896581869e-12, + "dual_infeasibility": 6.4689153410981875e-18, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:14:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1387, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:15:30", + "solve_time": 52.876553773880005, + "status": "NUM_ERROR", + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 39.53807716666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:15:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1388, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1389, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1390, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1391, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1392, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1393, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:18", + "solve_time": 6.544732093811035, + "status": "MAX_ITER", + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.6247799583333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:27:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1394, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:25", + "solve_time": 4.718091011047363, + "status": "NUM_ERROR", + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.908533125, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:27:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1395, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:33", + "solve_time": 0.2537209987640381, + "status": "OPTIMAL", + "primal_objective_value": 901.0002651409602, + "dual_objective_value": 901.0002705585873, + "duality_gap": -5.41762710781768e-06, + "primal_infeasibility": 1.4882091019913554e-06, + "dual_infeasibility": 6.463946489176919e-09, + "iterations": 25, + "memo": { + "solver_solve_time": 0.023302585, + "problem_class": "SDP" + } + }, + { + "id": 1396, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:37", + "solve_time": 1.9965460300445557, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1397, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:53", + "solve_time": 14.329941987991333, + "status": "OPTIMAL", + "primal_objective_value": 901.0950988636213, + "dual_objective_value": 901.0950990173255, + "duality_gap": -1.537042635391117e-07, + "primal_infeasibility": 8.45148707615466e-06, + "dual_infeasibility": 0.013751596838046476, + "iterations": 99775, + "memo": { + "solver_solve_time": 14.097880625, + "problem_class": "SDP" + } + }, + { + "id": 1398, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:27:56", + "solve_time": 0.29096198081970215, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1399, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1400, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1401, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1402, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1403, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1404, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:24", + "solve_time": 5.20724892616272, + "status": "UNKNOWN", + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.551001875, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:28:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1405, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:30", + "solve_time": 5.02426815032959, + "status": "OPTIMAL", + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.2694272916666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:28:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1406, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:38", + "solve_time": 0.13422012329101562, + "status": "OPTIMAL", + "primal_objective_value": 900.0010893310988, + "dual_objective_value": 900.0010944910015, + "duality_gap": -5.159902684681583e-06, + "primal_infeasibility": 7.752164593566989e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.006702831, + "problem_class": "SDP" + } + }, + { + "id": 1407, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:40", + "solve_time": 1.2562849521636963, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1408, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:45", + "solve_time": 3.86313796043396, + "status": "OPTIMAL", + "primal_objective_value": 900.0356340281699, + "dual_objective_value": 900.0356340614165, + "duality_gap": -3.3246692510147113e-08, + "primal_infeasibility": 9.397384533448782e-06, + "dual_infeasibility": 0.007035153135339471, + "iterations": 59000, + "memo": { + "solver_solve_time": 3.7472856660000002, + "problem_class": "SDP" + } + }, + { + "id": 1409, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:46", + "solve_time": 0.33388805389404297, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 900.0013051383315, + "dual_objective_value": 900.0014232785333, + "duality_gap": -0.00011814020172096207, + "primal_infeasibility": 3.7841041393477322e-06, + "dual_infeasibility": 2.3476799902441506e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1410, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1411, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1412, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1413, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1414, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1415, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.008645772933959961, + "status": "OPTIMAL", + "primal_objective_value": 9.109996173192481, + "dual_objective_value": 9.109996174546737, + "duality_gap": -1.3542553745082841e-09, + "primal_infeasibility": 4.4855110956190985e-09, + "dual_infeasibility": 3.2774392518465433e-10, + "iterations": 12, + "memo": { + "solver_solve_time": 0.002515546, + "problem_class": "SDP" + } + }, + { + "id": 1416, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.062148094177246094, + "status": "OPTIMAL", + "primal_objective_value": 9.10999614243476, + "dual_objective_value": 9.109996145768458, + "duality_gap": -3.333697762286647e-09, + "primal_infeasibility": 1.0593331383658811e-08, + "dual_infeasibility": 3.349913566356823e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1417, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.5392508506774902, + "status": "OPTIMAL", + "primal_objective_value": 9.110041972462652, + "dual_objective_value": 9.110042582572902, + "duality_gap": -6.101102503208722e-07, + "primal_infeasibility": 1.529861449889821e-06, + "dual_infeasibility": 1.7591794995023966e-05, + "iterations": 44625, + "memo": { + "solver_solve_time": 0.533749833, + "problem_class": "SDP" + } + }, + { + "id": 1418, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.01682901382446289, + "status": "OPTIMAL", + "primal_objective_value": 9.109996393410452, + "dual_objective_value": 9.109996016151454, + "duality_gap": 3.7725899737495183e-07, + "primal_infeasibility": 2.3142072741567036e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1419, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1420, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1421, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1422, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1423, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1424, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:33:59", + "solve_time": 4.789407014846802, + "status": "OPTIMAL", + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.2749352916666667, + "setup_time": [], + "iterations": 11, + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:33:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1425, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:04", + "solve_time": 4.88458776473999, + "status": "OPTIMAL", + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.27098816666666664, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:34:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1426, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:10", + "solve_time": 5.213371992111206, + "status": "OPTIMAL", + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5105302916666666, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:34:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1427, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:16", + "solve_time": 5.2311460971832275, + "status": "OPTIMAL", + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.45464245833333333, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:34:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1428, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:23", + "solve_time": 5.613719940185547, + "status": "OPTIMAL", + "primal_objective_value": 133.11458916487112, + "dual_objective_value": 133.11458909069876, + "duality_gap": 7.417236247420078e-08, + "primal_infeasibility": 1.8201739000684703e-10, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7749886666666667, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 133.11458916487112, + "dual_objective_value": 133.11458909069876, + "duality_gap": 7.417236247420078e-08, + "primal_infeasibility": 1.8201739000684703e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:34:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1429, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:30", + "solve_time": 5.908622980117798, + "status": "OPTIMAL", + "primal_objective_value": 133.11458828413384, + "dual_objective_value": 133.11458828656077, + "duality_gap": 2.426929768262198e-09, + "primal_infeasibility": 7.281149777057451e-09, + "dual_infeasibility": 2.2946480299761797e-10, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.014568875, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 133.11458828413384, + "dual_objective_value": 133.11458828656077, + "duality_gap": 2.426929768262198e-09, + "primal_infeasibility": 7.281149777057451e-09, + "dual_infeasibility": 2.2946480299761797e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 01:34:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1430, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:37", + "solve_time": 0.005964040756225586, + "status": "OPTIMAL", + "primal_objective_value": 9.00999593358179, + "dual_objective_value": 9.00999596605511, + "duality_gap": -3.2473320032977426e-08, + "primal_infeasibility": 4.6640533097330856e-08, + "dual_infeasibility": 2.7918005083928495e-09, + "iterations": 10, + "memo": { + "solver_solve_time": 0.000393664, + "problem_class": "SDP" + } + }, + { + "id": 1431, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:37", + "solve_time": 0.03595900535583496, + "status": "OPTIMAL", + "primal_objective_value": 9.009995897864977, + "dual_objective_value": 9.009995926940062, + "duality_gap": -2.907508545035853e-08, + "primal_infeasibility": 4.360070834724522e-08, + "dual_infeasibility": 9.499477870988926e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1432, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:37", + "solve_time": 0.00639796257019043, + "status": "OPTIMAL", + "primal_objective_value": 9.009997345729218, + "dual_objective_value": 9.00999656325741, + "duality_gap": 7.82471808236096e-07, + "primal_infeasibility": 1.658167187900526e-07, + "dual_infeasibility": 6.101049682851663e-06, + "iterations": 225, + "memo": { + "solver_solve_time": 0.001100375, + "problem_class": "SDP" + } + }, + { + "id": 1433, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:37", + "solve_time": 0.014657020568847656, + "status": "OPTIMAL", + "primal_objective_value": 9.009996558636908, + "dual_objective_value": 9.009996064429895, + "duality_gap": 4.94207013090886e-07, + "primal_infeasibility": 5.460020736031756e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1434, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:38", + "solve_time": 0.49745821952819824, + "status": "OPTIMAL", + "primal_objective_value": 132.63566253199446, + "dual_objective_value": 132.6356626115363, + "duality_gap": -7.954184866321157e-08, + "primal_infeasibility": 1.2653383845157188e-07, + "dual_infeasibility": 2.366013540423536e-09, + "iterations": 18, + "memo": { + "solver_solve_time": 0.382465791, + "problem_class": "SDP" + } + }, + { + "id": 1435, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:34:40", + "solve_time": 1.2629749774932861, + "status": "OPTIMAL", + "primal_objective_value": 132.6356762279693, + "dual_objective_value": 132.6356762370283, + "duality_gap": -9.058993555299821e-09, + "primal_infeasibility": 1.4424052246283952e-08, + "dual_infeasibility": 3.0183302558080747e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1436, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:35:03", + "solve_time": 22.394976139068604, + "status": "OPTIMAL", + "primal_objective_value": 132.67027858454858, + "dual_objective_value": 132.67028269707538, + "duality_gap": -4.112526795552185e-06, + "primal_infeasibility": 2.547895198115238e-06, + "dual_infeasibility": 0.002408958215925523, + "iterations": 83775, + "memo": { + "solver_solve_time": 22.277485625, + "problem_class": "SDP" + } + }, + { + "id": 1437, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:35:04", + "solve_time": 0.2245340347290039, + "status": "OPTIMAL", + "primal_objective_value": 132.63567945392438, + "dual_objective_value": 132.63567502877513, + "duality_gap": 4.4251492568037065e-06, + "primal_infeasibility": 2.494296172882748e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1438, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:35:13", + "solve_time": 8.423373937606812, + "status": "OPTIMAL", + "primal_objective_value": 133.1145235740515, + "dual_objective_value": 133.11452372670436, + "duality_gap": -1.5265285924215277e-07, + "primal_infeasibility": 5.798818510869592e-07, + "dual_infeasibility": 1.8795571691601026e-08, + "iterations": 20, + "memo": { + "solver_solve_time": 7.601113419, + "problem_class": "SDP" + } + }, + { + "id": 1439, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:35:20", + "solve_time": 5.338012933731079, + "status": "OPTIMAL", + "primal_objective_value": 133.1145887359414, + "dual_objective_value": 133.1145887345484, + "duality_gap": 1.3930048226029612e-09, + "primal_infeasibility": 4.487143094483282e-09, + "dual_infeasibility": 9.45481793646842e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1440, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.005716085433959961, + "status": "OPTIMAL", + "primal_objective_value": 9.00999593358179, + "dual_objective_value": 9.00999596605511, + "duality_gap": -3.2473320032977426e-08, + "primal_infeasibility": 4.6640533097330856e-08, + "dual_infeasibility": 2.7918005083928495e-09, + "iterations": 10, + "memo": { + "solver_solve_time": 0.000377085, + "problem_class": "SDP" + } + }, + { + "id": 1441, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.03877997398376465, + "status": "OPTIMAL", + "primal_objective_value": 9.009995897864977, + "dual_objective_value": 9.009995926940062, + "duality_gap": -2.907508545035853e-08, + "primal_infeasibility": 4.360070834724522e-08, + "dual_infeasibility": 9.499477870988926e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1442, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.0063629150390625, + "status": "OPTIMAL", + "primal_objective_value": 9.009997345729218, + "dual_objective_value": 9.00999656325741, + "duality_gap": 7.82471808236096e-07, + "primal_infeasibility": 1.658167187900526e-07, + "dual_infeasibility": 6.101049682851663e-06, + "iterations": 225, + "memo": { + "solver_solve_time": 0.001095791, + "problem_class": "SDP" + } + }, + { + "id": 1443, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.014675140380859375, + "status": "OPTIMAL", + "primal_objective_value": 9.009996558636908, + "dual_objective_value": 9.009996064429895, + "duality_gap": 4.94207013090886e-07, + "primal_infeasibility": 5.460020736031756e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1444, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1445, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1446, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1447, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1448, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1452, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:10:47", + "solve_time": 0.5915824583333333, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5915824583333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1453, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:10:53", + "solve_time": 0.8812795416666667, + "status": "OPTIMAL", + "primal_objective_value": -13.012270029385133, + "dual_objective_value": -13.012270026410215, + "duality_gap": 2.9749180896487815e-09, + "primal_infeasibility": 1.5604221692182964e-10, + "dual_infeasibility": 2.645992296428134e-10, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8812795416666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -13.012270029385133, + "dual_objective_value": -13.012270026410215, + "duality_gap": 2.9749180896487815e-09, + "primal_infeasibility": 1.5604221692182964e-10, + "dual_infeasibility": 2.645992296428134e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1454, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:10:58", + "solve_time": 0.602918625, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.602918625, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1455, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:11:04", + "solve_time": 0.6093694583333333, + "status": "OPTIMAL", + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6093694583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:11:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1456, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:04", + "solve_time": 54.54148845833333, + "status": "NUM_ERROR", + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 54.54148845833333, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1459, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:18", + "solve_time": 0.6905710833333333, + "status": "OPTIMAL", + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6905710833333333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1460, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:46", + "solve_time": 23.723182375, + "status": "OPTIMAL", + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 23.723182375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1461, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:54:06", + "solve_time": 300.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } + }, + { + "id": 1462, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:38", + "solve_time": 2.2475020833333335, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.2475020833333335, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1463, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:45", + "solve_time": 1.7373145833333334, + "status": "OPTIMAL", + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.7373145833333334, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1464, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:52", + "solve_time": 1.874344125, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.874344125, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1465, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:01", + "solve_time": 3.12848525, + "status": "OPTIMAL", + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 3.12848525, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1466, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:07", + "solve_time": 0.8317842916666667, + "status": "OPTIMAL", + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8317842916666667, + "setup_time": [], + "iterations": 37, + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1468, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:19", + "solve_time": 0.5304792916666666, + "status": "NUM_ERROR", + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5304792916666666, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1469, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:24", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1470, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:29", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1471, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:35", + "solve_time": 0.38086575, + "status": "NUM_ERROR", + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.38086575, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1472, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:40", + "solve_time": 0.291179125, + "status": "NUM_ERROR", + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.291179125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1473, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:46", + "solve_time": 0.2846183333333333, + "status": "NUM_ERROR", + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.2846183333333333, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1474, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:51", + "solve_time": 0.348588375, + "status": "OPTIMAL", + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.348588375, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1475, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:57", + "solve_time": 0.29583345833333335, + "status": "NUM_ERROR", + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.29583345833333335, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1476, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:02", + "solve_time": 0.34503904166666666, + "status": "NUM_ERROR", + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.34503904166666666, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1477, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:08", + "solve_time": 0.30022125, + "status": "NUM_ERROR", + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.30022125, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1478, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:13", + "solve_time": 0.3128221666666667, + "status": "NUM_ERROR", + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3128221666666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1479, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:19", + "solve_time": 0.317706625, + "status": "OPTIMAL", + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.317706625, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1480, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:24", + "solve_time": 0.3626290833333333, + "status": "NUM_ERROR", + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3626290833333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1481, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:30", + "solve_time": 0.3754861666666667, + "status": "NUM_ERROR", + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3754861666666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1482, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:35", + "solve_time": 0.3087037083333333, + "status": "OPTIMAL", + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3087037083333333, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1483, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:41", + "solve_time": 0.34354358333333335, + "status": "NUM_ERROR", + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.34354358333333335, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1484, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:47", + "solve_time": 0.42435625, + "status": "NUM_ERROR", + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.42435625, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1485, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:52", + "solve_time": 0.3233525, + "status": "NUM_ERROR", + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3233525, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1490, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:19", + "solve_time": 0.2549562083333333, + "status": "OPTIMAL", + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2549562083333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1491, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:25", + "solve_time": 0.3632245416666667, + "status": "NUM_ERROR", + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3632245416666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1492, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:30", + "solve_time": 0.5065246666666666, + "status": "NUM_ERROR", + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5065246666666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1493, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:36", + "solve_time": 0.8749054583333333, + "status": "NUM_ERROR", + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.8749054583333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1494, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:42", + "solve_time": 1.283624125, + "status": "NUM_ERROR", + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.283624125, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1495, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:50", + "solve_time": 2.500351125, + "status": "NUM_ERROR", + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.500351125, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1496, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:41:03", + "solve_time": 6.760695833333333, + "status": "NUM_ERROR", + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, + "dual_infeasibility": 0.0, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.760695833333333, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:41:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1497, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:41:57", + "solve_time": 40.736246875, + "status": "NUM_ERROR", + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 40.736246875, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:41:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1498, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:46", + "solve_time": 84.32632358333333, + "status": "NUM_ERROR", + "primal_objective_value": -4005.599767044349, + "dual_objective_value": -4005.599767799965, + "duality_gap": 7.556159289379138e-07, + "primal_infeasibility": 8.95433741624491e-09, + "dual_infeasibility": 5.676034290944519e-12, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 84.32632358333333, + "setup_time": [], + "iterations": 30, + "primal_objective_value": -4005.599767044349, + "dual_objective_value": -4005.599767799965, + "duality_gap": 7.556159289379138e-07, + "primal_infeasibility": 8.95433741624491e-09, + "dual_infeasibility": 5.676034290944519e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1499, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:52", + "solve_time": 0.30866791666666665, + "status": "OPTIMAL", + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0.0, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.30866791666666665, + "setup_time": [], + "iterations": 30, + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1500, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:58", + "solve_time": 0.3295910833333333, + "status": "OPTIMAL", + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3295910833333333, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1501, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:04", + "solve_time": 0.5063703333333334, + "status": "NUM_ERROR", + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5063703333333334, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1502, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:10", + "solve_time": 0.619574875, + "status": "NUM_ERROR", + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.619574875, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1503, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:16", + "solve_time": 1.1899270833333333, + "status": "NUM_ERROR", + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.1899270833333333, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1504, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:24", + "solve_time": 2.2992367083333334, + "status": "NUM_ERROR", + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.2992367083333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1505, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:34", + "solve_time": 3.7043799583333334, + "status": "NUM_ERROR", + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.7043799583333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1506, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:48", + "solve_time": 6.0665873333333336, + "status": "NUM_ERROR", + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.0665873333333336, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1507, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:45:05", + "solve_time": 10.212919458333333, + "status": "NUM_ERROR", + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 10.212919458333333, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:45:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1508, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:45:31", + "solve_time": 17.53509725, + "status": "NUM_ERROR", + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0.0, + "iterations": 43, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 17.53509725, + "setup_time": [], + "iterations": 43, + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:45:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1509, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:12", + "solve_time": 30.733073958333332, + "status": "NUM_ERROR", + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0.0, + "iterations": 47, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 30.733073958333332, + "setup_time": [], + "iterations": 47, + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1510, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:18", + "solve_time": 0.279735125, + "status": "OPTIMAL", + "primal_objective_value": 8.999996304463258, + "dual_objective_value": 8.999996309461777, + "duality_gap": 4.998518932097795e-09, + "primal_infeasibility": 2.0925600974181833e-09, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.279735125, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 8.999996304463258, + "dual_objective_value": 8.999996309461777, + "duality_gap": 4.998518932097795e-09, + "primal_infeasibility": 2.0925600974181833e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1511, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:24", + "solve_time": 0.3927455833333333, + "status": "OPTIMAL", + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3927455833333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1512, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:29", + "solve_time": 0.2865194166666667, + "status": "OPTIMAL", + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2865194166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1513, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:35", + "solve_time": 0.26377516666666667, + "status": "OPTIMAL", + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.26377516666666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1514, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:42", + "solve_time": 0.98678925, + "status": "NUM_ERROR", + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.98678925, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1515, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:50", + "solve_time": 1.1931540833333334, + "status": "OPTIMAL", + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1931540833333334, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1516, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:55", + "solve_time": 0.2917774166666667, + "status": "OPTIMAL", + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2917774166666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1517, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:01", + "solve_time": 0.631585375, + "status": "OPTIMAL", + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.631585375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1518, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:08", + "solve_time": 2.416633291666667, + "status": "OPTIMAL", + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.416633291666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1519, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:15", + "solve_time": 0.4045484166666667, + "status": "OPTIMAL", + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.4045484166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1521, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:27", + "solve_time": 0.49142, + "status": "OPTIMAL", + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.49142, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1523, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:48:02", + "solve_time": 18.21366383333333, + "status": "OPTIMAL", + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 18.21366383333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:48:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1524, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:09", + "solve_time": 0.7506059583333333, + "status": "OPTIMAL", + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "iterations": 44, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7506059583333333, + "setup_time": [], + "iterations": 44, + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1525, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:16", + "solve_time": 1.1841420833333334, + "status": "OPTIMAL", + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "iterations": 41, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1841420833333334, + "setup_time": [], + "iterations": 41, + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1526, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:21", + "solve_time": 0.514955, + "status": "OPTIMAL", + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.514955, + "setup_time": [], + "iterations": 31, + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1527, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:27", + "solve_time": 1.0436247916666668, + "status": "OPTIMAL", + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.0436247916666668, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1528, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:42", + "solve_time": 9.029102375, + "status": "OPTIMAL", + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.029102375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1529, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:54:24", + "solve_time": 32.23979391666666, + "status": "OPTIMAL", + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 32.23979391666666, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:54:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1530, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:56:13", + "solve_time": 96.736359625, + "status": "OPTIMAL", + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 96.736359625, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1531, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:56:19", + "solve_time": 0.9663814166666667, + "status": "OPTIMAL", + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.9663814166666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1532, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:56:38", + "solve_time": 12.182909208333333, + "status": "OPTIMAL", + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 12.182909208333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1535, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:57:30", + "solve_time": 1.614889625, + "status": "OPTIMAL", + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.614889625, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:57:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1538, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:00:23", + "solve_time": 3.3865474583333333, + "status": "NUM_ERROR", + "primal_objective_value": 717367.7873780461, + "dual_objective_value": 717367.7875279884, + "duality_gap": 0.0001499423524364829, + "primal_infeasibility": 3.2577166049237135e-05, + "dual_infeasibility": 3.822526277112251e-09, + "iterations": 101, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.3865474583333333, + "setup_time": [], + "iterations": 101, + "primal_objective_value": 717367.7873780461, + "dual_objective_value": 717367.7875279884, + "duality_gap": 0.0001499423524364829, + "primal_infeasibility": 3.2577166049237135e-05, + "dual_infeasibility": 3.822526277112251e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1539, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:00:38", + "solve_time": 9.316090291666667, + "status": "INFEASIBLE", + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "iterations": 150, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "infeasible", + "solve_time": 9.316090291666667, + "setup_time": [], + "iterations": 150, + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1540, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:00:45", + "solve_time": 1.767578, + "status": "OPTIMAL", + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "iterations": 60, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.767578, + "setup_time": [], + "iterations": 60, + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1541, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:00:56", + "solve_time": 5.779061583333333, + "status": "OPTIMAL", + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "iterations": 79, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 5.779061583333333, + "setup_time": [], + "iterations": 79, + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1542, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:01:57", + "solve_time": 43.0097865, + "status": "OPTIMAL", + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 43.0097865, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:01:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1545, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:03:39", + "solve_time": 8.568708083333334, + "status": "OPTIMAL", + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 8.568708083333334, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:03:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1546, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:10:16", + "solve_time": 69.43002633333333, + "status": "OPTIMAL", + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "iterations": 33, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 69.43002633333333, + "setup_time": [], + "iterations": 33, + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:10:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1547, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:22", + "solve_time": 0.5942775, + "status": "OPTIMAL", + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5942775, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:15:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1548, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:30", + "solve_time": 1.1123747916666666, + "status": "OPTIMAL", + "primal_objective_value": 133.11458828413384, + "dual_objective_value": 133.11458828656077, + "duality_gap": 2.426929768262198e-09, + "primal_infeasibility": 7.281149777057451e-09, + "dual_infeasibility": 2.2946480299761797e-10, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1123747916666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 133.11458828413384, + "dual_objective_value": 133.11458828656077, + "duality_gap": 2.426929768262198e-09, + "primal_infeasibility": 7.281149777057451e-09, + "dual_infeasibility": 2.2946480299761797e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:15:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1549, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:35", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1550, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:40", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1551, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:45", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1552, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:50", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1553, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:55", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1554, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:00", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1555, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:05", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1556, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:10", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1557, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:14", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1558, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:19", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1559, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:24", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1560, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:29", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1561, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:34", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1562, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:39", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1563, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:44", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1564, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:49", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1565, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:54", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1566, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:16:59", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1567, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:04", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1568, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:09", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1569, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:14", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1570, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:19", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1571, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:24", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1572, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:29", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1573, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:33", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1574, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:38", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1575, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:42", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1576, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:17:47", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1577, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:22:59", + "solve_time": 5.317319375, + "status": "OPTIMAL", + "primal_objective_value": -42.666666707488446, + "dual_objective_value": -42.66666670384585, + "duality_gap": 3.6425973348741536e-09, + "primal_infeasibility": 2.7680298055873787e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 5.317319375, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -42.666666707488446, + "dual_objective_value": -42.66666670384585, + "duality_gap": 3.6425973348741536e-09, + "primal_infeasibility": 2.7680298055873787e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:22:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1578, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:30:50", + "solve_time": 142.55485320833333, + "status": "OPTIMAL", + "primal_objective_value": -2448.659124217068, + "dual_objective_value": -2448.659124204988, + "duality_gap": 1.2079908628948033e-08, + "primal_infeasibility": 4.663936345007886e-09, + "dual_infeasibility": 7.389642148204685e-12, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 142.55485320833333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -2448.659124217068, + "dual_objective_value": -2448.659124204988, + "duality_gap": 1.2079908628948033e-08, + "primal_infeasibility": 4.663936345007886e-09, + "dual_infeasibility": 7.389642148204685e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:30:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1579, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:36:22", + "solve_time": 26.297596458333334, + "status": "OPTIMAL", + "primal_objective_value": -224.00000026429433, + "dual_objective_value": -224.00000011609177, + "duality_gap": 1.4820255955783068e-07, + "primal_infeasibility": 5.2487088009421366e-09, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 26.297596458333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -224.00000026429433, + "dual_objective_value": -224.00000011609177, + "duality_gap": 1.4820255955783068e-07, + "primal_infeasibility": 5.2487088009421366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:36:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1582, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:37:03", + "solve_time": 7.601006166666667, + "status": "OPTIMAL", + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 7.601006166666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:37:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1584, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:58:40", + "solve_time": 0.96570575, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.96570575, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1585, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:58:47", + "solve_time": 1.7669237083333333, + "status": "OPTIMAL", + "primal_objective_value": -13.012270587360916, + "dual_objective_value": -13.012270701517188, + "duality_gap": 1.1415627199085066e-07, + "primal_infeasibility": 5.912533758053113e-11, + "dual_infeasibility": 1.1086499606208974e-11, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.7669237083333333, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -13.012270587360916, + "dual_objective_value": -13.012270701517188, + "duality_gap": 1.1415627199085066e-07, + "primal_infeasibility": 5.912533758053113e-11, + "dual_infeasibility": 1.1086499606208974e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1586, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:58:52", + "solve_time": 0.9697343333333334, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719758296834, + "dual_objective_value": -1.6289719649739611, + "duality_gap": 1.0855722321068129e-08, + "primal_infeasibility": 1.2364826274510168e-10, + "dual_infeasibility": 2.3874355910020744e-10, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9697343333333334, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -1.6289719758296834, + "dual_objective_value": -1.6289719649739611, + "duality_gap": 1.0855722321068129e-08, + "primal_infeasibility": 1.2364826274510168e-10, + "dual_infeasibility": 2.3874355910020744e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1587, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:58:59", + "solve_time": 0.7735605, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7735605, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1590, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:15", + "solve_time": 0.8339302916666667, + "status": "OPTIMAL", + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8339302916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1591, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:27", + "solve_time": 6.8528615, + "status": "OPTIMAL", + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.8528615, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1592, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:35", + "solve_time": 3.385503375, + "status": "MAX_ITER", + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0.0, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 3.385503375, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1594, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:49", + "solve_time": 0.9657167916666667, + "status": "UNKNOWN", + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.9657167916666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1595, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf12", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:54", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1596, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:59", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1597, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:06", + "solve_time": 1.89119475, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.89119475, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1598, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:13", + "solve_time": 1.86828275, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.86828275, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1599, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:20", + "solve_time": 1.705317875, + "status": "OPTIMAL", + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.705317875, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1600, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:27", + "solve_time": 1.4575445, + "status": "UNKNOWN", + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.4575445, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1605, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:56", + "solve_time": 0.4685420416666667, + "status": "OPTIMAL", + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0.0, + "iterations": 10, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.4685420416666667, + "setup_time": [], + "iterations": 10, + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1606, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:02", + "solve_time": 0.7566619166666667, + "status": "OPTIMAL", + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7566619166666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1607, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:08", + "solve_time": 0.6350701666666667, + "status": "UNKNOWN", + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.6350701666666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1608, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:14", + "solve_time": 0.5659632083333334, + "status": "OPTIMAL", + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5659632083333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1609, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:19", + "solve_time": 0.8991597916666667, + "status": "OPTIMAL", + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8991597916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1610, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:26", + "solve_time": 0.8021789583333333, + "status": "UNKNOWN", + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.8021789583333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1611, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:35", + "solve_time": 2.882202875, + "status": "UNKNOWN", + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.882202875, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1612, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:56", + "solve_time": 5.390393125, + "status": "OPTIMAL", + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.390393125, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1613, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:29", + "solve_time": 8.547652125, + "status": "OPTIMAL", + "primal_objective_value": -4005.601288017268, + "dual_objective_value": -4005.601316366677, + "duality_gap": 2.834940914908657e-05, + "primal_infeasibility": 5.789644333861485e-11, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 8.547652125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -4005.601288017268, + "dual_objective_value": -4005.601316366677, + "duality_gap": 2.834940914908657e-05, + "primal_infeasibility": 5.789644333861485e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1614, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:34", + "solve_time": 0.37224925, + "status": "UNKNOWN", + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.37224925, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1615, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:40", + "solve_time": 0.3056114583333333, + "status": "UNKNOWN", + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.3056114583333333, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1616, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:45", + "solve_time": 0.3675725833333333, + "status": "OPTIMAL", + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3675725833333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1617, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:51", + "solve_time": 0.348355125, + "status": "MAX_ITER", + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.348355125, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1618, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:56", + "solve_time": 0.30704, + "status": "UNKNOWN", + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.30704, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1619, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:02", + "solve_time": 0.3865935, + "status": "MAX_ITER", + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.3865935, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1620, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:07", + "solve_time": 0.321014, + "status": "OPTIMAL", + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.321014, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1621, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:13", + "solve_time": 0.3580920416666667, + "status": "MAX_ITER", + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.3580920416666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1622, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:19", + "solve_time": 0.3677940416666667, + "status": "UNKNOWN", + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.3677940416666667, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1623, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:23", + "solve_time": 0.365393375, + "status": "UNKNOWN", + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.365393375, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1624, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:29", + "solve_time": 0.4292201666666667, + "status": "UNKNOWN", + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.4292201666666667, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1625, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:34", + "solve_time": 0.5892792083333334, + "status": "UNKNOWN", + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, + "dual_infeasibility": 0.0, + "iterations": 61, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5892792083333334, + "setup_time": [], + "iterations": 61, + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1626, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:40", + "solve_time": 0.5201742916666666, + "status": "UNKNOWN", + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5201742916666666, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1627, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:46", + "solve_time": 0.5131727916666666, + "status": "UNKNOWN", + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5131727916666666, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1628, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:52", + "solve_time": 0.5514212916666666, + "status": "UNKNOWN", + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5514212916666666, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1629, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:57", + "solve_time": 0.29932166666666665, + "status": "OPTIMAL", + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.29932166666666665, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1630, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:03", + "solve_time": 0.41014416666666664, + "status": "MAX_ITER", + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.41014416666666664, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1631, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:09", + "solve_time": 0.5669687916666667, + "status": "MAX_ITER", + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.5669687916666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1632, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:14", + "solve_time": 0.9797094583333333, + "status": "UNKNOWN", + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.9797094583333333, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1633, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:21", + "solve_time": 2.211192083333333, + "status": "UNKNOWN", + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.211192083333333, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1634, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:28", + "solve_time": 1.4893847916666667, + "status": "UNKNOWN", + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.4893847916666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1635, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:37", + "solve_time": 2.1745322916666665, + "status": "UNKNOWN", + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.1745322916666665, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1636, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:47", + "solve_time": 3.2315104166666666, + "status": "UNKNOWN", + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 3.2315104166666666, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1637, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:59", + "solve_time": 5.164574291666667, + "status": "UNKNOWN", + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.164574291666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1638, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:17", + "solve_time": 8.544497708333333, + "status": "UNKNOWN", + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 8.544497708333333, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1639, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:38", + "solve_time": 11.558988291666667, + "status": "UNKNOWN", + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 11.558988291666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1640, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:43", + "solve_time": 0.24263908333333334, + "status": "OPTIMAL", + "primal_objective_value": 8.999996513737967, + "dual_objective_value": 8.999996285281131, + "duality_gap": 2.2845683567140895e-07, + "primal_infeasibility": 2.3112684240151632e-09, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.24263908333333334, + "setup_time": [], + "iterations": 9, + "primal_objective_value": 8.999996513737967, + "dual_objective_value": 8.999996285281131, + "duality_gap": 2.2845683567140895e-07, + "primal_infeasibility": 2.3112684240151632e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1641, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:49", + "solve_time": 0.36276016666666666, + "status": "OPTIMAL", + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.36276016666666666, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1642, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:54", + "solve_time": 0.291210125, + "status": "OPTIMAL", + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.291210125, + "setup_time": [], + "iterations": 12, + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1643, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:00", + "solve_time": 0.2855519166666667, + "status": "OPTIMAL", + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.2855519166666667, + "setup_time": [], + "iterations": 11, + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1644, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:06", + "solve_time": 0.5691390416666666, + "status": "MAX_ITER", + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.5691390416666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1645, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:13", + "solve_time": 0.544207125, + "status": "UNKNOWN", + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.544207125, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1646, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:19", + "solve_time": 0.3554101666666667, + "status": "OPTIMAL", + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3554101666666667, + "setup_time": [], + "iterations": 11, + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1647, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:25", + "solve_time": 0.5580662916666667, + "status": "OPTIMAL", + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5580662916666667, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1648, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:33", + "solve_time": 1.1650570833333334, + "status": "OPTIMAL", + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.1650570833333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1649, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:39", + "solve_time": 0.9404508333333333, + "status": "OPTIMAL", + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9404508333333333, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1651, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:50", + "solve_time": 0.7027917083333334, + "status": "UNKNOWN", + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.7027917083333334, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1653, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:07:14", + "solve_time": 2.363915125, + "status": "OPTIMAL", + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.363915125, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:07:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1654, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:36", + "solve_time": 15.456882125, + "status": "OPTIMAL", + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 15.456882125, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1655, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:41", + "solve_time": 0.7064037083333333, + "status": "MAX_ITER", + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.7064037083333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1656, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:49", + "solve_time": 1.319889125, + "status": "MAX_ITER", + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 1.319889125, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1657, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:55", + "solve_time": 0.7289274583333333, + "status": "OPTIMAL", + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7289274583333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1658, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:01", + "solve_time": 1.1798084166666667, + "status": "UNKNOWN", + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.1798084166666667, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1659, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:09", + "solve_time": 1.6901592083333334, + "status": "OPTIMAL", + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.6901592083333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1660, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:21", + "solve_time": 3.2877647083333335, + "status": "OPTIMAL", + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 3.2877647083333335, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1661, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:38", + "solve_time": 5.631308958333333, + "status": "OPTIMAL", + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.631308958333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1662, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:50", + "solve_time": 7.386539916666667, + "status": "NUM_ERROR", + "primal_objective_value": 23.439854216116014, + "dual_objective_value": 23.439818538353734, + "duality_gap": 3.5677762280528214e-05, + "primal_infeasibility": 8.672790954165753e-13, + "dual_infeasibility": 3.574491428937259e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "num_error", + "solve_time": 7.386539916666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 23.439854216116014, + "dual_objective_value": 23.439818538353734, + "duality_gap": 3.5677762280528214e-05, + "primal_infeasibility": 8.672790954165753e-13, + "dual_infeasibility": 3.574491428937259e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1663, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:16:03", + "solve_time": 4.5348270416666665, + "status": "OPTIMAL", + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 4.5348270416666665, + "setup_time": [], + "iterations": 42, + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:15:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1664, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:16:46", + "solve_time": 36.740298708333334, + "status": "OPTIMAL", + "primal_objective_value": -0.9277286131116571, + "dual_objective_value": -0.927728620913157, + "duality_gap": 7.801499890547348e-09, + "primal_infeasibility": 5.4916733095581286e-11, + "dual_infeasibility": 1.161702398637029e-12, + "iterations": 58, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 36.740298708333334, + "setup_time": [], + "iterations": 58, + "primal_objective_value": -0.9277286131116571, + "dual_objective_value": -0.927728620913157, + "duality_gap": 7.801499890547348e-09, + "primal_infeasibility": 5.4916733095581286e-11, + "dual_infeasibility": 1.161702398637029e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:16:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1667, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:18:35", + "solve_time": 2.3680329166666665, + "status": "UNKNOWN", + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.3680329166666665, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:18:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1669, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:25:33", + "solve_time": 2.528989458333333, + "status": "UNKNOWN", + "primal_objective_value": 717664.7819529852, + "dual_objective_value": 717343.935387326, + "duality_gap": 320.84656565915793, + "primal_infeasibility": 1.4635089779954944e-05, + "dual_infeasibility": 0.0, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.528989458333333, + "setup_time": [], + "iterations": 30, + "primal_objective_value": 717664.7819529852, + "dual_objective_value": 717343.935387326, + "duality_gap": 320.84656565915793, + "primal_infeasibility": 1.4635089779954944e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1670, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:25:45", + "solve_time": 6.322234541666667, + "status": "MAX_ITER", + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, + "dual_infeasibility": 0.0, + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 6.322234541666667, + "setup_time": [], + "iterations": 39, + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1671, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:25:52", + "solve_time": 1.908151625, + "status": "UNKNOWN", + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.908151625, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1672, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:26:03", + "solve_time": 5.2030821666666665, + "status": "UNKNOWN", + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.2030821666666665, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:26:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1673, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:26:27", + "solve_time": 5.433042291666666, + "status": "OPTIMAL", + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.433042291666666, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:26:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1676, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:28:05", + "solve_time": 1.9698861666666667, + "status": "OPTIMAL", + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.9698861666666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:28:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1677, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:29:50", + "solve_time": 96.853589375, + "status": "OPTIMAL", + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 96.853589375, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:29:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1678, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:30:23", + "solve_time": 6.12120375, + "status": "OPTIMAL", + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.12120375, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:30:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1679, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:34:40", + "solve_time": 138.05433633333334, + "status": "UNKNOWN", + "primal_objective_value": -348.9999945185722, + "dual_objective_value": -349.0000002426005, + "duality_gap": 5.724028312670271e-06, + "primal_infeasibility": 1.8779632575768103e-08, + "dual_infeasibility": 0.0, + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 138.05433633333334, + "setup_time": [], + "iterations": 39, + "primal_objective_value": -348.9999945185722, + "dual_objective_value": -349.0000002426005, + "duality_gap": 5.724028312670271e-06, + "primal_infeasibility": 1.8779632575768103e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1680, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:34:48", + "solve_time": 1.0470835833333334, + "status": "OPTIMAL", + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0470835833333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1681, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:34:56", + "solve_time": 1.0130884583333333, + "status": "OPTIMAL", + "primal_objective_value": 133.11458916487112, + "dual_objective_value": 133.11458909069876, + "duality_gap": 7.417236247420078e-08, + "primal_infeasibility": 1.8201739000684703e-10, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0130884583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 133.11458916487112, + "dual_objective_value": 133.11458909069876, + "duality_gap": 7.417236247420078e-08, + "primal_infeasibility": 1.8201739000684703e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1682, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:01", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1683, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:06", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1684, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:11", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1685, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:15", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1686, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:20", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1687, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:25", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1688, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:30", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1689, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:35", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1690, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:40", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1691, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:45", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1692, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:50", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1693, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:35:55", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1694, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:00", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1695, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:05", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1696, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:10", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1697, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:15", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1698, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:20", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1699, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:25", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1700, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:30", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1701, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:35", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1702, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:40", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1703, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:45", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1704, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:50", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1705, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:55", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1706, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:36:59", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1707, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:37:04", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1708, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:37:09", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1709, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:37:13", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 1710, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:42:19", + "solve_time": 1.0727401666666667, + "status": "OPTIMAL", + "primal_objective_value": -42.66666606990655, + "dual_objective_value": -42.66666679075191, + "duality_gap": 7.208453638440915e-07, + "primal_infeasibility": 1.0369985582790911e-10, + "dual_infeasibility": 0.0, + "iterations": 8, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0727401666666667, + "setup_time": [], + "iterations": 8, + "primal_objective_value": -42.66666606990655, + "dual_objective_value": -42.66666679075191, + "duality_gap": 7.208453638440915e-07, + "primal_infeasibility": 1.0369985582790911e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:42:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1711, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:44:56", + "solve_time": 151.334371, + "status": "OPTIMAL", + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 151.334371, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:44:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1712, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:45:28", + "solve_time": 3.4544910833333335, + "status": "OPTIMAL", + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 3.4544910833333335, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:45:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1713, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:46:39", + "solve_time": 6.199770916666667, + "status": "OPTIMAL", + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.199770916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:46:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1714, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:46:48", + "solve_time": 2.2588253333333332, + "status": "OPTIMAL", + "primal_objective_value": -223.99999755382208, + "dual_objective_value": -224.00000119657497, + "duality_gap": 3.642752886889866e-06, + "primal_infeasibility": 3.435419260401472e-11, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.2588253333333332, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -223.99999755382208, + "dual_objective_value": -224.00000119657497, + "duality_gap": 3.642752886889866e-06, + "primal_infeasibility": 3.435419260401472e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:46:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1717, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:47:24", + "solve_time": 2.0340817083333333, + "status": "OPTIMAL", + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.0340817083333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:47:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1718, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:48:56", + "solve_time": 82.76187025, + "status": "OPTIMAL", + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 82.76187025, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:48:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1720, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:29:14", + "solve_time": 121.13185501098633, + "status": "OPTIMAL", + "primal_objective_value": 23.439818974587567, + "dual_objective_value": 23.439818435224183, + "duality_gap": 5.393633841777046e-07, + "primal_infeasibility": 1.589519974455338e-11, + "dual_infeasibility": 4.7948349842514454e-14, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1721, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1722, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1723, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1724, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1725, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1726, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1727, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1728, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1729, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1730, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1731, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1732, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1736, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1737, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1738, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1757, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1758, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1759, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1760, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1761, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1762, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1763, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1764, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1765, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1766, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1767, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1768, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1769, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1770, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1771, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1772, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1773, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1774, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1775, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1776, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1777, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1778, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1779, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1780, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1781, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1782, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1783, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1784, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1785, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1786, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1787, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1788, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1789, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1790, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1791, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1792, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1793, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1794, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1795, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1796, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1797, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1798, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1799, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1800, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1801, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1804, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1805, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1806, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1807, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1811, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T15:06:09", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Benchmark execution failed: Failed to create solver 'cvxpy_scip' (backend: SCIP): Requested backend SCIP not available. Available backends: ['CLARABEL', 'ECOS', 'ECOS_BB', 'OSQP', 'SCIPY', 'SCS']" + } + }, + { + "id": 1812, + "solver_name": "cvxpy_highs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T15:06:09", + "solve_time": 0.0, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Benchmark execution failed: Failed to create solver 'cvxpy_highs' (backend: HIGHS): Requested backend HIGHS not available. Available backends: ['CLARABEL', 'ECOS', 'ECOS_BB', 'OSQP', 'SCIPY', 'SCS']" + } + }, + { + "id": 1813, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.6-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T15:06:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1814, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T15:06:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1815, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.6-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T15:09:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1818, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6", + "timestamp": "2025-07-22T15:17:54", + "solve_time": 0.6745402916666666, + "status": "OPTIMAL", + "primal_objective_value": 132.63567801876036, + "dual_objective_value": 132.63567787176189, + "duality_gap": 1.4699847383781162e-07, + "primal_infeasibility": 1.5205458807246513e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.6745402916666666, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 132.63567801876036, + "dual_objective_value": 132.63567787176189, + "duality_gap": 1.4699847383781162e-07, + "primal_infeasibility": 1.5205458807246513e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:17:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1819, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6", + "timestamp": "2025-07-22T15:24:49", + "solve_time": 300.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } + }, + { + "id": 1820, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:31:53", + "solve_time": 0.8213070833333334, + "status": "OPTIMAL", + "primal_objective_value": 133.11458915883577, + "dual_objective_value": 133.1145890906361, + "duality_gap": 6.819968234594853e-08, + "primal_infeasibility": 2.2496379323625403e-10, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8213070833333334, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 133.11458915883577, + "dual_objective_value": 133.1145890906361, + "duality_gap": 6.819968234594853e-08, + "primal_infeasibility": 2.2496379323625403e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:31:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1821, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:32:38", + "solve_time": 0.6298311666666667, + "status": "OPTIMAL", + "primal_objective_value": 132.6356771601937, + "dual_objective_value": 132.63567716470257, + "duality_gap": 4.5088768274581525e-09, + "primal_infeasibility": 6.3772698840920634e-09, + "dual_infeasibility": 1.2707963027328625e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6298311666666667, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 132.6356771601937, + "dual_objective_value": 132.63567716470257, + "duality_gap": 4.5088768274581525e-09, + "primal_infeasibility": 6.3772698840920634e-09, + "dual_infeasibility": 1.2707963027328625e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:32:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1822, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:32:44", + "solve_time": 1.0171705, + "status": "OPTIMAL", + "primal_objective_value": 133.11458828405543, + "dual_objective_value": 133.11458828648352, + "duality_gap": 2.4280950583488448e-09, + "primal_infeasibility": 7.429302853954885e-09, + "dual_infeasibility": 2.294303437965876e-10, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.0171705, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 133.11458828405543, + "dual_objective_value": 133.11458828648352, + "duality_gap": 2.4280950583488448e-09, + "primal_infeasibility": 7.429302853954885e-09, + "dual_infeasibility": 2.294303437965876e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:32:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1823, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:34:29", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1824, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "UNKNOWN", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:35:17", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}; Original error: Invalid objective coefficient: {+0.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0,+1.0e+00}", + "problem_class": "UNKNOWN" + } + }, + { + "id": 1825, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:37:00", + "solve_time": 0.46525041666666667, + "status": "OPTIMAL", + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.46525041666666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:36:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1826, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:38", + "solve_time": 0.3674235416666667, + "status": "OPTIMAL", + "primal_objective_value": -226.15735063849868, + "dual_objective_value": -226.15735153136035, + "duality_gap": 8.928616637149389e-07, + "primal_infeasibility": 2.7784036751600645e-11, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3674235416666667, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -226.15735063849868, + "dual_objective_value": -226.15735153136035, + "duality_gap": 8.928616637149389e-07, + "primal_infeasibility": 2.7784036751600645e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1827, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:44", + "solve_time": 0.5272229166666667, + "status": "OPTIMAL", + "primal_objective_value": -141.99047525291158, + "dual_objective_value": -141.99047737688758, + "duality_gap": 2.1239760030766774e-06, + "primal_infeasibility": 3.5074058660380328e-12, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5272229166666667, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -141.99047525291158, + "dual_objective_value": -141.99047737688758, + "duality_gap": 2.1239760030766774e-06, + "primal_infeasibility": 3.5074058660380328e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1828, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:49", + "solve_time": 0.541560125, + "status": "OPTIMAL", + "primal_objective_value": -269.88017043292245, + "dual_objective_value": -269.88017065541254, + "duality_gap": 2.2249008679864346e-07, + "primal_infeasibility": 7.365570128801219e-14, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.541560125, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -269.88017043292245, + "dual_objective_value": -269.88017065541254, + "duality_gap": 2.2249008679864346e-07, + "primal_infeasibility": 7.365570128801219e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1829, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:55", + "solve_time": 0.573352625, + "status": "OPTIMAL", + "primal_objective_value": -467.75010984467355, + "dual_objective_value": -467.7501144740113, + "duality_gap": 4.62933775224883e-06, + "primal_infeasibility": 3.4418429164954034e-13, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.573352625, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -467.75010984467355, + "dual_objective_value": -467.7501144740113, + "duality_gap": 4.62933775224883e-06, + "primal_infeasibility": 3.4418429164954034e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1830, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:00", + "solve_time": 0.49896158333333335, + "status": "OPTIMAL", + "primal_objective_value": -864.4118633887887, + "dual_objective_value": -864.4118640817342, + "duality_gap": 6.929454912096844e-07, + "primal_infeasibility": 2.1225996542903577e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.49896158333333335, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -864.4118633887887, + "dual_objective_value": -864.4118640817342, + "duality_gap": 6.929454912096844e-07, + "primal_infeasibility": 2.1225996542903577e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1831, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:07", + "solve_time": 0.8985415, + "status": "OPTIMAL", + "primal_objective_value": -317.26433979088665, + "dual_objective_value": -317.2643404055531, + "duality_gap": 6.146664759398845e-07, + "primal_infeasibility": 1.1817715432431227e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8985415, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -317.26433979088665, + "dual_objective_value": -317.2643404055531, + "duality_gap": 6.146664759398845e-07, + "primal_infeasibility": 1.1817715432431227e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1832, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:13", + "solve_time": 0.8380240416666667, + "status": "OPTIMAL", + "primal_objective_value": -531.9300812378247, + "dual_objective_value": -531.930084038429, + "duality_gap": 2.8006043066852726e-06, + "primal_infeasibility": 5.9500298393263746e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8380240416666667, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -531.9300812378247, + "dual_objective_value": -531.930084038429, + "duality_gap": 2.8006043066852726e-06, + "primal_infeasibility": 5.9500298393263746e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1833, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:19", + "solve_time": 0.912536375, + "status": "OPTIMAL", + "primal_objective_value": -981.1725661031035, + "dual_objective_value": -981.1725718690851, + "duality_gap": 5.765981654803909e-06, + "primal_infeasibility": 3.16026274347861e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.912536375, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -981.1725661031035, + "dual_objective_value": -981.1725718690851, + "duality_gap": 5.765981654803909e-06, + "primal_infeasibility": 3.16026274347861e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1834, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:26", + "solve_time": 0.9775438333333333, + "status": "OPTIMAL", + "primal_objective_value": -1681.9600975043904, + "dual_objective_value": -1681.9601125495465, + "duality_gap": 1.5045156033011153e-05, + "primal_infeasibility": 8.103865749540684e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9775438333333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -1681.9600975043904, + "dual_objective_value": -1681.9601125495465, + "duality_gap": 1.5045156033011153e-05, + "primal_infeasibility": 8.103865749540684e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1835, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:34", + "solve_time": 1.5547225, + "status": "OPTIMAL", + "primal_objective_value": -598.1485163350332, + "dual_objective_value": -598.1485169989327, + "duality_gap": 6.63899527353351e-07, + "primal_infeasibility": 5.203879178173194e-13, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5547225, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -598.1485163350332, + "dual_objective_value": -598.1485169989327, + "duality_gap": 6.63899527353351e-07, + "primal_infeasibility": 5.203879178173194e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1836, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:41", + "solve_time": 1.5360105833333333, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567637418037, + "dual_objective_value": -1070.0567662625401, + "duality_gap": 2.5207364160451107e-06, + "primal_infeasibility": 9.081847783622977e-13, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5360105833333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1070.0567637418037, + "dual_objective_value": -1070.0567662625401, + "duality_gap": 2.5207364160451107e-06, + "primal_infeasibility": 9.081847783622977e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1837, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:50", + "solve_time": 1.5978740833333334, + "status": "OPTIMAL", + "primal_objective_value": -1847.9700088367038, + "dual_objective_value": -1847.9700217552486, + "duality_gap": 1.2918544825879508e-05, + "primal_infeasibility": 1.3971950234132762e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5978740833333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -1847.9700088367038, + "dual_objective_value": -1847.9700217552486, + "duality_gap": 1.2918544825879508e-05, + "primal_infeasibility": 1.3971950234132762e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1838, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:58", + "solve_time": 1.5796517916666666, + "status": "OPTIMAL", + "primal_objective_value": -3566.7379931729224, + "dual_objective_value": -3566.738052271622, + "duality_gap": 5.909869969400461e-05, + "primal_infeasibility": 1.1792225585239736e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5796517916666666, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -3566.7379931729224, + "dual_objective_value": -3566.738052271622, + "duality_gap": 5.909869969400461e-05, + "primal_infeasibility": 1.1792225585239736e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1839, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:04", + "solve_time": 0.45728304166666667, + "status": "OPTIMAL", + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.45728304166666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1840, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:10", + "solve_time": 0.5800415, + "status": "OPTIMAL", + "primal_objective_value": 7.343075216995572, + "dual_objective_value": 7.343075708069313, + "duality_gap": 4.910737407826105e-07, + "primal_infeasibility": 3.445685296414346e-11, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5800415, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 7.343075216995572, + "dual_objective_value": 7.343075708069313, + "duality_gap": 4.910737407826105e-07, + "primal_infeasibility": 3.445685296414346e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1841, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:15", + "solve_time": 0.5533539166666667, + "status": "OPTIMAL", + "primal_objective_value": 46.86229340823787, + "dual_objective_value": 46.86229387971365, + "duality_gap": 4.7147577930672924e-07, + "primal_infeasibility": 1.2319438807287507e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5533539166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 46.86229340823787, + "dual_objective_value": 46.86229387971365, + "duality_gap": 4.7147577930672924e-07, + "primal_infeasibility": 1.2319438807287507e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1842, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:21", + "solve_time": 0.522561625, + "status": "OPTIMAL", + "primal_objective_value": 153.014122916332, + "dual_objective_value": 153.01412446660885, + "duality_gap": 1.550276834905162e-06, + "primal_infeasibility": 4.152400563581602e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.522561625, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 153.014122916332, + "dual_objective_value": 153.01412446660885, + "duality_gap": 1.550276834905162e-06, + "primal_infeasibility": 4.152400563581602e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1843, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:27", + "solve_time": 0.7190450416666667, + "status": "OPTIMAL", + "primal_objective_value": 418.98759463635133, + "dual_objective_value": 418.98760998623175, + "duality_gap": 1.534988041385077e-05, + "primal_infeasibility": 5.62265250487158e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7190450416666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 418.98759463635133, + "dual_objective_value": 418.98760998623175, + "duality_gap": 1.534988041385077e-05, + "primal_infeasibility": 5.62265250487158e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1844, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:33", + "solve_time": 1.305260125, + "status": "UNKNOWN", + "primal_objective_value": 15.444916745668474, + "dual_objective_value": 15.444916791369133, + "duality_gap": 4.5700659256908693e-08, + "primal_infeasibility": 8.619595094369608e-12, + "dual_infeasibility": 1.5998195761311495e-13, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.305260125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": 15.444916745668474, + "dual_objective_value": 15.444916791369133, + "duality_gap": 4.5700659256908693e-08, + "primal_infeasibility": 8.619595094369608e-12, + "dual_infeasibility": 1.5998195761311495e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1845, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:41", + "solve_time": 1.0700413333333334, + "status": "OPTIMAL", + "primal_objective_value": 81.86895604876402, + "dual_objective_value": 81.86895743427542, + "duality_gap": 1.385511396279071e-06, + "primal_infeasibility": 1.2930217037292772e-10, + "dual_infeasibility": 1.5507764493660058e-14, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0700413333333334, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 81.86895604876402, + "dual_objective_value": 81.86895743427542, + "duality_gap": 1.385511396279071e-06, + "primal_infeasibility": 1.2930217037292772e-10, + "dual_infeasibility": 1.5507764493660058e-14, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1846, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:48", + "solve_time": 1.0686595833333334, + "status": "OPTIMAL", + "primal_objective_value": 303.5393167017354, + "dual_objective_value": 303.5393198675198, + "duality_gap": 3.1657843919674633e-06, + "primal_infeasibility": 3.327821459253514e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0686595833333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 303.5393167017354, + "dual_objective_value": 303.5393198675198, + "duality_gap": 3.1657843919674633e-06, + "primal_infeasibility": 3.327821459253514e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1847, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:54", + "solve_time": 0.9967734583333333, + "status": "OPTIMAL", + "primal_objective_value": 747.3283058391797, + "dual_objective_value": 747.3283049708084, + "duality_gap": 8.683713303980767e-07, + "primal_infeasibility": 2.2452130375841572e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9967734583333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 747.3283058391797, + "dual_objective_value": 747.3283049708084, + "duality_gap": 8.683713303980767e-07, + "primal_infeasibility": 2.2452130375841572e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1848, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:04", + "solve_time": 2.947858166666667, + "status": "NUM_ERROR", + "primal_objective_value": 25.320546265113887, + "dual_objective_value": 25.320543834359203, + "duality_gap": 2.430754683757641e-06, + "primal_infeasibility": 3.084055027579803e-14, + "dual_infeasibility": 1.140507524262097e-12, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "num_error", + "solve_time": 2.947858166666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 25.320546265113887, + "dual_objective_value": 25.320543834359203, + "duality_gap": 2.430754683757641e-06, + "primal_infeasibility": 3.084055027579803e-14, + "dual_infeasibility": 1.140507524262097e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1849, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:15", + "solve_time": 2.782814, + "status": "OPTIMAL", + "primal_objective_value": 156.06039007012993, + "dual_objective_value": 156.06038734464326, + "duality_gap": 2.725486666577126e-06, + "primal_infeasibility": 1.5107253167137408e-11, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.782814, + "setup_time": [], + "iterations": 18, + "primal_objective_value": 156.06039007012993, + "dual_objective_value": 156.06038734464326, + "duality_gap": 2.725486666577126e-06, + "primal_infeasibility": 1.5107253167137408e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1850, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:26", + "solve_time": 2.2795346666666667, + "status": "OPTIMAL", + "primal_objective_value": 513.0176090027193, + "dual_objective_value": 513.0176019918591, + "duality_gap": 7.010860144873732e-06, + "primal_infeasibility": 4.510660770051609e-12, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.2795346666666667, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 513.0176090027193, + "dual_objective_value": 513.0176019918591, + "duality_gap": 7.010860144873732e-06, + "primal_infeasibility": 4.510660770051609e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1851, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:37", + "solve_time": 2.642140875, + "status": "OPTIMAL", + "primal_objective_value": 1567.0187951883258, + "dual_objective_value": 1567.0187917942853, + "duality_gap": 3.3940405046450906e-06, + "primal_infeasibility": 8.670520994656674e-12, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.642140875, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 1567.0187951883258, + "dual_objective_value": 1567.0187917942853, + "duality_gap": 3.3940405046450906e-06, + "primal_infeasibility": 8.670520994656674e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1852, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:51", + "solve_time": 0.42889166666666667, + "status": "OPTIMAL", + "primal_objective_value": -226.15735066324342, + "dual_objective_value": -226.15735064685092, + "duality_gap": 1.6392505131079815e-08, + "primal_infeasibility": 2.540251644217761e-09, + "dual_infeasibility": 7.337480389552916e-11, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.42889166666666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -226.15735066324342, + "dual_objective_value": -226.15735064685092, + "duality_gap": 1.6392505131079815e-08, + "primal_infeasibility": 2.540251644217761e-09, + "dual_infeasibility": 7.337480389552916e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1853, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:57", + "solve_time": 1.2223734583333334, + "status": "OPTIMAL", + "primal_objective_value": -141.99047629355732, + "dual_objective_value": -141.99047628004945, + "duality_gap": 1.3507872154150391e-08, + "primal_infeasibility": 2.947795342213903e-09, + "dual_infeasibility": 1.7867929542859113e-10, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.2223734583333334, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -141.99047629355732, + "dual_objective_value": -141.99047628004945, + "duality_gap": 1.3507872154150391e-08, + "primal_infeasibility": 2.947795342213903e-09, + "dual_infeasibility": 1.7867929542859113e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1854, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:03", + "solve_time": 0.8320392083333333, + "status": "OPTIMAL", + "primal_objective_value": -269.88017030007154, + "dual_objective_value": -269.8801702946931, + "duality_gap": 5.3784674491907936e-09, + "primal_infeasibility": 9.209708037490611e-10, + "dual_infeasibility": 2.2285924347635445e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8320392083333333, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -269.88017030007154, + "dual_objective_value": -269.8801702946931, + "duality_gap": 5.3784674491907936e-09, + "primal_infeasibility": 9.209708037490611e-10, + "dual_infeasibility": 2.2285924347635445e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1855, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:09", + "solve_time": 0.813436375, + "status": "OPTIMAL", + "primal_objective_value": -467.75011366517776, + "dual_objective_value": -467.75011365499245, + "duality_gap": 1.0185317478317302e-08, + "primal_infeasibility": 1.2380352442101327e-09, + "dual_infeasibility": 1.2079205834364502e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.813436375, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -467.75011366517776, + "dual_objective_value": -467.75011365499245, + "duality_gap": 1.0185317478317302e-08, + "primal_infeasibility": 1.2380352442101327e-09, + "dual_infeasibility": 1.2079205834364502e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1856, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:14", + "solve_time": 0.72608825, + "status": "OPTIMAL", + "primal_objective_value": -864.4118628975764, + "dual_objective_value": -864.411862876331, + "duality_gap": 2.1245341486064717e-08, + "primal_infeasibility": 2.30264056066451e-09, + "dual_infeasibility": 5.427533369077547e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.72608825, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -864.4118628975764, + "dual_objective_value": -864.411862876331, + "duality_gap": 2.1245341486064717e-08, + "primal_infeasibility": 2.30264056066451e-09, + "dual_infeasibility": 5.427533369077547e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1857, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:22", + "solve_time": 2.260602083333333, + "status": "OPTIMAL", + "primal_objective_value": -317.2643388544631, + "dual_objective_value": -317.26433884402263, + "duality_gap": 1.0440487585583469e-08, + "primal_infeasibility": 2.606685535332963e-09, + "dual_infeasibility": 7.365073918346426e-11, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.260602083333333, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -317.2643388544631, + "dual_objective_value": -317.26433884402263, + "duality_gap": 1.0440487585583469e-08, + "primal_infeasibility": 2.606685535332963e-09, + "dual_infeasibility": 7.365073918346426e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1858, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:29", + "solve_time": 2.2106795833333335, + "status": "OPTIMAL", + "primal_objective_value": -531.9300822835332, + "dual_objective_value": -531.9300822716898, + "duality_gap": 1.1843440006487072e-08, + "primal_infeasibility": 1.926782694456677e-09, + "dual_infeasibility": 3.374042791082714e-11, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.2106795833333335, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -531.9300822835332, + "dual_objective_value": -531.9300822716898, + "duality_gap": 1.1843440006487072e-08, + "primal_infeasibility": 1.926782694456677e-09, + "dual_infeasibility": 3.374042791082714e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1859, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:36", + "solve_time": 2.6032755416666666, + "status": "OPTIMAL", + "primal_objective_value": -981.1725702362594, + "dual_objective_value": -981.172570225403, + "duality_gap": 1.0856410881388001e-08, + "primal_infeasibility": 1.3408641864535708e-09, + "dual_infeasibility": 7.777848240269705e-12, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.6032755416666666, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -981.1725702362594, + "dual_objective_value": -981.172570225403, + "duality_gap": 1.0856410881388001e-08, + "primal_infeasibility": 1.3408641864535708e-09, + "dual_infeasibility": 7.777848240269705e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1860, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:44", + "solve_time": 2.581019125, + "status": "OPTIMAL", + "primal_objective_value": -1681.9601099646616, + "dual_objective_value": -1681.9601099478573, + "duality_gap": 1.680427885730751e-08, + "primal_infeasibility": 1.774438052229053e-09, + "dual_infeasibility": 3.5680044750280445e-12, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.581019125, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -1681.9601099646616, + "dual_objective_value": -1681.9601099478573, + "duality_gap": 1.680427885730751e-08, + "primal_infeasibility": 1.774438052229053e-09, + "dual_infeasibility": 3.5680044750280445e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1861, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:59", + "solve_time": 9.016883166666666, + "status": "OPTIMAL", + "primal_objective_value": -598.1485152998665, + "dual_objective_value": -598.1485152939756, + "duality_gap": 5.890910870220978e-09, + "primal_infeasibility": 1.2225054525178163e-09, + "dual_infeasibility": 2.5374934956038518e-11, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.016883166666666, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -598.1485152998665, + "dual_objective_value": -598.1485152939756, + "duality_gap": 5.890910870220978e-09, + "primal_infeasibility": 1.2225054525178163e-09, + "dual_infeasibility": 2.5374934956038518e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1862, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:44:13", + "solve_time": 9.306898791666667, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567627403077, + "dual_objective_value": -1070.0567627284877, + "duality_gap": 1.1820020517916419e-08, + "primal_infeasibility": 1.9894116855005456e-09, + "dual_infeasibility": 1.83524722585802e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.306898791666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1070.0567627403077, + "dual_objective_value": -1070.0567627284877, + "duality_gap": 1.1820020517916419e-08, + "primal_infeasibility": 1.9894116855005456e-09, + "dual_infeasibility": 1.83524722585802e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1863, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:44:30", + "solve_time": 10.876570833333334, + "status": "OPTIMAL", + "primal_objective_value": -1847.9700184528383, + "dual_objective_value": -1847.9700184414694, + "duality_gap": 1.1368911145837046e-08, + "primal_infeasibility": 1.480896814122543e-09, + "dual_infeasibility": 5.281511248115392e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 10.876570833333334, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1847.9700184528383, + "dual_objective_value": -1847.9700184414694, + "duality_gap": 1.1368911145837046e-08, + "primal_infeasibility": 1.480896814122543e-09, + "dual_infeasibility": 5.281511248115392e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1864, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:46", + "solve_time": 9.711638, + "status": "OPTIMAL", + "primal_objective_value": -3566.738045969509, + "dual_objective_value": -3566.7380459534215, + "duality_gap": 1.608759703231044e-08, + "primal_infeasibility": 1.4561025810833674e-09, + "dual_infeasibility": 1.6673683400563527e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.711638, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -3566.738045969509, + "dual_objective_value": -3566.7380459534215, + "duality_gap": 1.608759703231044e-08, + "primal_infeasibility": 1.4561025810833674e-09, + "dual_infeasibility": 1.6673683400563527e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1865, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:53", + "solve_time": 0.7721935, + "status": "NUM_ERROR", + "primal_objective_value": 44.94351945079613, + "dual_objective_value": 44.943668273606576, + "duality_gap": 0.0001488228104449263, + "primal_infeasibility": 3.6371368159315026e-07, + "dual_infeasibility": 1.8043086007717958e-08, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.7721935, + "setup_time": [], + "iterations": 21, + "primal_objective_value": 44.94351945079613, + "dual_objective_value": 44.943668273606576, + "duality_gap": 0.0001488228104449263, + "primal_infeasibility": 3.6371368159315026e-07, + "dual_infeasibility": 1.8043086007717958e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1866, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:59", + "solve_time": 1.011289, + "status": "NUM_ERROR", + "primal_objective_value": 7.343040041853136, + "dual_objective_value": 7.343323197544134, + "duality_gap": 0.00028315569099746085, + "primal_infeasibility": 4.6273048261564336e-07, + "dual_infeasibility": 6.076241571456934e-08, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.011289, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 7.343040041853136, + "dual_objective_value": 7.343323197544134, + "duality_gap": 0.00028315569099746085, + "primal_infeasibility": 4.6273048261564336e-07, + "dual_infeasibility": 6.076241571456934e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1867, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:05", + "solve_time": 1.067351625, + "status": "NUM_ERROR", + "primal_objective_value": 46.8623007758379, + "dual_objective_value": 46.862310357065084, + "duality_gap": 9.581227182309249e-06, + "primal_infeasibility": 2.602493957176677e-07, + "dual_infeasibility": 4.4461266039776315e-09, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.067351625, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 46.8623007758379, + "dual_objective_value": 46.862310357065084, + "duality_gap": 9.581227182309249e-06, + "primal_infeasibility": 2.602493957176677e-07, + "dual_infeasibility": 4.4461266039776315e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1868, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:12", + "solve_time": 1.3415220833333332, + "status": "NUM_ERROR", + "primal_objective_value": 153.01413111066205, + "dual_objective_value": 153.0141433591371, + "duality_gap": 1.2248475059095654e-05, + "primal_infeasibility": 3.772924496141658e-07, + "dual_infeasibility": 1.4242436509417165e-09, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.3415220833333332, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 153.01413111066205, + "dual_objective_value": 153.0141433591371, + "duality_gap": 1.2248475059095654e-05, + "primal_infeasibility": 3.772924496141658e-07, + "dual_infeasibility": 1.4242436509417165e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1869, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:19", + "solve_time": 1.2991055833333334, + "status": "NUM_ERROR", + "primal_objective_value": 418.9877644444689, + "dual_objective_value": 418.9878255927038, + "duality_gap": 6.114823491998322e-05, + "primal_infeasibility": 4.115301077190911e-07, + "dual_infeasibility": 3.607218879110399e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.2991055833333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 418.9877644444689, + "dual_objective_value": 418.9878255927038, + "duality_gap": 6.114823491998322e-05, + "primal_infeasibility": 4.115301077190911e-07, + "dual_infeasibility": 3.607218879110399e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1870, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:27", + "solve_time": 3.5781583333333336, + "status": "NUM_ERROR", + "primal_objective_value": 15.444884449808155, + "dual_objective_value": 15.4450291912657, + "duality_gap": 0.00014474145754483914, + "primal_infeasibility": 7.773040500979703e-07, + "dual_infeasibility": 9.678959317803167e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.5781583333333336, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 15.444884449808155, + "dual_objective_value": 15.4450291912657, + "duality_gap": 0.00014474145754483914, + "primal_infeasibility": 7.773040500979703e-07, + "dual_infeasibility": 9.678959317803167e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1871, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:36", + "solve_time": 3.7947375416666667, + "status": "NUM_ERROR", + "primal_objective_value": 81.86902025037489, + "dual_objective_value": 81.86944910336783, + "duality_gap": 0.00042885299293971, + "primal_infeasibility": 4.94138352678929e-07, + "dual_infeasibility": 1.1701289111328567e-08, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.7947375416666667, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 81.86902025037489, + "dual_objective_value": 81.86944910336783, + "duality_gap": 0.00042885299293971, + "primal_infeasibility": 4.94138352678929e-07, + "dual_infeasibility": 1.1701289111328567e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1872, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:46", + "solve_time": 4.021484041666667, + "status": "NUM_ERROR", + "primal_objective_value": 303.53929877505766, + "dual_objective_value": 303.540211904581, + "duality_gap": 0.0009131295233260062, + "primal_infeasibility": 5.409184861944874e-07, + "dual_infeasibility": 5.977453961703577e-09, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 4.021484041666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 303.53929877505766, + "dual_objective_value": 303.540211904581, + "duality_gap": 0.0009131295233260062, + "primal_infeasibility": 5.409184861944874e-07, + "dual_infeasibility": 5.977453961703577e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1873, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:55", + "solve_time": 3.3964448333333332, + "status": "NUM_ERROR", + "primal_objective_value": 747.328611326081, + "dual_objective_value": 747.3286056221518, + "duality_gap": 5.703929218725534e-06, + "primal_infeasibility": 1.5891172434487362e-06, + "dual_infeasibility": 1.0336478520663563e-09, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.3964448333333332, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 747.328611326081, + "dual_objective_value": 747.3286056221518, + "duality_gap": 5.703929218725534e-06, + "primal_infeasibility": 1.5891172434487362e-06, + "dual_infeasibility": 1.0336478520663563e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1874, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:46:18", + "solve_time": 15.377118958333334, + "status": "NUM_ERROR", + "primal_objective_value": 25.320632841703226, + "dual_objective_value": 25.322930361468835, + "duality_gap": 0.0022975197656087687, + "primal_infeasibility": 1.1452090235982779e-06, + "dual_infeasibility": 3.397050009105795e-08, + "iterations": 28, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.377118958333334, + "setup_time": [], + "iterations": 28, + "primal_objective_value": 25.320632841703226, + "dual_objective_value": 25.322930361468835, + "duality_gap": 0.0022975197656087687, + "primal_infeasibility": 1.1452090235982779e-06, + "dual_infeasibility": 3.397050009105795e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:46:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1875, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:46:41", + "solve_time": 15.842044375, + "status": "NUM_ERROR", + "primal_objective_value": 156.06069685644727, + "dual_objective_value": 156.0654106456209, + "duality_gap": 0.004713789173621308, + "primal_infeasibility": 5.653736676264694e-07, + "dual_infeasibility": 2.731499527461661e-08, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.842044375, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 156.06069685644727, + "dual_objective_value": 156.0654106456209, + "duality_gap": 0.004713789173621308, + "primal_infeasibility": 5.653736676264694e-07, + "dual_infeasibility": 2.731499527461661e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:46:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1876, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:47:06", + "solve_time": 18.165691125, + "status": "NUM_ERROR", + "primal_objective_value": 513.0180735864465, + "dual_objective_value": 513.0180749365385, + "duality_gap": 1.3500920204023714e-06, + "primal_infeasibility": 4.4434696313909057e-07, + "dual_infeasibility": 1.0333092976055663e-09, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 18.165691125, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 513.0180735864465, + "dual_objective_value": 513.0180749365385, + "duality_gap": 1.3500920204023714e-06, + "primal_infeasibility": 4.4434696313909057e-07, + "dual_infeasibility": 1.0333092976055663e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:47:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1877, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:47:28", + "solve_time": 15.819546916666667, + "status": "NUM_ERROR", + "primal_objective_value": 1567.0194253372717, + "dual_objective_value": 1567.026642378539, + "duality_gap": 0.007217041267267632, + "primal_infeasibility": 3.401601219505255e-07, + "dual_infeasibility": 3.479858546976129e-09, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.819546916666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 1567.0194253372717, + "dual_objective_value": 1567.026642378539, + "duality_gap": 0.007217041267267632, + "primal_infeasibility": 3.401601219505255e-07, + "dual_infeasibility": 3.479858546976129e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:47:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1878, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:51:34", + "solve_time": 0.44436095833333333, + "status": "OPTIMAL", + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.44436095833333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:51:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1891, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T16:08:58", + "solve_time": 1.693596375, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.693596375, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 01:08:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1895, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "507a3efe28bd8d2f1344a0edc826c4bb990d61b7" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "507a3efe28bd8d2f1344a0edc826c4bb990d61b7", + "timestamp": "2025-08-03T14:14:27", + "solve_time": 31.749879121780396, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -9, + "error_type": "SUBPROCESS_ERROR", + "error_message": "2025-08-03 23:13:55 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:13:55 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:13:55 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:13:55 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:13:55 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:13:55 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:13:55 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:13:55 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:13:55 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1896, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:20:43", + "solve_time": 30.604387998580933, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-03 23:20:13 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:20:13 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:20:13 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:20:13 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:20:13 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:20:13 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:20:13 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1897, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:23:46", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1898, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:26:26", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1899, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:51", + "solve_time": 0.19372987747192383, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1900, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:52", + "solve_time": 0.22959208488464355, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -1.6401068919646988e-08, + "dual_objective_value": -3.033602862628601e-08, + "duality_gap": 1.3934959706639019e-08, + "primal_infeasibility": 7.24230986971135e-09, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "solver_solve_time": 0.18366492, + "problem_class": "SDP" + } + }, + { + "id": 1901, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:54", + "solve_time": 2.192477226257324, + "status": "OPTIMAL", + "primal_objective_value": -2.497696811876171e-08, + "dual_objective_value": -3.94442290703259e-08, + "duality_gap": 1.4467260951564188e-08, + "primal_infeasibility": 7.720817848199098e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1902, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:55", + "solve_time": 0.1000521183013916, + "status": "OPTIMAL", + "primal_objective_value": 2.763797219494657e-06, + "dual_objective_value": 6.008903171780412e-07, + "duality_gap": 2.1629069023166157e-06, + "primal_infeasibility": 5.79374368893745e-07, + "dual_infeasibility": 2.176976834364473e-09, + "iterations": 275, + "memo": { + "solver_solve_time": 0.054842958000000004, + "problem_class": "SDP" + } + }, + { + "id": 1903, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:57", + "solve_time": 1.9144980907440186, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1904, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:28:02", + "solve_time": 4.074679136276245, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -4.4884696204575136e-08, + "dual_objective_value": -6.567172048617617e-08, + "duality_gap": 2.0787024281601034e-08, + "primal_infeasibility": 1.0638153482222468e-08, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "solver_solve_time": 3.131591457, + "problem_class": "SDP" + } + }, + { + "id": 1905, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:29:02", + "solve_time": 58.70020890235901, + "status": "OPTIMAL", + "primal_objective_value": -2.4827762840420875e-08, + "dual_objective_value": -3.392721178555364e-08, + "duality_gap": 9.099448945132768e-09, + "primal_infeasibility": 4.740723896523209e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1906, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:29:05", + "solve_time": 1.2210209369659424, + "status": "OPTIMAL", + "primal_objective_value": -7.956279965304347e-06, + "dual_objective_value": -3.197190700468751e-06, + "duality_gap": -4.759089264835596e-06, + "primal_infeasibility": 2.804389571931542e-06, + "dual_infeasibility": 8.648485158449915e-09, + "iterations": 300, + "memo": { + "solver_solve_time": 0.276767833, + "problem_class": "SDP" + } + }, + { + "id": 1907, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:30:13", + "solve_time": 65.82996416091919, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1908, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:32:13", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1909, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:34:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1910, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "fap09", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:35:56", + "solve_time": 89.28411173820496, + "status": "OPTIMAL", + "primal_objective_value": 10.797895540459592, + "dual_objective_value": 10.797826537085669, + "duality_gap": 6.900337392323763e-05, + "primal_infeasibility": 6.245639123478367e-08, + "dual_infeasibility": 5.5257728472699056e-14, + "iterations": 16325, + "memo": { + "solver_solve_time": 79.354613125, + "problem_class": "SDP" + } + }, + { + "id": 1911, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:37", + "solve_time": 39.79374122619629, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161295151451585, + "dual_objective_value": 1.4161284417476618, + "duality_gap": 1.0733974966647963e-06, + "primal_infeasibility": 3.529475717602551e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1912, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:39", + "solve_time": 1.3734347820281982, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161020106468114, + "dual_objective_value": 1.4161020228518586, + "duality_gap": -1.2205047195124052e-08, + "primal_infeasibility": 1.1274549784995933e-06, + "dual_infeasibility": 6.106204455194476e-09, + "iterations": 31, + "memo": { + "solver_solve_time": 1.344283376, + "problem_class": "SDP" + } + }, + { + "id": 1913, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:46", + "solve_time": 6.713871002197266, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1914, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "filter48", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:17", + "solve_time": 30.740686178207397, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.409073703261462, + "dual_objective_value": 1.4090806844233812, + "duality_gap": -6.981161919217271e-06, + "primal_infeasibility": 7.523837266388142e-05, + "dual_infeasibility": 3.375321326271274e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 30.709408041, + "problem_class": "SDP" + } + }, + { + "id": 1915, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:24", + "solve_time": 2.5426599979400635, + "status": "OPTIMAL", + "primal_objective_value": -223.99999657347732, + "dual_objective_value": -224.00000195439648, + "duality_gap": 5.380919162689679e-06, + "primal_infeasibility": 7.830681581889643e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1916, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:50", + "solve_time": 25.861373901367188, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-03 23:37:25 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:37:25 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:37:25 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:37:25 - python_solver_runner - INFO - Subprocess solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - python_solver_runner - INFO - Solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:37:25 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/HAMMING/hamming_9_8.mat.gz\n2025-08-03 23:37:25 - mat_loader - INFO - Converted hamming_9_8: SDP problem (262144 vars, 2305 constraints)\n2025-08-03 23:37:25 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='hamming_9_8', class='SDP', 262144 vars, 2305 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1917, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:39:51", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1918, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:18", + "solve_time": 22.157066822052002, + "status": "OPTIMAL", + "primal_objective_value": -224.0003222026227, + "dual_objective_value": -224.00037351826538, + "duality_gap": 5.131564267912836e-05, + "primal_infeasibility": 5.492586278581966e-07, + "dual_infeasibility": 1.2811657673655026e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 21.2309355, + "problem_class": "SDP" + } + }, + { + "id": 1919, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:19", + "solve_time": 0.5973911285400391, + "status": "OPTIMAL", + "primal_objective_value": -42.66666466059041, + "dual_objective_value": -42.66666774012631, + "duality_gap": 3.0795358938462414e-06, + "primal_infeasibility": 4.494236949271214e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1920, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:39", + "solve_time": 20.023534059524536, + "status": "OPTIMAL", + "primal_objective_value": -42.66666667203015, + "dual_objective_value": -42.66666666625962, + "duality_gap": -5.770530719928502e-09, + "primal_infeasibility": 1.8842178928241884e-09, + "dual_infeasibility": 8.196094314750425e-14, + "iterations": 6, + "memo": { + "solver_solve_time": 19.974756208, + "problem_class": "SDP" + } + }, + { + "id": 1921, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:46", + "solve_time": 5.853014945983887, + "status": "OPTIMAL", + "primal_objective_value": -42.666666408791805, + "dual_objective_value": -42.66666641006614, + "duality_gap": 1.2743370803036669e-09, + "primal_infeasibility": 3.3836883209684965e-16, + "dual_infeasibility": 4.956901572407782e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1922, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_7_5_6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:47", + "solve_time": 0.27846193313598633, + "status": "OPTIMAL", + "primal_objective_value": -42.66663809919346, + "dual_objective_value": -42.666691827474416, + "duality_gap": 5.3728280953180274e-05, + "primal_infeasibility": 3.823840598620477e-07, + "dual_infeasibility": 0.0, + "iterations": 150, + "memo": { + "solver_solve_time": 0.228795458, + "problem_class": "SDP" + } + }, + { + "id": 1923, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:42:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1924, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:44:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1925, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:46:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1926, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:47:01", + "solve_time": 5.457653045654297, + "status": "OPTIMAL", + "primal_objective_value": -25.599995287166273, + "dual_objective_value": -25.599994400951143, + "duality_gap": -8.862151297250875e-07, + "primal_infeasibility": 8.066216926898107e-08, + "dual_infeasibility": 1.0420348665432626e-09, + "iterations": 225, + "memo": { + "solver_solve_time": 2.095184666, + "problem_class": "SDP" + } + }, + { + "id": 1927, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:50:06", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1928, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:53:31", + "solve_time": 28.02113676071167, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002033656695857644, + "dual_objective_value": -1.8772174263594055, + "duality_gap": 1.8751837696635478, + "primal_infeasibility": 0.16647016188566816, + "dual_infeasibility": 3.539291082432821e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1929, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:53:45", + "solve_time": 13.879996299743652, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.560254416, + "problem_class": "SOCP" + } + }, + { + "id": 1930, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:00", + "solve_time": 14.256758213043213, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1931, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:16", + "solve_time": 15.138136148452759, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.636159833, + "problem_class": "SOCP" + } + }, + { + "id": 1932, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:51", + "solve_time": 35.24684810638428, + "status": "OPTIMAL", + "primal_objective_value": -13.012153111134214, + "dual_objective_value": -13.012153111134237, + "duality_gap": 2.3092638912203256e-14, + "primal_infeasibility": 0.09539745847209875, + "dual_infeasibility": 5.092853585115458e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1933, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:08", + "solve_time": 16.364571809768677, + "status": "OPTIMAL", + "primal_objective_value": -13.012270670036738, + "dual_objective_value": -13.012270672238593, + "duality_gap": 2.20185469856915e-09, + "primal_infeasibility": 5.357543858712498e-15, + "dual_infeasibility": 1.1266917166933884e-12, + "iterations": 17, + "memo": { + "solver_solve_time": 0.541514415, + "problem_class": "SOCP" + } + }, + { + "id": 1934, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:26", + "solve_time": 17.51340913772583, + "status": "OPTIMAL", + "primal_objective_value": -13.012270260650567, + "dual_objective_value": -13.012270457304474, + "duality_gap": 1.9665390738055066e-07, + "primal_infeasibility": 7.285115451032123e-13, + "dual_infeasibility": 9.002595409515661e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1935, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:49", + "solve_time": 21.878592014312744, + "status": "OPTIMAL", + "primal_objective_value": -13.01223863583072, + "dual_objective_value": -13.01220020450462, + "duality_gap": -3.843132610015232e-05, + "primal_infeasibility": 7.134210269620723e-06, + "dual_infeasibility": 1.0320214770561878e-06, + "iterations": 20575, + "memo": { + "solver_solve_time": 6.393365458, + "problem_class": "SOCP" + } + }, + { + "id": 1936, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:57:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1937, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:58:25", + "solve_time": 35.35643529891968, + "status": "OPTIMAL", + "primal_objective_value": -1.6289719788841075, + "dual_objective_value": -1.6289719808523724, + "duality_gap": 1.9682648844110417e-09, + "primal_infeasibility": 6.289904981982145e-12, + "dual_infeasibility": 4.939640235768386e-13, + "iterations": 12, + "memo": { + "solver_solve_time": 1.202414625, + "problem_class": "SOCP" + } + }, + { + "id": 1938, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:07", + "solve_time": 41.317997217178345, + "status": "OPTIMAL", + "primal_objective_value": -1.6289717401048371, + "dual_objective_value": -1.628971989187589, + "duality_gap": 2.490827517576122e-07, + "primal_infeasibility": 1.2771965700046602e-09, + "dual_infeasibility": 5.012498098520504e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1939, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:48", + "solve_time": 40.14570212364197, + "status": "OPTIMAL", + "primal_objective_value": -1.6289712152465583, + "dual_objective_value": -1.6289817153541597, + "duality_gap": 1.0500107601396635e-05, + "primal_infeasibility": 2.121405856474299e-05, + "dual_infeasibility": 2.3664912021212606e-07, + "iterations": 775, + "memo": { + "solver_solve_time": 0.5064915409999999, + "problem_class": "SOCP" + } + }, + { + "id": 1940, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:49", + "solve_time": 0.1397390365600586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.9713171314052325, + "dual_objective_value": 5.976935592929294, + "duality_gap": -0.0056184615240617575, + "primal_infeasibility": 1.08915726239491e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1941, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:51", + "solve_time": 1.4263319969177246, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.966248462567837, + "dual_objective_value": 5.966249544813763, + "duality_gap": -1.0822459266535134e-06, + "primal_infeasibility": 9.701486038460028e-07, + "dual_infeasibility": 0.0, + "iterations": 38, + "memo": { + "solver_solve_time": 1.422955625, + "problem_class": "SDP" + } + }, + { + "id": 1942, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:52", + "solve_time": 0.5794229507446289, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1943, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:11", + "solve_time": 18.53073477745056, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.942591741517748, + "dual_objective_value": 5.94744385187505, + "duality_gap": -0.004852110357302486, + "primal_infeasibility": 1.128928529831279e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.527219582999997, + "problem_class": "SDP" + } + }, + { + "id": 1944, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:11", + "solve_time": 0.011476993560791016, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1945, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:12", + "solve_time": 0.01569819450378418, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1946, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:12", + "solve_time": 0.08118486404418945, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1947, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:16", + "solve_time": 2.8234028816223145, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -30.338550211015605, + "dual_objective_value": -30.33799946764806, + "duality_gap": -0.0005507433675440154, + "primal_infeasibility": 5.355649271250418e-06, + "dual_infeasibility": 9.237317500777047e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 2.818600625, + "problem_class": "SDP" + } + }, + { + "id": 1948, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:04", + "solve_time": 47.52529978752136, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 1949, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:31", + "solve_time": 26.76625108718872, + "status": "OPTIMAL", + "primal_objective_value": -0.9460280973730932, + "dual_objective_value": -0.9460280998223545, + "duality_gap": 2.4492612382687184e-09, + "primal_infeasibility": 1.956251612313512e-08, + "dual_infeasibility": 1.3360942438602618e-08, + "iterations": 15, + "memo": { + "solver_solve_time": 0.086608874, + "problem_class": "SOCP" + } + }, + { + "id": 1950, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:56", + "solve_time": 24.00167489051819, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 1951, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nql30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:02:20", + "solve_time": 23.52648687362671, + "status": "OPTIMAL", + "primal_objective_value": -0.9460027956114715, + "dual_objective_value": -0.9459981676622777, + "duality_gap": -4.627949193758418e-06, + "primal_infeasibility": 2.900046732074137e-06, + "dual_infeasibility": 1.0668505768545404e-05, + "iterations": 475, + "memo": { + "solver_solve_time": 0.17467137500000002, + "problem_class": "SOCP" + } + }, + { + "id": 1952, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:04:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1953, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:06:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1954, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:08:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1955, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:10:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1956, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:11:16", + "solve_time": 55.10064911842346, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:10:21 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:10:21 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:10:21 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:10:21 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_sdpa\n2025-08-04 00:10:21 - python_solver_runner - INFO - Solving nql180 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:10:21 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:10:21 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:10:21 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:10:21 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 1957, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:11:56", + "solve_time": 39.67093467712402, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:11:17 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:17 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:17 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:17 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - python_solver_runner - INFO - Solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:11:17 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:17 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:17 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 1958, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:12:38", + "solve_time": 41.05316877365112, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:11:57 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:57 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:57 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:57 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - python_solver_runner - INFO - Solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:11:57 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:58 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:58 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 1959, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:13:19", + "solve_time": 40.40824317932129, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:12:39 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:12:39 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:12:39 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:12:39 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - python_solver_runner - INFO - Solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:12:39 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:12:39 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:12:39 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 1960, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:15:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1961, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:17:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1962, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:19:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1963, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:21:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1964, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:23:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1965, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:23:21", + "solve_time": 0.8148598670959473, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 27.33078559493936, + "dual_objective_value": 27.33078559493853, + "duality_gap": 8.313350008393172e-13, + "primal_infeasibility": 1.5053374900925652e-05, + "dual_infeasibility": 8.190909865691049e-11, + "iterations": 27, + "memo": { + "solver_solve_time": 0.414034665, + "problem_class": "SOCP" + } + }, + { + "id": 1966, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:25:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1967, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:26:33", + "solve_time": 70.47928071022034, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 27.432528450175983, + "dual_objective_value": 27.432503791282166, + "duality_gap": 2.4658893817530725e-05, + "primal_infeasibility": 0.00020653158969344076, + "dual_infeasibility": 0.019105119199777195, + "iterations": 100000, + "memo": { + "solver_solve_time": 70.04146987499999, + "problem_class": "SOCP" + } + }, + { + "id": 1968, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:26:35", + "solve_time": 0.644899845123291, + "status": "OPTIMAL", + "primal_objective_value": -527.8086347494122, + "dual_objective_value": -527.8086640471479, + "duality_gap": 2.9297735636646394e-05, + "primal_infeasibility": 4.731821784136668e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1969, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:28:35", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1970, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:29:31", + "solve_time": 54.69461226463318, + "status": "OPTIMAL", + "primal_objective_value": -527.8086363538721, + "dual_objective_value": -527.8086363269429, + "duality_gap": -2.6929228624794632e-08, + "primal_infeasibility": 6.74571396637511e-15, + "dual_infeasibility": 3.631236069352535e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1971, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:31:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1972, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:31:50", + "solve_time": 18.875687837600708, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:31:32 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:32 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:32 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:32 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_sdpa\n2025-08-04 00:31:32 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:31:32 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:31:32 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:32 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:32 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1973, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:10", + "solve_time": 19.003982067108154, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:31:51 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:51 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:51 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:51 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:31:51 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:51 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:51 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1974, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:29", + "solve_time": 19.038095712661743, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:32:10 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:10 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:10 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:10 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:32:10 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:10 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:10 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1975, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:48", + "solve_time": 19.10547423362732, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:32:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:29 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:32:29 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:29 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:29 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1976, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:50", + "solve_time": 0.8717789649963379, + "status": "OPTIMAL", + "primal_objective_value": -48340945.427833095, + "dual_objective_value": -48340945.95630214, + "duality_gap": 0.5284690484404564, + "primal_infeasibility": 1.604926322373818e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1977, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:34:51", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1978, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:07", + "solve_time": 15.618396282196045, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1979, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:08", + "solve_time": 0.3025782108306885, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 0, + "memo": { + "solver_solve_time": 0.098356375, + "problem_class": "SDP" + } + }, + { + "id": 1980, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:27", + "solve_time": 18.80346393585205, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:09 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:09 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:09 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_sdpa\n2025-08-04 00:35:09 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:35:09 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:35:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:09 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1981, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:46", + "solve_time": 18.888890981674194, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:28 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:28 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:28 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:28 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:35:28 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:28 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:28 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1982, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:36:05", + "solve_time": 18.98634123802185, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:47 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:47 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:47 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:47 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:35:47 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:47 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:47 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1983, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:36:24", + "solve_time": 19.028573036193848, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:36:06 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:36:06 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:36:06 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:36:06 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:36:06 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:36:06 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:36:06 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1984, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:46:41", + "solve_time": 38.031092166900635, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.10256935572921497, + "dual_objective_value": -0.1025694147293237, + "duality_gap": 5.9000108729168055e-08, + "primal_infeasibility": 2.8997429768473637e-07, + "dual_infeasibility": 3.76033631227958e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1985, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:46:58", + "solve_time": 16.312734842300415, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121188174, + "dual_objective_value": -0.10256951121204069, + "duality_gap": 1.589561815507068e-13, + "primal_infeasibility": 8.039548008470551e-16, + "dual_infeasibility": 2.720397466104802e-14, + "iterations": 14, + "memo": { + "solver_solve_time": 0.434549417, + "problem_class": "SOCP" + } + }, + { + "id": 1986, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:47:15", + "solve_time": 16.37923502922058, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950565999576, + "dual_objective_value": -0.10256951114752975, + "duality_gap": 5.487533996650917e-09, + "primal_infeasibility": 2.6441459719661748e-11, + "dual_infeasibility": 2.0332286620010367e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1987, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:47:33", + "solve_time": 17.0360369682312, + "status": "OPTIMAL", + "primal_objective_value": -0.10256936649935693, + "dual_objective_value": -0.10257104661299753, + "duality_gap": 1.6801136406008332e-06, + "primal_infeasibility": 3.1910805185769294e-05, + "dual_infeasibility": 1.891547527204477e-07, + "iterations": 950, + "memo": { + "solver_solve_time": 0.306163208, + "problem_class": "SOCP" + } + }, + { + "id": 1988, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:49:18", + "solve_time": 105.0474328994751, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 1989, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:50:11", + "solve_time": 52.129913091659546, + "status": "OPTIMAL", + "primal_objective_value": -6.496675072773684, + "dual_objective_value": -6.496675072817704, + "duality_gap": 4.4019898837177607e-11, + "primal_infeasibility": 8.612756727893201e-10, + "dual_infeasibility": 3.714323041760762e-09, + "iterations": 19, + "memo": { + "solver_solve_time": 0.124407211, + "problem_class": "SOCP" + } + }, + { + "id": 1990, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:51:34", + "solve_time": 82.56687808036804, + "status": "OPTIMAL", + "primal_objective_value": -6.496674199067025, + "dual_objective_value": -6.496674193174276, + "duality_gap": -5.892748511371337e-09, + "primal_infeasibility": 2.237809310520621e-09, + "dual_infeasibility": 8.622386895665068e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1991, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:52:33", + "solve_time": 58.04234218597412, + "status": "OPTIMAL", + "primal_objective_value": -6.496662894119256, + "dual_objective_value": -6.496659451196209, + "duality_gap": -3.4429230471033634e-06, + "primal_infeasibility": 8.634202940522347e-08, + "dual_infeasibility": 5.405298460172423e-06, + "iterations": 14375, + "memo": { + "solver_solve_time": 5.14132375, + "problem_class": "SOCP" + } + }, + { + "id": 1992, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:11", + "solve_time": 37.08626198768616, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1993, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:12", + "solve_time": 0.14995408058166504, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 26673.000976502055, + "dual_objective_value": 26673.000976503732, + "duality_gap": -1.6771082300692797e-09, + "primal_infeasibility": 6.4391229604616e-06, + "dual_infeasibility": 1.2221958605691128e-11, + "iterations": 29, + "memo": { + "solver_solve_time": 0.094789584, + "problem_class": "SOCP" + } + }, + { + "id": 1994, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:35", + "solve_time": 22.904015064239502, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 1995, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:54", + "solve_time": 17.85116195678711, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 35809.49201866682, + "dual_objective_value": 36069.131423950195, + "duality_gap": -259.63940528337844, + "primal_infeasibility": 0.6278642052360084, + "dual_infeasibility": 2013643.3276811917, + "iterations": 100000, + "memo": { + "solver_solve_time": 17.790207541, + "problem_class": "SOCP" + } + }, + { + "id": 1996, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:55:54", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1997, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:55:55", + "solve_time": 0.3930230140686035, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 181889.9302235155, + "dual_objective_value": 181889.93017808485, + "duality_gap": 4.543064278550446e-05, + "primal_infeasibility": 0.20507020561906186, + "dual_infeasibility": 1.6535033732446265e-07, + "iterations": 30, + "memo": { + "solver_solve_time": 0.211994998, + "problem_class": "SOCP" + } + }, + { + "id": 1998, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:57:36", + "solve_time": 99.64534091949463, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 1999, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:58:14", + "solve_time": 37.75173091888428, + "status": "UNBOUNDED (INACCURATE)", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 100000, + "memo": { + "solver_solve_time": 37.5636215, + "problem_class": "SOCP" + } + }, + { + "id": 2000, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:00:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2001, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:00:16", + "solve_time": 0.9231948852539062, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 717367.9694302354, + "dual_objective_value": 717367.9693405145, + "duality_gap": 8.972093928605318e-05, + "primal_infeasibility": 0.4553377125041338, + "dual_infeasibility": 1.7972121515951058e-07, + "iterations": 29, + "memo": { + "solver_solve_time": 0.389974875, + "problem_class": "SOCP" + } + }, + { + "id": 2002, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:02:16", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2003, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:03:26", + "solve_time": 69.41161584854126, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1426694.15480458, + "dual_objective_value": 1426060.9124832153, + "duality_gap": 633.2423213645816, + "primal_infeasibility": 4.495169240132521, + "dual_infeasibility": 668608.3395679782, + "iterations": 100000, + "memo": { + "solver_solve_time": 68.767482125, + "problem_class": "SOCP" + } + }, + { + "id": 2004, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:05:27", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2005, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:05:31", + "solve_time": 3.713930130004883, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 2006, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:07:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2007, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:09:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2008, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:10:57", + "solve_time": 84.66230511665344, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038526235663, + "dual_objective_value": 7.852043972235164, + "duality_gap": -5.445999500253151e-06, + "primal_infeasibility": 1.669993096788863e-08, + "dual_infeasibility": 4.0060306334744484e-07, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2009, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:10:58", + "solve_time": 0.14790773391723633, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038439863746, + "dual_objective_value": 7.852038439863737, + "duality_gap": 8.881784197001252e-15, + "primal_infeasibility": 5.942633532349437e-09, + "dual_infeasibility": 3.1698625599395943e-13, + "iterations": 26, + "memo": { + "solver_solve_time": 0.096584246, + "problem_class": "SOCP" + } + }, + { + "id": 2010, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:11:26", + "solve_time": 27.336299896240234, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 2011, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:11:45", + "solve_time": 18.689378023147583, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852068168748205, + "dual_objective_value": 7.852068714033491, + "duality_gap": -5.452852862575241e-07, + "primal_infeasibility": 1.3471978048109906e-08, + "dual_infeasibility": 0.00038825804604077893, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.631857583000002, + "problem_class": "SOCP" + } + }, + { + "id": 2012, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:13:45", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2013, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:13:46", + "solve_time": 0.39348578453063965, + "status": "OPTIMAL", + "primal_objective_value": 67.16503110771706, + "dual_objective_value": 67.16503110770685, + "duality_gap": 1.0203393685515039e-11, + "primal_infeasibility": 1.3166341677133402e-05, + "dual_infeasibility": 3.192143596063497e-10, + "iterations": 28, + "memo": { + "solver_solve_time": 0.238405125, + "problem_class": "SOCP" + } + }, + { + "id": 2014, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:15:46", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2015, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:16:27", + "solve_time": 39.494370222091675, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 67.19515680638824, + "dual_objective_value": 67.19509878640596, + "duality_gap": 5.80199822763916e-05, + "primal_infeasibility": 9.115696547595488e-06, + "dual_infeasibility": 0.013741283267092997, + "iterations": 100000, + "memo": { + "solver_solve_time": 39.319873583, + "problem_class": "SOCP" + } + }, + { + "id": 2016, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:18:27", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2017, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:18:32", + "solve_time": 3.063275098800659, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 51.81196102828225, + "dual_objective_value": 51.81196102828078, + "duality_gap": 1.4708234630234074e-12, + "primal_infeasibility": 4.858747047888998e-06, + "dual_infeasibility": 2.8373054115952637e-11, + "iterations": 27, + "memo": { + "solver_solve_time": 1.077499788, + "problem_class": "SOCP" + } + }, + { + "id": 2018, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:20:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2019, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:22:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2020, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:30:32", + "solve_time": 0.425091028213501, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 132.63530797336855, + "dual_objective_value": 132.6353098328787, + "duality_gap": -1.8595101494156552e-06, + "primal_infeasibility": 2.976961436986348e-06, + "dual_infeasibility": 6.742415211712427e-08, + "iterations": 19, + "memo": { + "solver_solve_time": 0.383599374, + "problem_class": "SDP" + } + }, + { + "id": 2021, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:33:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2022, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:36:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2023, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:39:45", + "solve_time": 0.4165680408477783, + "status": "OPTIMAL", + "primal_objective_value": 44.94355314399055, + "dual_objective_value": 44.943550479204376, + "duality_gap": 2.6647861730566547e-06, + "primal_infeasibility": 2.1521573192501864e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2024, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:10", + "solve_time": 24.420432090759277, + "status": "OPTIMAL", + "primal_objective_value": 44.94352143580459, + "dual_objective_value": 44.943521202203435, + "duality_gap": 2.3360115619652788e-07, + "primal_infeasibility": 2.5595494078020857e-08, + "dual_infeasibility": 1.5712483353179885e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 24.409408122, + "problem_class": "SDP" + } + }, + { + "id": 2025, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:12", + "solve_time": 1.319443941116333, + "status": "OPTIMAL", + "primal_objective_value": 44.943516455354754, + "dual_objective_value": 44.94351577687856, + "duality_gap": 6.784761907852044e-07, + "primal_infeasibility": 6.165359139962672e-08, + "dual_infeasibility": 2.922917563468684e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2026, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:33", + "solve_time": 20.59488797187805, + "status": "OPTIMAL", + "primal_objective_value": 44.943699547453214, + "dual_objective_value": 44.94369974548657, + "duality_gap": -1.9803335504775532e-07, + "primal_infeasibility": 8.108289283382372e-07, + "dual_infeasibility": 1.6016297568809636e-06, + "iterations": 19450, + "memo": { + "solver_solve_time": 20.583261750000002, + "problem_class": "SDP" + } + }, + { + "id": 2027, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:34", + "solve_time": 0.6313779354095459, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.343079595579098, + "dual_objective_value": 7.343076185089177, + "duality_gap": 3.4104899215847695e-06, + "primal_infeasibility": 2.927273492503322e-06, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2028, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:41:48", + "solve_time": 73.53240489959717, + "status": "OPTIMAL", + "primal_objective_value": 7.343057048260827, + "dual_objective_value": 7.343056996265297, + "duality_gap": 5.199553054779926e-08, + "primal_infeasibility": 1.2959915647658356e-08, + "dual_infeasibility": 2.9534277759680858e-09, + "iterations": 30, + "memo": { + "solver_solve_time": 73.514996203, + "problem_class": "SDP" + } + }, + { + "id": 2029, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:41:52", + "solve_time": 2.941185235977173, + "status": "OPTIMAL", + "primal_objective_value": 7.343069474100868, + "dual_objective_value": 7.343069487135349, + "duality_gap": -1.3034481050056002e-08, + "primal_infeasibility": 5.133479828232705e-09, + "dual_infeasibility": 7.610058312761891e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2030, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:43:52", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2031, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:43:53", + "solve_time": 0.614959716796875, + "status": "OPTIMAL", + "primal_objective_value": 46.8622983506127, + "dual_objective_value": 46.862295004806455, + "duality_gap": 3.345806241839e-06, + "primal_infeasibility": 1.373933037186379e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2032, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:45:03", + "solve_time": 69.69699668884277, + "status": "OPTIMAL", + "primal_objective_value": 46.862264832079795, + "dual_objective_value": 46.86226449534972, + "duality_gap": 3.3673007493462137e-07, + "primal_infeasibility": 2.5135826306059297e-08, + "dual_infeasibility": 8.998138869898386e-10, + "iterations": 28, + "memo": { + "solver_solve_time": 69.679521045, + "problem_class": "SDP" + } + }, + { + "id": 2033, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:45:06", + "solve_time": 2.4338388442993164, + "status": "OPTIMAL", + "primal_objective_value": 46.86227168740106, + "dual_objective_value": 46.86227113257759, + "duality_gap": 5.548234724983558e-07, + "primal_infeasibility": 4.6663936113070845e-08, + "dual_infeasibility": 2.3688111053568684e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2034, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:47:06", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2035, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:47:08", + "solve_time": 0.6218161582946777, + "status": "OPTIMAL", + "primal_objective_value": 153.01412733964798, + "dual_objective_value": 153.01412720660855, + "duality_gap": 1.33039435468163e-07, + "primal_infeasibility": 8.311483119261992e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2036, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:48:14", + "solve_time": 66.16559410095215, + "status": "OPTIMAL", + "primal_objective_value": 153.01408663697256, + "dual_objective_value": 153.01408542136193, + "duality_gap": 1.2156106379279663e-06, + "primal_infeasibility": 5.2151548589389365e-08, + "dual_infeasibility": 8.00066489003644e-10, + "iterations": 27, + "memo": { + "solver_solve_time": 66.147987458, + "problem_class": "SDP" + } + }, + { + "id": 2037, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:48:17", + "solve_time": 2.3794949054718018, + "status": "OPTIMAL", + "primal_objective_value": 153.01408360362933, + "dual_objective_value": 153.01408174526287, + "duality_gap": 1.8583664598281757e-06, + "primal_infeasibility": 6.848434744436384e-08, + "dual_infeasibility": 1.717152917121848e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2038, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:50:17", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2039, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:50:18", + "solve_time": 0.6177799701690674, + "status": "OPTIMAL", + "primal_objective_value": 418.9876329576085, + "dual_objective_value": 418.987623002338, + "duality_gap": 9.955270513728465e-06, + "primal_infeasibility": 1.1983390832123164e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2040, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:51:54", + "solve_time": 95.07492804527283, + "status": "OPTIMAL", + "primal_objective_value": 418.9875424590275, + "dual_objective_value": 418.9875415105999, + "duality_gap": 9.484276120019786e-07, + "primal_infeasibility": 4.418241810753433e-08, + "dual_infeasibility": 1.0871892833263688e-09, + "iterations": 32, + "memo": { + "solver_solve_time": 95.058631418, + "problem_class": "SDP" + } + }, + { + "id": 2041, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:51:58", + "solve_time": 2.832003116607666, + "status": "OPTIMAL", + "primal_objective_value": 418.98746606964215, + "dual_objective_value": 418.98746467361104, + "duality_gap": 1.3960311093796918e-06, + "primal_infeasibility": 3.372914105987499e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2042, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:53:58", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2043, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:54:01", + "solve_time": 2.738187074661255, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 15.446607847213254, + "dual_objective_value": 15.44490872745331, + "duality_gap": 0.001699119759944523, + "primal_infeasibility": 2.093336410893669e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2044, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:56:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2045, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:56:18", + "solve_time": 14.727091073989868, + "status": "OPTIMAL", + "primal_objective_value": 15.444900580063722, + "dual_objective_value": 15.444900197302442, + "duality_gap": 3.827612804485625e-07, + "primal_infeasibility": 3.879457797449652e-08, + "dual_infeasibility": 3.257714081782618e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2046, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:58:18", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2047, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:58:21", + "solve_time": 2.771937131881714, + "status": "OPTIMAL", + "primal_objective_value": 81.86896145123242, + "dual_objective_value": 81.86895868580729, + "duality_gap": 2.765425136885824e-06, + "primal_infeasibility": 4.495223038672261e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2048, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:00:23", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2049, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:00:39", + "solve_time": 15.732684135437012, + "status": "OPTIMAL", + "primal_objective_value": 81.86892758846523, + "dual_objective_value": 81.86892640326104, + "duality_gap": 1.1852041836846183e-06, + "primal_infeasibility": 6.319784139238923e-08, + "dual_infeasibility": 2.534971057205083e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2050, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:02:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2051, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:02:43", + "solve_time": 2.7531580924987793, + "status": "OPTIMAL", + "primal_objective_value": 303.5393343673693, + "dual_objective_value": 303.5393239344627, + "duality_gap": 1.0432906606183678e-05, + "primal_infeasibility": 3.293294155188434e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2052, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:04:44", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2053, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:04:59", + "solve_time": 14.465261220932007, + "status": "OPTIMAL", + "primal_objective_value": 303.5392513049725, + "dual_objective_value": 303.53924845771263, + "duality_gap": 2.8472598501139146e-06, + "primal_infeasibility": 7.080286602904634e-08, + "dual_infeasibility": 8.487394573341143e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2054, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:06:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2055, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:07:03", + "solve_time": 2.731801986694336, + "status": "OPTIMAL", + "primal_objective_value": 747.3283200675708, + "dual_objective_value": 747.3283086121074, + "duality_gap": 1.1455463322818105e-05, + "primal_infeasibility": 2.765810017928616e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2056, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:09:04", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2057, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:09:20", + "solve_time": 14.835282802581787, + "status": "OPTIMAL", + "primal_objective_value": 747.328215683326, + "dual_objective_value": 747.3282126610573, + "duality_gap": 3.022268742824963e-06, + "primal_infeasibility": 4.0097982702259803e-08, + "dual_infeasibility": 1.144431183059174e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2058, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:11:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2059, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:11:36", + "solve_time": 14.758704900741577, + "status": "OPTIMAL", + "primal_objective_value": 25.32054457240321, + "dual_objective_value": 25.320543492733886, + "duality_gap": 1.079669324610677e-06, + "primal_infeasibility": 1.3074092923281278e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2060, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:12:04", + "solve_time": 28.537490129470825, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:11:36 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:11:36 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:11:36 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:11:36 - python_solver_runner - INFO - Subprocess solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - python_solver_runner - INFO - Solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:11:36 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-1.dat-s\n2025-08-04 22:11:36 - dat_loader - INFO - Converted gpp500-1: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:11:36 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-1', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2061, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:14:04", + "solve_time": 117.96824312210083, + "status": "OPTIMAL", + "primal_objective_value": 25.320526674810647, + "dual_objective_value": 25.32052637938557, + "duality_gap": 2.954250781783685e-07, + "primal_infeasibility": 2.1919175642173723e-08, + "dual_infeasibility": 8.274734152904314e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2062, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:04", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2063, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:20", + "solve_time": 14.896263122558594, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 156.06044168820128, + "dual_objective_value": 156.06038737307432, + "duality_gap": 5.431512695963647e-05, + "primal_infeasibility": 9.95614195158524e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2064, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:49", + "solve_time": 28.745557069778442, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:16:20 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:16:20 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:16:20 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:16:20 - python_solver_runner - INFO - Subprocess solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - python_solver_runner - INFO - Solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:16:20 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-2.dat-s\n2025-08-04 22:16:20 - dat_loader - INFO - Converted gpp500-2: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:16:20 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-2', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2065, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:18:44", + "solve_time": 114.04924011230469, + "status": "OPTIMAL", + "primal_objective_value": 156.06035666172633, + "dual_objective_value": 156.06035552858836, + "duality_gap": 1.133137971010001e-06, + "primal_infeasibility": 4.103628736945596e-08, + "dual_infeasibility": 8.100882058962239e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2066, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:20:44", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2067, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:21:00", + "solve_time": 14.947671175003052, + "status": "OPTIMAL", + "primal_objective_value": 513.0176116916346, + "dual_objective_value": 513.0176020214957, + "duality_gap": 9.670138865658373e-06, + "primal_infeasibility": 1.7217391148694617e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2068, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:21:32", + "solve_time": 30.809092044830322, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:21:01 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:21:01 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:21:01 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:21:01 - python_solver_runner - INFO - Subprocess solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - python_solver_runner - INFO - Solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:21:01 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-3.dat-s\n2025-08-04 22:21:01 - dat_loader - INFO - Converted gpp500-3: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:21:01 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-3', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2069, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:23:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2070, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:25:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2071, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:25:48", + "solve_time": 15.022250890731812, + "status": "OPTIMAL", + "primal_objective_value": 1567.0188583796264, + "dual_objective_value": 1567.0187909110516, + "duality_gap": 6.746857479811297e-05, + "primal_infeasibility": 7.443909590382624e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2072, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:26:19", + "solve_time": 30.212826013565063, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:25:49 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:25:49 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:25:49 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:25:49 - python_solver_runner - INFO - Subprocess solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - python_solver_runner - INFO - Solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:25:49 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-4.dat-s\n2025-08-04 22:25:49 - dat_loader - INFO - Converted gpp500-4: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:25:49 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-4', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2073, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:28:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2074, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:30:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2075, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:56", + "solve_time": 0.14781689643859863, + "status": "OPTIMAL", + "primal_objective_value": 132.6356794538592, + "dual_objective_value": 132.63567502877504, + "duality_gap": 4.425084171089111e-06, + "primal_infeasibility": 6.293316373095602e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2076, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:57", + "solve_time": 0.4208559989929199, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 132.63530797336855, + "dual_objective_value": 132.6353098328787, + "duality_gap": -1.8595101494156552e-06, + "primal_infeasibility": 2.976961436986348e-06, + "dual_infeasibility": 6.742415211712427e-08, + "iterations": 19, + "memo": { + "solver_solve_time": 0.380134749, + "problem_class": "SDP" + } + }, + { + "id": 2077, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:59", + "solve_time": 1.182116985321045, + "status": "OPTIMAL", + "primal_objective_value": 132.63567622801477, + "dual_objective_value": 132.63567623702812, + "duality_gap": -9.013348289954592e-09, + "primal_infeasibility": 1.4353448618618097e-08, + "dual_infeasibility": 3.018302548232494e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2078, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:22", + "solve_time": 22.059240341186523, + "status": "OPTIMAL", + "primal_objective_value": 132.67032214278458, + "dual_objective_value": 132.67032627913713, + "duality_gap": -4.136352544037436e-06, + "primal_infeasibility": 2.4188989473182798e-06, + "dual_infeasibility": 0.0024103317967444286, + "iterations": 83675, + "memo": { + "solver_solve_time": 22.017944333, + "problem_class": "SDP" + } + }, + { + "id": 2079, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:23", + "solve_time": 0.6237318515777588, + "status": "OPTIMAL", + "primal_objective_value": 133.11459453047246, + "dual_objective_value": 133.11459273039674, + "duality_gap": 1.8000757222580432e-06, + "primal_infeasibility": 1.4560143550748557e-10, + "dual_infeasibility": 2.0041502554605766e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2080, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:30", + "solve_time": 7.1672890186309814, + "status": "OPTIMAL", + "primal_objective_value": 133.11452300392386, + "dual_objective_value": 133.1145231602386, + "duality_gap": -1.5631474070687545e-07, + "primal_infeasibility": 5.880442946566506e-07, + "dual_infeasibility": 2.416827226267145e-08, + "iterations": 20, + "memo": { + "solver_solve_time": 7.025535836, + "problem_class": "SDP" + } + }, + { + "id": 2081, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:35", + "solve_time": 4.457964658737183, + "status": "OPTIMAL", + "primal_objective_value": 133.11458873614384, + "dual_objective_value": 133.11458873454836, + "duality_gap": 1.5954810805851594e-09, + "primal_infeasibility": 5.1857958079351704e-09, + "dual_infeasibility": 9.454734908598581e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2082, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:50:55", + "solve_time": 78.73915386199951, + "status": "OPTIMAL", + "primal_objective_value": 133.206421971091, + "dual_objective_value": 133.2064255039062, + "duality_gap": -3.532815185280924e-06, + "primal_infeasibility": 1.809776268177368e-06, + "dual_infeasibility": 0.0026429235860219477, + "iterations": 90650, + "memo": { + "solver_solve_time": 78.591124291, + "problem_class": "SDP" + } + }, + { + "id": 2083, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:08", + "solve_time": 3.568632125854492, + "status": "OPTIMAL", + "primal_objective_value": -0.566517267707974, + "dual_objective_value": -0.5665172734748258, + "duality_gap": 5.766851884914104e-09, + "primal_infeasibility": 6.702895394246997e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2084, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:17", + "solve_time": 8.200895071029663, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172821147114, + "dual_objective_value": -0.5665172817725594, + "duality_gap": -3.421519734203571e-10, + "primal_infeasibility": 1.022967781834959e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 5.049194498, + "problem_class": "SDP" + } + }, + { + "id": 2085, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:27", + "solve_time": 9.065042972564697, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172762101253, + "dual_objective_value": -0.5665172760832871, + "duality_gap": -1.2683820660441825e-10, + "primal_infeasibility": 2.9533438966925347e-08, + "dual_infeasibility": 4.1854682344393564e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2086, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:27", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2087, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:31", + "solve_time": 3.9591081142425537, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.6715149919393316, + "dual_objective_value": -0.6715154519149769, + "duality_gap": 4.599756452394743e-07, + "primal_infeasibility": 9.880028136196605e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2088, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:37", + "solve_time": 5.3541259765625, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154099679571, + "dual_objective_value": -0.6715154097625702, + "duality_gap": -2.0538692968585792e-10, + "primal_infeasibility": 3.512925202723288e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.193572249, + "problem_class": "SDP" + } + }, + { + "id": 2089, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:46", + "solve_time": 7.850555181503296, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154087273556, + "dual_objective_value": -0.6715154086542251, + "duality_gap": -7.313050165436152e-11, + "primal_infeasibility": 1.1755370688932572e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2090, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:46", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2091, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:50", + "solve_time": 3.6847190856933594, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9726272676562057, + "dual_objective_value": -0.9726274431143305, + "duality_gap": 1.7545812480701528e-07, + "primal_infeasibility": 6.41651460356969e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2092, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:56", + "solve_time": 4.968804836273193, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274329610303, + "dual_objective_value": -0.9726274322104886, + "duality_gap": -7.505416288466904e-10, + "primal_infeasibility": 1.1813692812382962e-07, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "solver_solve_time": 1.834995457, + "problem_class": "SDP" + } + }, + { + "id": 2093, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:59:04", + "solve_time": 7.285048723220825, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274304903915, + "dual_objective_value": -0.9726274299150273, + "duality_gap": -5.753642007277904e-10, + "primal_infeasibility": 7.421682204955683e-08, + "dual_infeasibility": 2.5603242314031326e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2094, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:04", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2095, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:08", + "solve_time": 3.7701759338378906, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -7.056979925817409, + "dual_objective_value": -7.056980053305484, + "duality_gap": 1.2748807520779337e-07, + "primal_infeasibility": 1.428558638956882e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2096, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:14", + "solve_time": 5.1614251136779785, + "status": "OPTIMAL", + "primal_objective_value": -7.056985719383242, + "dual_objective_value": -7.0569856944182865, + "duality_gap": -2.4964955436246328e-08, + "primal_infeasibility": 2.7109763353502106e-06, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.099254042, + "problem_class": "SDP" + } + }, + { + "id": 2097, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:23", + "solve_time": 8.174963235855103, + "status": "OPTIMAL", + "primal_objective_value": -7.056980177129674, + "dual_objective_value": -7.056980175019456, + "duality_gap": -2.1102177782950093e-09, + "primal_infeasibility": 8.034408651651353e-08, + "dual_infeasibility": 1.259191489724154e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2098, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:23", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2099, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:23", + "solve_time": 0.011425018310546875, + "status": "OPTIMAL", + "primal_objective_value": -17.78462618700244, + "dual_objective_value": -17.784627142638215, + "duality_gap": 9.556357731810294e-07, + "primal_infeasibility": 1.9992999166489883e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2100, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:24", + "solve_time": 0.014528989791870117, + "status": "OPTIMAL", + "primal_objective_value": -18.057693540129556, + "dual_objective_value": -18.05769338831607, + "duality_gap": -1.5181348445025833e-07, + "primal_infeasibility": 0.02414985830941088, + "dual_infeasibility": 0.0, + "iterations": 56, + "memo": { + "solver_solve_time": 0.011800501, + "problem_class": "SDP" + } + }, + { + "id": 2101, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:24", + "solve_time": 0.16407227516174316, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2102, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:26", + "solve_time": 0.9191200733184814, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002878232961825694, + "dual_objective_value": -20.48065620588266, + "duality_gap": 20.477777972920833, + "primal_infeasibility": 0.27819661314555105, + "dual_infeasibility": 546368.1134344704, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.915902708, + "problem_class": "SDP" + } + }, + { + "id": 2103, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:27", + "solve_time": 1.0839791297912598, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2104, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:28", + "solve_time": 1.0812201499938965, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2105, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:30", + "solve_time": 1.0752131938934326, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2106, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG32", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:31", + "solve_time": 1.0642778873443604, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2107, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:45", + "solve_time": 12.59275507926941, + "status": "OPTIMAL", + "primal_objective_value": -4006.255355989173, + "dual_objective_value": -4006.255524702168, + "duality_gap": 0.0001687129947640642, + "primal_infeasibility": 2.0941798250870906e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2108, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:05:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2109, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:07:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2110, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2111, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:48", + "solve_time": 0.034883737564086914, + "status": "OPTIMAL", + "primal_objective_value": -226.15734786394398, + "dual_objective_value": -226.15735172707906, + "duality_gap": 3.863135077608604e-06, + "primal_infeasibility": 3.0968379547604032e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2112, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:49", + "solve_time": 0.2541928291320801, + "status": "OPTIMAL", + "primal_objective_value": -226.15735056371446, + "dual_objective_value": -226.15735056120263, + "duality_gap": -2.511825414330815e-09, + "primal_infeasibility": 4.677724965457351e-16, + "dual_infeasibility": 8.809188623572417e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.246065042, + "problem_class": "SDP" + } + }, + { + "id": 2113, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:50", + "solve_time": 0.5887832641601562, + "status": "OPTIMAL", + "primal_objective_value": -226.15734160717605, + "dual_objective_value": -226.15734155551763, + "duality_gap": -5.165841798770998e-08, + "primal_infeasibility": 6.202424795825198e-14, + "dual_infeasibility": 8.902537162396245e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2114, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:52", + "solve_time": 1.3103270530700684, + "status": "OPTIMAL", + "primal_objective_value": -226.15643832070722, + "dual_objective_value": -226.15570990174183, + "duality_gap": -0.0007284189653944395, + "primal_infeasibility": 4.9409478283232725e-06, + "dual_infeasibility": 2.408292278682985e-07, + "iterations": 1125, + "memo": { + "solver_solve_time": 1.302447541, + "problem_class": "SDP" + } + }, + { + "id": 2115, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:52", + "solve_time": 0.050338029861450195, + "status": "OPTIMAL", + "primal_objective_value": -141.99047575527533, + "dual_objective_value": -141.99047735177834, + "duality_gap": 1.596503011569439e-06, + "primal_infeasibility": 3.982608286351293e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2116, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:53", + "solve_time": 0.032792091369628906, + "status": "OPTIMAL", + "primal_objective_value": -141.99047689078066, + "dual_objective_value": -141.99047689026875, + "duality_gap": -5.119034085510066e-10, + "primal_infeasibility": 4.156174261174552e-15, + "dual_infeasibility": 4.199415289446605e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.020084, + "problem_class": "SDP" + } + }, + { + "id": 2117, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:55", + "solve_time": 1.1706581115722656, + "status": "OPTIMAL", + "primal_objective_value": -141.9904749593561, + "dual_objective_value": -141.99047495055282, + "duality_gap": -8.803283435554476e-09, + "primal_infeasibility": 2.2453515911417613e-13, + "dual_infeasibility": 4.542127396475113e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2118, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:03", + "solve_time": 8.35070276260376, + "status": "OPTIMAL", + "primal_objective_value": -141.98813786178076, + "dual_objective_value": -141.9875838883371, + "duality_gap": -0.0005539734436581512, + "primal_infeasibility": 2.8267894549544556e-06, + "dual_infeasibility": 3.83990291112102e-06, + "iterations": 4350, + "memo": { + "solver_solve_time": 8.337701958, + "problem_class": "SDP" + } + }, + { + "id": 2119, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:04", + "solve_time": 0.04748392105102539, + "status": "OPTIMAL", + "primal_objective_value": -269.8801629227768, + "dual_objective_value": -269.88017132963336, + "duality_gap": 8.406856579767918e-06, + "primal_infeasibility": 9.623806008572918e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2120, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:05", + "solve_time": 0.5691618919372559, + "status": "OPTIMAL", + "primal_objective_value": -269.88016869497824, + "dual_objective_value": -269.8801686913607, + "duality_gap": -3.617515176301822e-09, + "primal_infeasibility": 3.335139604959785e-16, + "dual_infeasibility": 1.370718634958635e-10, + "iterations": 11, + "memo": { + "solver_solve_time": 0.556317127, + "problem_class": "SDP" + } + }, + { + "id": 2121, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:07", + "solve_time": 1.1793420314788818, + "status": "OPTIMAL", + "primal_objective_value": -269.8801659941921, + "dual_objective_value": -269.88016597458284, + "duality_gap": -1.960927420441294e-08, + "primal_infeasibility": 1.8302081584984527e-14, + "dual_infeasibility": 3.1844196366459363e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2122, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:10", + "solve_time": 2.415357828140259, + "status": "OPTIMAL", + "primal_objective_value": -269.8801469917551, + "dual_objective_value": -269.8801394704992, + "duality_gap": -7.521255895426293e-06, + "primal_infeasibility": 1.4821257835891417e-06, + "dual_infeasibility": 1.0745562097345573e-07, + "iterations": 1225, + "memo": { + "solver_solve_time": 2.4024067909999998, + "problem_class": "SDP" + } + }, + { + "id": 2123, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:10", + "solve_time": 0.047016143798828125, + "status": "OPTIMAL", + "primal_objective_value": -467.7501026865027, + "dual_objective_value": -467.7501156367352, + "duality_gap": 1.295023247394056e-05, + "primal_infeasibility": 3.1265375769840824e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2124, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:14", + "solve_time": 3.524592161178589, + "status": "OPTIMAL", + "primal_objective_value": -467.7501129260428, + "dual_objective_value": -467.75011292377854, + "duality_gap": -2.2642439034825657e-09, + "primal_infeasibility": 2.2015867814748726e-15, + "dual_infeasibility": 2.7290545959913828e-11, + "iterations": 14, + "memo": { + "solver_solve_time": 3.5117294599999997, + "problem_class": "SDP" + } + }, + { + "id": 2125, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:16", + "solve_time": 1.080678939819336, + "status": "OPTIMAL", + "primal_objective_value": -467.75010646690146, + "dual_objective_value": -467.75010642794496, + "duality_gap": -3.895650024787756e-08, + "primal_infeasibility": 5.9965206332123494e-15, + "dual_infeasibility": 1.5401225413839454e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2126, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:18", + "solve_time": 1.1609041690826416, + "status": "OPTIMAL", + "primal_objective_value": -467.7502234039853, + "dual_objective_value": -467.74997043188023, + "duality_gap": -0.0002529721050450462, + "primal_infeasibility": 4.1773529864416556e-07, + "dual_infeasibility": 4.656553667450933e-08, + "iterations": 575, + "memo": { + "solver_solve_time": 1.148141541, + "problem_class": "SDP" + } + }, + { + "id": 2127, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:18", + "solve_time": 0.046462059020996094, + "status": "OPTIMAL", + "primal_objective_value": -864.4118465739052, + "dual_objective_value": -864.4118653239351, + "duality_gap": 1.875002988072083e-05, + "primal_infeasibility": 2.057078025751857e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2128, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:31", + "solve_time": 11.987443208694458, + "status": "OPTIMAL", + "primal_objective_value": -864.4118587839267, + "dual_objective_value": -864.4118587756075, + "duality_gap": -8.319261723954696e-09, + "primal_infeasibility": 9.469259058323655e-15, + "dual_infeasibility": 2.5070234017971762e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 11.974252711, + "problem_class": "SDP" + } + }, + { + "id": 2129, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:32", + "solve_time": 1.1041698455810547, + "status": "OPTIMAL", + "primal_objective_value": -864.4118513258304, + "dual_objective_value": -864.4118512580925, + "duality_gap": -6.773791483283276e-08, + "primal_infeasibility": 1.6350918002647319e-13, + "dual_infeasibility": 6.087262225582329e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2130, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:33", + "solve_time": 0.46433019638061523, + "status": "OPTIMAL", + "primal_objective_value": -864.4118977179496, + "dual_objective_value": -864.4096336193913, + "duality_gap": -0.0022640985582711437, + "primal_infeasibility": 7.582685087510616e-07, + "dual_infeasibility": 8.068776913131342e-08, + "iterations": 225, + "memo": { + "solver_solve_time": 0.45122058299999995, + "problem_class": "SDP" + } + }, + { + "id": 2131, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:34", + "solve_time": 0.16768622398376465, + "status": "OPTIMAL", + "primal_objective_value": -317.2643237878996, + "dual_objective_value": -317.26434282949464, + "duality_gap": 1.904159501009417e-05, + "primal_infeasibility": 3.133245307540807e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2132, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:35", + "solve_time": 0.24130702018737793, + "status": "OPTIMAL", + "primal_objective_value": -317.2643396559851, + "dual_objective_value": -317.26433965517947, + "duality_gap": -8.05641775514232e-10, + "primal_infeasibility": 2.317503143690089e-15, + "dual_infeasibility": 3.2364647886398265e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.163966999, + "problem_class": "SDP" + } + }, + { + "id": 2133, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:42", + "solve_time": 6.18490195274353, + "status": "OPTIMAL", + "primal_objective_value": -317.2643357289886, + "dual_objective_value": -317.26433571943585, + "duality_gap": -9.55276391323423e-09, + "primal_infeasibility": 3.452429205651864e-14, + "dual_infeasibility": 2.289855858365093e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2134, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:47", + "solve_time": 65.18666386604309, + "status": "OPTIMAL", + "primal_objective_value": -317.26334217587544, + "dual_objective_value": -317.26018290170634, + "duality_gap": -0.003159274169092896, + "primal_infeasibility": 1.3145309316250677e-06, + "dual_infeasibility": 1.0170101910506083e-06, + "iterations": 6025, + "memo": { + "solver_solve_time": 65.107815083, + "problem_class": "SDP" + } + }, + { + "id": 2135, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:49", + "solve_time": 0.9686660766601562, + "status": "OPTIMAL", + "primal_objective_value": -531.9300419847027, + "dual_objective_value": -531.9300864211093, + "duality_gap": 4.4436406597014866e-05, + "primal_infeasibility": 7.856532362095457e-16, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2136, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:55", + "solve_time": 5.162637710571289, + "status": "OPTIMAL", + "primal_objective_value": -531.9300813566422, + "dual_objective_value": -531.9300813543795, + "duality_gap": -2.262709131173324e-09, + "primal_infeasibility": 8.227473646636106e-16, + "dual_infeasibility": 5.305261841984453e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 5.084504, + "problem_class": "SDP" + } + }, + { + "id": 2137, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:12:01", + "solve_time": 5.5707409381866455, + "status": "OPTIMAL", + "primal_objective_value": -531.9300725932821, + "dual_objective_value": -531.930072569, + "duality_gap": -2.4282144295284525e-08, + "primal_infeasibility": 8.040295993778045e-14, + "dual_infeasibility": 2.329819847105128e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2138, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:13:27", + "solve_time": 85.80190420150757, + "status": "OPTIMAL", + "primal_objective_value": -531.9296665702215, + "dual_objective_value": -531.9243902498758, + "duality_gap": -0.005276320345615204, + "primal_infeasibility": 3.5097864358050385e-07, + "dual_infeasibility": 4.608231670735556e-07, + "iterations": 6725, + "memo": { + "solver_solve_time": 85.723657208, + "problem_class": "SDP" + } + }, + { + "id": 2139, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:13:29", + "solve_time": 0.9742119312286377, + "status": "OPTIMAL", + "primal_objective_value": -981.1725284770389, + "dual_objective_value": -981.1725736916305, + "duality_gap": 4.5214591636977275e-05, + "primal_infeasibility": 2.9884877512057914e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2140, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:14:59", + "solve_time": 89.82528376579285, + "status": "OPTIMAL", + "primal_objective_value": -981.172560450884, + "dual_objective_value": -981.172560441928, + "duality_gap": -8.956021702033468e-09, + "primal_infeasibility": 5.576649407633878e-15, + "dual_infeasibility": 6.758930441182268e-11, + "iterations": 13, + "memo": { + "solver_solve_time": 89.744985665, + "problem_class": "SDP" + } + }, + { + "id": 2141, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:06", + "solve_time": 5.910895109176636, + "status": "OPTIMAL", + "primal_objective_value": -981.1725575157805, + "dual_objective_value": -981.1725574810541, + "duality_gap": -3.4726326703093946e-08, + "primal_infeasibility": 1.1304565496294368e-14, + "dual_infeasibility": 8.0190851099525e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2142, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:31", + "solve_time": 24.193409204483032, + "status": "OPTIMAL", + "primal_objective_value": -981.1715863618699, + "dual_objective_value": -981.1618374757425, + "duality_gap": -0.00974888612745417, + "primal_infeasibility": 9.84883038240223e-08, + "dual_infeasibility": 3.305222499689065e-07, + "iterations": 1875, + "memo": { + "solver_solve_time": 24.105715125, + "problem_class": "SDP" + } + }, + { + "id": 2143, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:31", + "solve_time": 0.17056798934936523, + "status": "OPTIMAL", + "primal_objective_value": -1681.960022233755, + "dual_objective_value": -1681.960115536573, + "duality_gap": 9.330281818620279e-05, + "primal_infeasibility": 6.498259333050908e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2144, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:17:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2145, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:17:39", + "solve_time": 5.564814805984497, + "status": "OPTIMAL", + "primal_objective_value": -1681.960048879275, + "dual_objective_value": -1681.9600487093676, + "duality_gap": -1.6990748008538503e-07, + "primal_infeasibility": 2.788764812335165e-14, + "dual_infeasibility": 1.0652363569467362e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2146, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:01", + "solve_time": 22.179195880889893, + "status": "OPTIMAL", + "primal_objective_value": -1681.9584387566933, + "dual_objective_value": -1681.953564698473, + "duality_gap": -0.004874058220366351, + "primal_infeasibility": 2.0180126454384416e-06, + "dual_infeasibility": 2.1737788103100266e-08, + "iterations": 1625, + "memo": { + "solver_solve_time": 22.0992225, + "problem_class": "SDP" + } + }, + { + "id": 2147, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:04", + "solve_time": 2.33392596244812, + "status": "OPTIMAL", + "primal_objective_value": -598.1485095041485, + "dual_objective_value": -598.1485189328429, + "duality_gap": 9.428694397684012e-06, + "primal_infeasibility": 2.5921330521074135e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2148, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:07", + "solve_time": 1.623703956604004, + "status": "OPTIMAL", + "primal_objective_value": -598.1485156509422, + "dual_objective_value": -598.1485156502104, + "duality_gap": -7.318021744140424e-10, + "primal_infeasibility": 1.0279534041409784e-15, + "dual_infeasibility": 1.8856686824865825e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 1.075159208, + "problem_class": "SDP" + } + }, + { + "id": 2149, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:57", + "solve_time": 49.235872983932495, + "status": "OPTIMAL", + "primal_objective_value": -598.1484980478649, + "dual_objective_value": -598.148498028111, + "duality_gap": -1.9753883861994836e-08, + "primal_infeasibility": 6.9727808859637596e-15, + "dual_infeasibility": 3.076456407970078e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2150, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:20:57", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2151, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:21:00", + "solve_time": 2.8333511352539062, + "status": "OPTIMAL", + "primal_objective_value": -1070.056746962311, + "dual_objective_value": -1070.0567665649662, + "duality_gap": 1.9602655129347113e-05, + "primal_infeasibility": 3.271071190322263e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2152, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:23:01", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2153, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:23:55", + "solve_time": 53.50329923629761, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567589595314, + "dual_objective_value": -1070.0567589516327, + "duality_gap": -7.898734111222439e-09, + "primal_infeasibility": 2.7488754243134703e-13, + "dual_infeasibility": 3.8483116375688007e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2154, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:25:55", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2155, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:25:57", + "solve_time": 0.9246599674224854, + "status": "OPTIMAL", + "primal_objective_value": -1847.9699810333868, + "dual_objective_value": -1847.970022451066, + "duality_gap": 4.1417679085498094e-05, + "primal_infeasibility": 1.1936389203813294e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2156, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:27:58", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2157, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:28:53", + "solve_time": 53.33316898345947, + "status": "OPTIMAL", + "primal_objective_value": -1847.9699944022154, + "dual_objective_value": -1847.9699943694136, + "duality_gap": -3.280183591414243e-08, + "primal_infeasibility": 1.6551577809205618e-14, + "dual_infeasibility": 4.792848030985146e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2158, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:30:53", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2159, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:30:55", + "solve_time": 1.1287381649017334, + "status": "OPTIMAL", + "primal_objective_value": -3566.7380109438227, + "dual_objective_value": -3566.7380522800404, + "duality_gap": 4.133621769142337e-05, + "primal_infeasibility": 3.097610455579781e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2160, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:32:56", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2161, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:33:38", + "solve_time": 40.44312405586243, + "status": "OPTIMAL", + "primal_objective_value": -3566.7379833165146, + "dual_objective_value": -3566.737983223862, + "duality_gap": -9.265249900636263e-08, + "primal_infeasibility": 7.472516046203045e-13, + "dual_infeasibility": 2.8114690795223104e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2162, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2163, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:39", + "solve_time": 0.9359021186828613, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2164, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:40", + "solve_time": 0.9329919815063477, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2165, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:41", + "solve_time": 0.9212636947631836, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2166, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:43", + "solve_time": 0.9268250465393066, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2167, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:46", + "solve_time": 2.17305588722229, + "status": "OPTIMAL", + "primal_objective_value": -50.32122092262562, + "dual_objective_value": -50.321222056603794, + "duality_gap": 1.1339781735841825e-06, + "primal_infeasibility": 4.166852070171613e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2168, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:37:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2169, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:18", + "solve_time": 29.595786094665527, + "status": "OPTIMAL", + "primal_objective_value": -50.3212217910097, + "dual_objective_value": -50.32122179111797, + "duality_gap": 1.0827250207512407e-10, + "primal_infeasibility": 1.0777758760552207e-13, + "dual_infeasibility": 1.9701297898894425e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2170, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:22", + "solve_time": 2.66982102394104, + "status": "OPTIMAL", + "primal_objective_value": -50.32166114881474, + "dual_objective_value": -50.32153115885043, + "duality_gap": -0.0001299899643072422, + "primal_infeasibility": 2.9254331569073637e-06, + "dual_infeasibility": 9.944532731845678e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 2.3345363750000003, + "problem_class": "SDP" + } + }, + { + "id": 2171, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:29", + "solve_time": 5.290843963623047, + "status": "OPTIMAL", + "primal_objective_value": -57.232306113340115, + "dual_objective_value": -57.232307531112916, + "duality_gap": 1.4177728004938217e-06, + "primal_infeasibility": 2.248221894866901e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2172, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:40:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2173, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:45", + "solve_time": 73.00050282478333, + "status": "OPTIMAL", + "primal_objective_value": -57.23230661497225, + "dual_objective_value": -57.23230661531533, + "duality_gap": 3.4307845453440677e-10, + "primal_infeasibility": 9.587709927591261e-14, + "dual_infeasibility": 6.076045292986302e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2174, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:52", + "solve_time": 5.0073630809783936, + "status": "OPTIMAL", + "primal_objective_value": -57.23240759320841, + "dual_objective_value": -57.23245003631919, + "duality_gap": 4.24431107859391e-05, + "primal_infeasibility": 4.5962074213473126e-07, + "dual_infeasibility": 9.261089404552817e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 4.229581583, + "problem_class": "SDP" + } + }, + { + "id": 2175, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:54", + "solve_time": 1.5419859886169434, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2176, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:57", + "solve_time": 1.5410659313201904, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2177, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:42:00", + "solve_time": 1.529308795928955, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2178, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:42:02", + "solve_time": 1.5386550426483154, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 2179, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:51", + "solve_time": 0.03551793098449707, + "status": "OPTIMAL", + "primal_objective_value": -8.299999482545115, + "dual_objective_value": -8.300000044307849, + "duality_gap": 5.617627341081288e-07, + "primal_infeasibility": 1.6670044255637843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2180, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:51", + "solve_time": 0.050559043884277344, + "status": "OPTIMAL", + "primal_objective_value": -8.30000052797604, + "dual_objective_value": -8.300000490399094, + "duality_gap": -3.7576945999262534e-08, + "primal_infeasibility": 1.0799058809794016e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "solver_solve_time": 0.046177288, + "problem_class": "SDP" + } + }, + { + "id": 2181, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:52", + "solve_time": 0.16975116729736328, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2182, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:57", + "solve_time": 4.875208854675293, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.0019666666133589523, + "dual_objective_value": -1.6631072323702496, + "duality_gap": 1.6611405657568907, + "primal_infeasibility": 0.166111590183817, + "dual_infeasibility": 16899.147636217396, + "iterations": 100000, + "memo": { + "solver_solve_time": 4.870198625, + "problem_class": "SDP" + } + }, + { + "id": 2183, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:58", + "solve_time": 0.16129589080810547, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -13.633263748445593, + "dual_objective_value": -13.633266893655158, + "duality_gap": 3.1452095647921396e-06, + "primal_infeasibility": 6.364345948755367e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2184, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:59", + "solve_time": 0.23012804985046387, + "status": "OPTIMAL", + "primal_objective_value": -13.633267734899809, + "dual_objective_value": -13.633267702679126, + "duality_gap": -3.2220683010564244e-08, + "primal_infeasibility": 2.693486524788012e-07, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "solver_solve_time": 0.221856126, + "problem_class": "SDP" + } + }, + { + "id": 2185, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:00", + "solve_time": 0.34781694412231445, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2186, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:14", + "solve_time": 14.100239038467407, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.037735833422812004, + "dual_objective_value": -0.27289208768706114, + "duality_gap": 0.23515625426424913, + "primal_infeasibility": 0.13917932877951675, + "dual_infeasibility": 1893.5597441188274, + "iterations": 100000, + "memo": { + "solver_solve_time": 14.090095958, + "problem_class": "SDP" + } + }, + { + "id": 2187, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:15", + "solve_time": 0.33644914627075195, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -19.79422577234397, + "dual_objective_value": -19.7942315506204, + "duality_gap": 5.778276428003437e-06, + "primal_infeasibility": 1.3327565863841907e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2188, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:17", + "solve_time": 0.8590762615203857, + "status": "OPTIMAL", + "primal_objective_value": -19.79423318506499, + "dual_objective_value": -19.79423315316147, + "duality_gap": -3.190351804960301e-08, + "primal_infeasibility": 5.103843191955561e-07, + "dual_infeasibility": 5.641713395479458e-08, + "iterations": 32, + "memo": { + "solver_solve_time": 0.841925412, + "problem_class": "SDP" + } + }, + { + "id": 2189, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:19", + "solve_time": 1.2682511806488037, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2190, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:48", + "solve_time": 28.04506778717041, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002563905576329976, + "dual_objective_value": -2.112935527155603, + "duality_gap": 2.110371621579273, + "primal_infeasibility": 0.11510210278659297, + "dual_infeasibility": 14854.924304999919, + "iterations": 100000, + "memo": { + "solver_solve_time": 28.022136791, + "problem_class": "SDP" + } + }, + { + "id": 2191, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:49", + "solve_time": 0.6715381145477295, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -16.883575406676048, + "dual_objective_value": -16.883604992850316, + "duality_gap": 2.9586174267848264e-05, + "primal_infeasibility": 2.7521358841549283e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2192, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:52", + "solve_time": 2.263176918029785, + "status": "OPTIMAL", + "primal_objective_value": -16.88364881340114, + "dual_objective_value": -16.883648809313648, + "duality_gap": -4.087493010729304e-09, + "primal_infeasibility": 5.620802961416378e-07, + "dual_infeasibility": 5.697256261448682e-09, + "iterations": 35, + "memo": { + "solver_solve_time": 2.230729789, + "problem_class": "SDP" + } + }, + { + "id": 2193, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:55", + "solve_time": 2.0964319705963135, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2194, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:49", + "solve_time": 53.70480513572693, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.17807903005516243, + "dual_objective_value": -0.23275478696713833, + "duality_gap": 0.054675756911975903, + "primal_infeasibility": 0.09362750982167806, + "dual_infeasibility": 369.6736319443367, + "iterations": 100000, + "memo": { + "solver_solve_time": 53.657073791, + "problem_class": "SDP" + } + }, + { + "id": 2195, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:51", + "solve_time": 1.3168079853057861, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -37.30434823321163, + "dual_objective_value": -37.30443772697064, + "duality_gap": 8.94937590132372e-05, + "primal_infeasibility": 2.9293219588294305e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2196, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:58", + "solve_time": 5.672824859619141, + "status": "OPTIMAL", + "primal_objective_value": -37.3044718247362, + "dual_objective_value": -37.30447181818093, + "duality_gap": -6.5552683281566715e-09, + "primal_infeasibility": 1.4634649666883939e-06, + "dual_infeasibility": 3.059050321188013e-06, + "iterations": 42, + "memo": { + "solver_solve_time": 5.614913959, + "problem_class": "SDP" + } + }, + { + "id": 2197, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:48:03", + "solve_time": 4.2641379833221436, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2198, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:36", + "solve_time": 91.90722298622131, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.5214729254574336, + "dual_objective_value": -1.0154678495708611, + "duality_gap": 0.4939949241134275, + "primal_infeasibility": 0.08196294538901851, + "dual_infeasibility": 3266.178827189497, + "iterations": 100000, + "memo": { + "solver_solve_time": 91.81093475, + "problem_class": "SDP" + } + }, + { + "id": 2199, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:40", + "solve_time": 2.504279851913452, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.625054215291936, + "dual_objective_value": -20.625079174008114, + "duality_gap": 2.4958716178247187e-05, + "primal_infeasibility": 7.626469959925607e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2200, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:51", + "solve_time": 10.41468095779419, + "status": "OPTIMAL", + "primal_objective_value": -20.625077113896168, + "dual_objective_value": -20.625077105250966, + "duality_gap": -8.64520188770257e-09, + "primal_infeasibility": 6.579981870625703e-07, + "dual_infeasibility": 2.3499840470621547e-07, + "iterations": 39, + "memo": { + "solver_solve_time": 10.31394521, + "problem_class": "SDP" + } + }, + { + "id": 2201, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:50:00", + "solve_time": 8.096139907836914, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2202, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:00", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2203, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:06", + "solve_time": 4.015629053115845, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.286315458750884, + "dual_objective_value": -20.286372440169522, + "duality_gap": 5.698141863774708e-05, + "primal_infeasibility": 2.99146677629299e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2204, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:26", + "solve_time": 19.301553964614868, + "status": "OPTIMAL", + "primal_objective_value": -20.2863714283772, + "dual_objective_value": -20.286371308207375, + "duality_gap": -1.201698260899775e-07, + "primal_infeasibility": 5.539607872665644e-07, + "dual_infeasibility": 1.4511474711248118e-07, + "iterations": 40, + "memo": { + "solver_solve_time": 19.143677041, + "problem_class": "SDP" + } + }, + { + "id": 2205, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:40", + "solve_time": 11.985829830169678, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2206, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:54:40", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2207, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:54:48", + "solve_time": 6.55282998085022, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -14.67540228481323, + "dual_objective_value": -14.675431392929916, + "duality_gap": 2.910811668499491e-05, + "primal_infeasibility": 1.4589427065347405e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2208, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:55:19", + "solve_time": 29.263099193572998, + "status": "OPTIMAL", + "primal_objective_value": -14.675430563285023, + "dual_objective_value": -14.675430500128785, + "duality_gap": -6.315623757302546e-08, + "primal_infeasibility": 1.0734959395341116e-06, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "solver_solve_time": 29.023103417, + "problem_class": "SDP" + } + }, + { + "id": 2209, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:55:39", + "solve_time": 18.054994821548462, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2210, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:57:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2211, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:57:53", + "solve_time": 11.582292795181274, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -38.532875373216974, + "dual_objective_value": -38.53307092893413, + "duality_gap": 0.00019555571715557107, + "primal_infeasibility": 2.813485631313094e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2212, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:58:53", + "solve_time": 58.74322485923767, + "status": "OPTIMAL", + "primal_objective_value": -38.53310978438966, + "dual_objective_value": -38.53310974843417, + "duality_gap": -3.5955487476257986e-08, + "primal_infeasibility": 1.3387459817271676e-06, + "dual_infeasibility": 3.600325513296991e-11, + "iterations": 44, + "memo": { + "solver_solve_time": 58.39190925, + "problem_class": "SDP" + } + }, + { + "id": 2213, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:59:27", + "solve_time": 31.417057037353516, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2214, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:01:28", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2215, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:01:48", + "solve_time": 17.948111295700073, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -31.95851149383577, + "dual_objective_value": -31.95870615260608, + "duality_gap": 0.000194658770311662, + "primal_infeasibility": 1.7090596773415e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2216, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:03:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2217, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:04:35", + "solve_time": 43.228622913360596, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2218, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:06:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2219, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:07:28", + "solve_time": 50.860018253326416, + "status": "OPTIMAL", + "primal_objective_value": -629.1552658005733, + "dual_objective_value": -629.1552929633996, + "duality_gap": 2.716282631354261e-05, + "primal_infeasibility": 2.369371882908525e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2220, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:08:01", + "solve_time": 32.29365611076355, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 00:07:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:07:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:07:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:07:29 - python_solver_runner - INFO - Subprocess solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - python_solver_runner - INFO - Solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:07:29 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG11.dat-s\n2025-08-05 00:07:29 - dat_loader - INFO - Converted equalG11: SDP problem (641601 vars, 801 constraints)\n2025-08-05 00:07:29 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG11', class='SDP', 641601 vars, 801 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2221, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:10:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2222, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:12:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2223, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:13:43", + "solve_time": 98.00020503997803, + "status": "OPTIMAL", + "primal_objective_value": -4005.6011905473815, + "dual_objective_value": -4005.6013169406397, + "duality_gap": 0.00012639325814234326, + "primal_infeasibility": 7.832639830764701e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2224, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:14:20", + "solve_time": 36.03781485557556, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 00:13:43 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:13:43 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:13:43 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:13:43 - python_solver_runner - INFO - Subprocess solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - python_solver_runner - INFO - Solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:13:43 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG51.dat-s\n2025-08-05 00:13:44 - dat_loader - INFO - Converted equalG51: SDP problem (1002001 vars, 1001 constraints)\n2025-08-05 00:13:44 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG51', class='SDP', 1002001 vars, 1001 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2225, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:16:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2226, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2227, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:22", + "solve_time": 0.008648872375488281, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -56.946017137117806, + "dual_objective_value": -56.94340849281433, + "duality_gap": -0.0026086443034785134, + "primal_infeasibility": 1.9356932179028497e-06, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2228, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:22", + "solve_time": 0.0054168701171875, + "status": "OPTIMAL", + "primal_objective_value": -56.95458417169877, + "dual_objective_value": -56.954584100815666, + "duality_gap": -7.088310383096541e-08, + "primal_infeasibility": 1.2182104934532567e-06, + "dual_infeasibility": 1.935530761916017e-08, + "iterations": 21, + "memo": { + "solver_solve_time": 0.00223204, + "problem_class": "SDP" + } + }, + { + "id": 2229, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:23", + "solve_time": 0.04180288314819336, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 2230, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:23", + "solve_time": 0.05362105369567871, + "status": "OPTIMAL", + "primal_objective_value": -56.95290556196835, + "dual_objective_value": -56.95257093437306, + "duality_gap": -0.00033462759529356845, + "primal_infeasibility": 4.360158022165924e-06, + "dual_infeasibility": 9.60043824422556e-06, + "iterations": 7875, + "memo": { + "solver_solve_time": 0.050502125, + "problem_class": "SDP" + } + }, + { + "id": 2231, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:36", + "solve_time": 10.462555885314941, + "status": "OPTIMAL", + "primal_objective_value": -63.477086010464404, + "dual_objective_value": -63.47708753548431, + "duality_gap": 1.5250199041361157e-06, + "primal_infeasibility": 1.2905179494861903e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2232, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:20:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2233, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:22:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2234, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:22:49", + "solve_time": 8.415114879608154, + "status": "OPTIMAL", + "primal_objective_value": -63.477143052691204, + "dual_objective_value": -63.47716632190371, + "duality_gap": 2.3269212505283576e-05, + "primal_infeasibility": 1.793398850777613e-07, + "dual_infeasibility": 5.95964349077978e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 6.774055375, + "problem_class": "SDP" + } + }, + { + "id": 2235, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:23:05", + "solve_time": 14.341548681259155, + "status": "OPTIMAL", + "primal_objective_value": -399.99999085524865, + "dual_objective_value": -400.0000000516816, + "duality_gap": 9.196432927183196e-06, + "primal_infeasibility": 2.8791527184913406e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2236, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:23:21", + "solve_time": 14.389510154724121, + "status": "OPTIMAL", + "primal_objective_value": -399.99997518390705, + "dual_objective_value": -399.9999722019107, + "duality_gap": -2.9819963742738764e-06, + "primal_infeasibility": 1.837354544732748e-08, + "dual_infeasibility": 1.1691283350191018e-10, + "iterations": 11, + "memo": { + "solver_solve_time": 4.544505209, + "problem_class": "SDP" + } + }, + { + "id": 2237, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:25:22", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2238, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "thetaG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:27:22", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2239, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:15", + "solve_time": 14.232115983963013, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.405828291, + "problem_class": "SOCP" + } + }, + { + "id": 2240, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:56", + "solve_time": 41.28279995918274, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.0507029966950411, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.7150846669879644e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2241, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2242, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2243, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2244, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:30:15", + "solve_time": 16.22143793106079, + "status": "OPTIMAL", + "primal_objective_value": -13.012270674838557, + "dual_objective_value": -13.012270674894536, + "duality_gap": 5.597833308002009e-11, + "primal_infeasibility": 9.914510380006027e-14, + "dual_infeasibility": 1.864666515247642e-13, + "iterations": 19, + "memo": { + "solver_solve_time": 0.486653083, + "problem_class": "SOCP" + } + }, + { + "id": 2245, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:19", + "solve_time": 63.724217653274536, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -12.992534672909207, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 2.152895408237386e-05, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2246, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2247, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2248, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2249, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:55", + "solve_time": 33.70647716522217, + "status": "OPTIMAL", + "primal_objective_value": -1.628971980389783, + "dual_objective_value": -1.628971980444936, + "duality_gap": 5.515299328351375e-11, + "primal_infeasibility": 2.4371980356500406e-14, + "dual_infeasibility": 1.125402358419654e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.43927575, + "problem_class": "SOCP" + } + }, + { + "id": 2250, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:55", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2251, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2252, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2253, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2254, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:34:14", + "solve_time": 16.770871877670288, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951119546298, + "dual_objective_value": -0.10256951120226779, + "duality_gap": 6.804806718108125e-12, + "primal_infeasibility": 3.092966674770312e-14, + "dual_infeasibility": 2.36811594750051e-13, + "iterations": 13, + "memo": { + "solver_solve_time": 0.335756291, + "problem_class": "SOCP" + } + }, + { + "id": 2255, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:05", + "solve_time": 50.646941900253296, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.1025668967864537, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.098899869826144e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2256, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2257, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2258, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "nb_L2_bessel", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2259, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2260, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2261, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2262, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2263, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "bm1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2264, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2265, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2266, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2267, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2268, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2269, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2270, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2271, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2272, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2273, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "copo23", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2274, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "maxG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:37:55", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2275, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:39:35", + "solve_time": 99.81731796264648, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1092.4922416744214, + "dual_objective_value": 1092.544894125871, + "duality_gap": -0.05265245144960318, + "primal_infeasibility": 4.2353434666135e-07, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 99.759706791, + "problem_class": "SDP" + } + }, + { + "id": 2276, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:41:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2277, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "ss30", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:43:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2278, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:44:58", + "solve_time": 79.17252993583679, + "status": "OPTIMAL", + "primal_objective_value": 133.206451029218, + "dual_objective_value": 133.20645457503971, + "duality_gap": -3.5458217269024317e-06, + "primal_infeasibility": 1.8067377045067828e-06, + "dual_infeasibility": 0.0026439582371736107, + "iterations": 91025, + "memo": { + "solver_solve_time": 78.408837208, + "problem_class": "SDP" + } + }, + { + "id": 2279, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:46:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2280, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:47:05", + "solve_time": 1.3373730182647705, + "status": "OPTIMAL", + "primal_objective_value": 133.114594530196, + "dual_objective_value": 133.1145927303965, + "duality_gap": 1.7997994916640891e-06, + "primal_infeasibility": 7.29630106610369e-11, + "dual_infeasibility": 2.0041498867041285e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2281, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:49:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2282, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:30:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2283, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:30:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2284, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2285, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:01", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2286, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2287, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2288, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2289, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2290, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2291, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2292, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2293, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2294, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2295, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2296, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:16", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2297, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:17", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2298, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2299, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2300, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2301, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2302, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2303, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2304, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2305, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2306, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2307, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2308, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2309, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2310, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2311, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2312, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2313, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2314, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2315, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2316, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2317, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2318, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2319, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2320, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2321, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2322, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2323, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2324, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:45", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2325, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:46", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2326, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:47", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2327, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2328, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2329, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2330, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2331, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2332, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2333, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2334, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2335, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:01", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2336, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2337, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2338, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2339, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2340, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2341, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2342, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2343, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2344, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2345, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:17", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2346, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2347, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2348, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2349, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2350, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2351, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss5_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2352, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2353, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2354, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2355, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2356, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2357, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2358, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2359, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2360, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2361, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2362, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2363, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2364, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2365, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2366, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2367, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2368, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2369, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2370, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2371, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp124-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:16", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2372, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:17", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2373, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2374, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2375, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2376, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2377, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2378, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2379, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2380, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2381, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2382, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2383, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2384, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2385, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2386, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2387, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2388, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2389, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2390, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2391, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp250-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:34", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2392, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2393, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2394, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2395, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2396, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2397, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2398, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2399, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2400, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2401, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp250-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2402, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2403, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:45", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2404, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:46", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2405, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2406, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2407, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2408, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2409, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2410, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2411, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2412, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2413, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2414, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2415, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2416, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2417, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2418, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:01", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2419, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2420, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2421, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2422, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:59:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2423, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp30", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:01:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2424, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:03:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2425, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:15:08", + "solve_time": 41.56452298164368, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 22:14:26 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:14:26 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:14:26 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:14:26 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - python_solver_runner - INFO - Solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - solver_cvxpy_ecos - INFO - Initialized CVXPY solver 'cvxpy_ecos' with backend 'ECOS'\n2025-08-05 22:14:26 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:14:27 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:14:27 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 2426, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:15:49", + "solve_time": 40.53333306312561, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 22:15:09 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:15:09 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:15:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:15:09 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - python_solver_runner - INFO - Solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - solver_cvxpy_scip - INFO - Initialized CVXPY solver 'cvxpy_scip' with backend 'SCIP'\n2025-08-05 22:15:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:15:09 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:15:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 2427, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:18:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2428, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:20:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2429, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:22:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2430, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:24:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2431, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:45:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2432, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:47:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2433, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:49:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2434, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:51:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2435, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:53:06", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2436, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "qssp60", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:06", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2437, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:08", + "solve_time": 1.6577939987182617, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 2438, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:15", + "solve_time": 5.086763620376587, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 93.815155585729, + "dual_objective_value": 93.8151556507703, + "duality_gap": -6.504129146378546e-08, + "primal_infeasibility": 3.347342476175021e-07, + "dual_infeasibility": 3.756812771549544, + "iterations": 60, + "memo": { + "solver_solve_time": 2.264175291, + "problem_class": "SOCP" + } + } + ] +} \ No newline at end of file diff --git a/docs/pages/data/benchmark_results_latest.csv b/docs/pages/data/benchmark_results_latest.csv new file mode 100644 index 0000000..79a9447 --- /dev/null +++ b/docs/pages/data/benchmark_results_latest.csv @@ -0,0 +1,1321 @@ +id,solver_name,solver_version,problem_library,problem_name,problem_type,environment_info,commit_hash,timestamp,solve_time,status,primal_objective_value,dual_objective_value,duality_gap,primal_infeasibility,dual_infeasibility,iterations,memo +1896,cvxpy_clarabel,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:20:43,30.604387998580933,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-03 23:20:13 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:20:13 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:20:13 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:20:13 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:20:13 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:20:13 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:20:13 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)"", ""problem_class"": ""SDP""}" +1897,cvxpy_cvxopt,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:23:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2259,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2261,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2262,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2260,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1898,cvxpy_scs,unknown,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:26:26,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1720,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:29:14,121.13185501098633,OPTIMAL,23.439818974587567,23.439818435224183,5.393633841777046e-07,1.589519974455338e-11,4.7948349842514454e-14,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1662,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:50,7.386539916666667,NUM_ERROR,23.439854216116014,23.439818538353734,3.5677762280528214e-05,8.672790954165753e-13,3.574491428937259e-12,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""num_error"", ""solve_time"": 7.386539916666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 23.439854216116014, ""dual_objective_value"": 23.439818538353734, ""duality_gap"": 3.5677762280528214e-05, ""primal_infeasibility"": 8.672790954165753e-13, ""dual_infeasibility"": 3.574491428937259e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1456,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:04,54.54148845833333,NUM_ERROR,23.44598268573775,24.309815518761912,0.863832833024162,3.19198625458438e-06,3.967426777597085e-06,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 54.54148845833333, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 23.44598268573775, ""dual_objective_value"": 24.309815518761912, ""duality_gap"": 0.863832833024162, ""primal_infeasibility"": 3.19198625458438e-06, ""dual_infeasibility"": 3.967426777597085e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2263,scipy_linprog,scipy-1.15.3,DIMACS,bm1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1900,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:52,0.22959208488464355,OPTIMAL (INACCURATE),-1.6401068919646988e-08,-3.033602862628601e-08,1.3934959706639019e-08,7.24230986971135e-09,0.0,14,"{""solver_solve_time"": 0.18366492, ""problem_class"": ""SDP""}" +1901,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:54,2.192477226257324,OPTIMAL,-2.497696811876171e-08,-3.94442290703259e-08,1.4467260951564188e-08,7.720817848199098e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2264,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2266,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2267,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2265,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1902,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:55,0.1000521183013916,OPTIMAL,2.763797219494657e-06,6.008903171780412e-07,2.1629069023166157e-06,5.79374368893745e-07,2.176976834364473e-09,275,"{""solver_solve_time"": 0.054842958000000004, ""problem_class"": ""SDP""}" +1899,cvxpy_sdpa,unknown,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:51,0.19372987747192383,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1590,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:15,0.8339302916666667,OPTIMAL,3.052785142731995e-10,-8.226008756477171e-10,1.1278793899209166e-09,8.989166660748627e-12,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8339302916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 3.052785142731995e-10, ""dual_objective_value"": -8.226008756477171e-10, ""duality_gap"": 1.1278793899209166e-09, ""primal_infeasibility"": 8.989166660748627e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1459,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:18,0.6905710833333333,OPTIMAL,-6.648659598568196e-09,-6.63208127634892e-09,1.6578322219276284e-11,1.912548723169372e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6905710833333333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -6.648659598568196e-09, ""dual_objective_value"": -6.63208127634892e-09, ""duality_gap"": 1.6578322219276284e-11, ""primal_infeasibility"": 1.912548723169372e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2268,scipy_linprog,scipy-1.15.3,DIMACS,copo14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1904,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:28:02,4.074679136276245,OPTIMAL (INACCURATE),-4.4884696204575136e-08,-6.567172048617617e-08,2.0787024281601034e-08,1.0638153482222468e-08,0.0,16,"{""solver_solve_time"": 3.131591457, ""problem_class"": ""SDP""}" +1905,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:29:02,58.70020890235901,OPTIMAL,-2.4827762840420875e-08,-3.392721178555364e-08,9.099448945132768e-09,4.740723896523209e-09,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2269,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2271,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2272,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2270,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1906,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:29:05,1.2210209369659424,OPTIMAL,-7.956279965304347e-06,-3.197190700468751e-06,-4.759089264835596e-06,2.804389571931542e-06,8.648485158449915e-09,300,"{""solver_solve_time"": 0.276767833, ""problem_class"": ""SDP""}" +1903,cvxpy_sdpa,unknown,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:27:57,1.9144980907440186,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1591,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:27,6.8528615,OPTIMAL,2.1934585398009077e-10,-5.412207421364536e-10,7.605665961165443e-10,4.353859708422998e-12,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.8528615, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 2.1934585398009077e-10, ""dual_objective_value"": -5.412207421364536e-10, ""duality_gap"": 7.605665961165443e-10, ""primal_infeasibility"": 4.353859708422998e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1460,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:12:46,23.723182375,OPTIMAL,-1.8940067866499155e-08,-1.8927203322356983e-08,1.2864544142172114e-11,3.257627120427927e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 23.723182375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1.8940067866499155e-08, ""dual_objective_value"": -1.8927203322356983e-08, ""duality_gap"": 1.2864544142172114e-11, ""primal_infeasibility"": 3.257627120427927e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:12:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2273,scipy_linprog,scipy-1.15.3,DIMACS,copo23,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1908,cvxpy_clarabel,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:32:13,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1909,cvxpy_cvxopt,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:34:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1798,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1736,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1737,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1799,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1910,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:35:56,89.28411173820496,OPTIMAL,10.797895540459592,10.797826537085669,6.900337392323763e-05,6.245639123478367e-08,5.5257728472699056e-14,16325,"{""solver_solve_time"": 79.354613125, ""problem_class"": ""SDP""}" +1907,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:30:13,65.82996416091919,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1819,matlab_sdpt3,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""86bfae9b39861dd3a3303c878d8ee30e9a970bb6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",86bfae9b39861dd3a3303c878d8ee30e9a970bb6,2025-07-22T15:24:49,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1461,matlab_sedumi,unknown,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:54:06,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1738,scipy_linprog,scipy-1.15.3,DIMACS,fap09,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:36:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1912,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:39,1.3734347820281982,OPTIMAL (INACCURATE),1.4161020106468114,1.4161020228518586,-1.2205047195124052e-08,1.1274549784995933e-06,6.106204455194476e-09,31,"{""solver_solve_time"": 1.344283376, ""problem_class"": ""SDP""}" +1913,cvxpy_cvxopt,unknown,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:46,6.713871002197266,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1800,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1763,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1764,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1801,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1914,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:17,30.740686178207397,OPTIMAL (INACCURATE),1.409073703261462,1.4090806844233812,-6.981161919217271e-06,7.523837266388142e-05,3.375321326271274e-05,100000,"{""solver_solve_time"": 30.709408041, ""problem_class"": ""SDP""}" +1911,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:36:37,39.79374122619629,OPTIMAL (INACCURATE),1.4161295151451585,1.4161284417476618,1.0733974966647963e-06,3.529475717602551e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1592,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:35,3.385503375,MAX_ITER,1.4161291196982995,1.416128628065133,4.916331663995521e-07,7.938472564250578e-08,0.0,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 3.385503375, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 1.4161291196982995, ""dual_objective_value"": 1.416128628065133, ""duality_gap"": 4.916331663995521e-07, ""primal_infeasibility"": 7.938472564250578e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1466,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:07,0.8317842916666667,OPTIMAL,1.416129455716613,1.4161294580694332,2.3528201609224197e-09,1.2528510194570304e-09,1.5300296534754392e-08,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8317842916666667, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": 1.416129455716613, ""dual_objective_value"": 1.4161294580694332, ""duality_gap"": 2.3528201609224197e-09, ""primal_infeasibility"": 1.2528510194570304e-09, ""dual_infeasibility"": 1.5300296534754392e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1765,scipy_linprog,scipy-1.15.3,DIMACS,filter48,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1920,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:39,20.023534059524536,OPTIMAL,-42.66666667203015,-42.66666666625962,-5.770530719928502e-09,1.8842178928241884e-09,8.196094314750425e-14,6,"{""solver_solve_time"": 19.974756208, ""problem_class"": ""SDP""}" +1921,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:46,5.853014945983887,OPTIMAL,-42.666666408791805,-42.66666641006614,1.2743370803036669e-09,3.3836883209684965e-16,4.956901572407782e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +418,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +419,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +420,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +421,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1922,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:47,0.27846193313598633,OPTIMAL,-42.66663809919346,-42.666691827474416,5.3728280953180274e-05,3.823840598620477e-07,0.0,150,"{""solver_solve_time"": 0.228795458, ""problem_class"": ""SDP""}" +1919,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:19,0.5973911285400391,OPTIMAL,-42.66666466059041,-42.66666774012631,3.0795358938462414e-06,4.494236949271214e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1710,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:42:19,1.0727401666666667,OPTIMAL,-42.66666606990655,-42.66666679075191,7.208453638440915e-07,1.0369985582790911e-10,0.0,8,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0727401666666667, ""setup_time"": [], ""iterations"": 8, ""primal_objective_value"": -42.66666606990655, ""dual_objective_value"": -42.66666679075191, ""duality_gap"": 7.208453638440915e-07, ""primal_infeasibility"": 1.0369985582790911e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:42:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1577,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:22:59,5.317319375,OPTIMAL,-42.666666707488446,-42.66666670384585,3.6425973348741536e-09,2.7680298055873787e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 5.317319375, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -42.666666707488446, ""dual_objective_value"": -42.66666670384585, ""duality_gap"": 3.6425973348741536e-09, ""primal_infeasibility"": 2.7680298055873787e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:22:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +422,scipy_linprog,scipy-1.15.3,DIMACS,hamming_7_5_6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:45:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1924,cvxpy_clarabel,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:44:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1925,cvxpy_cvxopt,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:46:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +428,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +429,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +430,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +431,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1926,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:47:01,5.457653045654297,OPTIMAL,-25.599995287166273,-25.599994400951143,-8.862151297250875e-07,8.066216926898107e-08,1.0420348665432626e-09,225,"{""solver_solve_time"": 2.095184666, ""problem_class"": ""SDP""}" +1923,cvxpy_sdpa,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:42:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1711,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:44:56,151.334371,OPTIMAL,-25.599999843331616,-25.600000096699134,2.5336751718896267e-07,3.1121343206556096e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 151.334371, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -25.599999843331616, ""dual_objective_value"": -25.600000096699134, ""duality_gap"": 2.5336751718896267e-07, ""primal_infeasibility"": 3.1121343206556096e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:44:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1927,matlab_sedumi,unknown,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:50:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +432,scipy_linprog,scipy-1.15.3,DIMACS,hamming_8_3_4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1916,cvxpy_clarabel,unknown,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:50,25.861373901367188,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-03 23:37:25 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:37:25 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:37:25 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:37:25 - python_solver_runner - INFO - Subprocess solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - python_solver_runner - INFO - Solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:37:25 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/HAMMING/hamming_9_8.mat.gz\n2025-08-03 23:37:25 - mat_loader - INFO - Converted hamming_9_8: SDP problem (262144 vars, 2305 constraints)\n2025-08-03 23:37:25 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='hamming_9_8', class='SDP', 262144 vars, 2305 constraints)"", ""problem_class"": ""SDP""}" +1917,cvxpy_cvxopt,unknown,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:39:51,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1806,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +403,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +404,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1807,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1918,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:40:18,22.157066822052002,OPTIMAL,-224.0003222026227,-224.00037351826538,5.131564267912836e-05,5.492586278581966e-07,1.2811657673655026e-08,325,"{""solver_solve_time"": 21.2309355, ""problem_class"": ""SDP""}" +1915,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:37:24,2.5426599979400635,OPTIMAL,-223.99999657347732,-224.00000195439648,5.380919162689679e-06,7.830681581889643e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1714,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:46:48,2.2588253333333332,OPTIMAL,-223.99999755382208,-224.00000119657497,3.642752886889866e-06,3.435419260401472e-11,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.2588253333333332, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": -223.99999755382208, ""dual_objective_value"": -224.00000119657497, ""duality_gap"": 3.642752886889866e-06, ""primal_infeasibility"": 3.435419260401472e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:46:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1579,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:36:22,26.297596458333334,OPTIMAL,-224.00000026429433,-224.00000011609177,1.4820255955783068e-07,5.2487088009421366e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 26.297596458333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -224.00000026429433, ""dual_objective_value"": -224.00000011609177, ""duality_gap"": 1.4820255955783068e-07, ""primal_infeasibility"": 5.2487088009421366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:36:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +406,scipy_linprog,scipy-1.15.3,DIMACS,hamming_9_8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:30:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +945,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35,0.01759481430053711,OPTIMAL,-5.925342226589732e-05,-5.925213757701722e-05,-1.284688880104324e-09,1.639363195032902e-05,0.0,44,"{""solver_solve_time"": 0.014165622, ""problem_class"": ""SDP""}" +946,cvxpy_cvxopt,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:35,0.3677828311920166,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +949,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +950,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +951,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +952,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +947,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37,1.846771001815796,OPTIMAL (INACCURATE),-0.9141614331465502,-0.8869089226495065,-0.02725251049704369,8.264335179641823e-08,1.6865610824784975e-07,100000,"{""solver_solve_time"": 1.842922833, ""problem_class"": ""SDP""}" +948,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:37,0.013288259506225586,OPTIMAL (INACCURATE),-26.284632319814868,-3.218852415953317,-23.06577990386155,0.0002664963558692289,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1595,matlab_sdpt3,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:54,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1469,matlab_sedumi,unknown,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:24,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +953,scipy_linprog,scipy-1.15.3,DIMACS,hinf12,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:25:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1945,cvxpy_clarabel,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:12,0.01569819450378418,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1946,cvxpy_cvxopt,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:12,0.08118486404418945,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +452,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +453,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +454,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +455,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1947,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:16,2.8234028816223145,OPTIMAL (INACCURATE),-30.338550211015605,-30.33799946764806,-0.0005507433675440154,5.355649271250418e-06,9.237317500777047e-05,100000,"{""solver_solve_time"": 2.818600625, ""problem_class"": ""SDP""}" +1944,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:11,0.011476993560791016,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1596,matlab_sdpt3,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:59,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +1470,matlab_sedumi,unknown,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:29,,ERROR,,,,,,,"{""error_message"": ""MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer"", ""problem_class"": ""SDP""}" +456,scipy_linprog,scipy-1.15.3,DIMACS,hinf13,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T15:57:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1941,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:51,1.4263319969177246,OPTIMAL (INACCURATE),5.966248462567837,5.966249544813763,-1.0822459266535134e-06,9.701486038460028e-07,0.0,38,"{""solver_solve_time"": 1.422955625, ""problem_class"": ""SDP""}" +1942,cvxpy_cvxopt,unknown,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:52,0.5794229507446289,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1804,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +394,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +395,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1805,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1943,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:00:11,18.53073477745056,OPTIMAL (INACCURATE),5.942591741517748,5.94744385187505,-0.004852110357302486,1.128928529831279e-06,0.0,100000,"{""solver_solve_time"": 18.527219582999997, ""problem_class"": ""SDP""}" +1940,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:49,0.1397390365600586,OPTIMAL (INACCURATE),5.9713171314052325,5.976935592929294,-0.0056184615240617575,1.08915726239491e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1594,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:59:49,0.9657167916666667,UNKNOWN,5.992654461591593,5.981017465497352,0.01163699609424107,2.6102968408925996e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.9657167916666667, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 5.992654461591593, ""dual_objective_value"": 5.981017465497352, ""duality_gap"": 0.01163699609424107, ""primal_infeasibility"": 2.6102968408925996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:59:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1468,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:19,0.5304792916666666,NUM_ERROR,5.981957450464189,5.982166011101507,0.00020856063731766739,7.963841922701557e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5304792916666666, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 5.981957450464189, ""dual_objective_value"": 5.982166011101507, ""duality_gap"": 0.00020856063731766739, ""primal_infeasibility"": 7.963841922701557e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +399,scipy_linprog,scipy-1.15.3,DIMACS,minphase,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-13T14:53:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1929,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:53:45,13.879996299743652,OPTIMAL,-0.05070309464830916,-0.05070309464849496,1.8580276206492385e-13,7.801537245867477e-11,1.057716256457834e-13,21,"{""solver_solve_time"": 0.560254416, ""problem_class"": ""SOCP""}" +1930,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:00,14.256758213043213,OPTIMAL,-0.05070309466231132,-0.05070309469591302,3.360169781307931e-11,1.5016518474646274e-08,1.6949506707727528e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2239,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:15,14.232115983963013,OPTIMAL,-0.05070309464830582,-0.050703094648322636,1.6812939929167214e-14,2.4262814386207304e-12,5.091116743383869e-14,20,"{""solver_solve_time"": 0.405828291, ""problem_class"": ""SOCP""}" +2241,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2242,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2240,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:56,41.28279995918274,OPTIMAL,,-0.0507029966950411,,,1.7150846669879644e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1931,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:16,15.138136148452759,OPTIMAL,-0.050702584699806943,-0.05070061603883091,-1.9686609760358187e-06,2.472512073576291e-05,1.3696595465415478e-05,5425,"{""solver_solve_time"": 1.636159833, ""problem_class"": ""SOCP""}" +1928,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:53:31,28.02113676071167,OPTIMAL (INACCURATE),-0.002033656695857644,-1.8772174263594055,1.8751837696635478,0.16647016188566816,3.539291082432821e-11,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1584,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:40,0.96570575,OPTIMAL,-0.05070308578560933,-0.050703094832485564,9.046876234264367e-09,1.59782982293915e-10,1.4016403840157828e-09,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.96570575, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -0.05070308578560933, ""dual_objective_value"": -0.050703094832485564, ""duality_gap"": 9.046876234264367e-09, ""primal_infeasibility"": 1.59782982293915e-10, ""dual_infeasibility"": 1.4016403840157828e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1452,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:47,0.5915824583333333,OPTIMAL,-0.05070309464513528,-0.05070309464949991,4.364626715602782e-12,2.6686184534778507e-11,1.8115531992636216e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5915824583333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -0.05070309464513528, ""dual_objective_value"": -0.05070309464949991, ""duality_gap"": 4.364626715602782e-12, ""primal_infeasibility"": 2.6686184534778507e-11, ""dual_infeasibility"": 1.8115531992636216e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +2243,scipy_linprog,scipy-1.15.3,DIMACS,nb,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:29:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1933,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:08,16.364571809768677,OPTIMAL,-13.012270670036738,-13.012270672238593,2.20185469856915e-09,5.357543858712498e-15,1.1266917166933884e-12,17,"{""solver_solve_time"": 0.541514415, ""problem_class"": ""SOCP""}" +1934,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:26,17.51340913772583,OPTIMAL,-13.012270260650567,-13.012270457304474,1.9665390738055066e-07,7.285115451032123e-13,9.002595409515661e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2244,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:30:15,16.22143793106079,OPTIMAL,-13.012270674838557,-13.012270674894536,5.597833308002009e-11,9.914510380006027e-14,1.864666515247642e-13,19,"{""solver_solve_time"": 0.486653083, ""problem_class"": ""SOCP""}" +2246,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2247,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2245,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:19,63.724217653274536,OPTIMAL,,-12.992534672909207,,,2.152895408237386e-05,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1935,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:55:49,21.878592014312744,OPTIMAL,-13.01223863583072,-13.01220020450462,-3.843132610015232e-05,7.134210269620723e-06,1.0320214770561878e-06,20575,"{""solver_solve_time"": 6.393365458, ""problem_class"": ""SOCP""}" +1932,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:54:51,35.24684810638428,OPTIMAL,-13.012153111134214,-13.012153111134237,2.3092638912203256e-14,0.09539745847209875,5.092853585115458e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1585,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:47,1.7669237083333333,OPTIMAL,-13.012270587360916,-13.012270701517188,1.1415627199085066e-07,5.912533758053113e-11,1.1086499606208974e-11,35,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.7669237083333333, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -13.012270587360916, ""dual_objective_value"": -13.012270701517188, ""duality_gap"": 1.1415627199085066e-07, ""primal_infeasibility"": 5.912533758053113e-11, ""dual_infeasibility"": 1.1086499606208974e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1453,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:53,0.8812795416666667,OPTIMAL,-13.012270029385133,-13.012270026410215,2.9749180896487815e-09,1.5604221692182964e-10,2.645992296428134e-10,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8812795416666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -13.012270029385133, ""dual_objective_value"": -13.012270026410215, ""duality_gap"": 2.9749180896487815e-09, ""primal_infeasibility"": 1.5604221692182964e-10, ""dual_infeasibility"": 2.645992296428134e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +2248,scipy_linprog,scipy-1.15.3,DIMACS,nb_L1,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1937,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:58:25,35.35643529891968,OPTIMAL,-1.6289719788841075,-1.6289719808523724,1.9682648844110417e-09,6.289904981982145e-12,4.939640235768386e-13,12,"{""solver_solve_time"": 1.202414625, ""problem_class"": ""SOCP""}" +1938,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:07,41.317997217178345,OPTIMAL,-1.6289717401048371,-1.628971989187589,2.490827517576122e-07,1.2771965700046602e-09,5.012498098520504e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2249,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:31:55,33.70647716522217,OPTIMAL,-1.628971980389783,-1.628971980444936,5.515299328351375e-11,2.4371980356500406e-14,1.125402358419654e-11,11,"{""solver_solve_time"": 0.43927575, ""problem_class"": ""SOCP""}" +2251,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2252,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2250,cvxpy_scip,unknown,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1939,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:59:48,40.14570212364197,OPTIMAL,-1.6289712152465583,-1.6289817153541597,1.0500107601396635e-05,2.121405856474299e-05,2.3664912021212606e-07,775,"{""solver_solve_time"": 0.5064915409999999, ""problem_class"": ""SOCP""}" +1936,cvxpy_sdpa,unknown,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T14:57:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1586,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:52,0.9697343333333334,OPTIMAL,-1.6289719758296834,-1.6289719649739611,1.0855722321068129e-08,1.2364826274510168e-10,2.3874355910020744e-10,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9697343333333334, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -1.6289719758296834, ""dual_objective_value"": -1.6289719649739611, ""duality_gap"": 1.0855722321068129e-08, ""primal_infeasibility"": 1.2364826274510168e-10, ""dual_infeasibility"": 2.3874355910020744e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1454,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:10:58,0.602918625,OPTIMAL,-1.6289719586720264,-1.628971958012104,6.599223389969211e-10,3.7220915711599144e-11,1.8222941201475597e-10,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.602918625, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1.6289719586720264, ""dual_objective_value"": -1.628971958012104, ""duality_gap"": 6.599223389969211e-10, ""primal_infeasibility"": 3.7220915711599144e-11, ""dual_infeasibility"": 1.8222941201475597e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:10:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +2253,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:33:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1985,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:46:58,16.312734842300415,OPTIMAL,-0.10256951121188174,-0.10256951121204069,1.589561815507068e-13,8.039548008470551e-16,2.720397466104802e-14,14,"{""solver_solve_time"": 0.434549417, ""problem_class"": ""SOCP""}" +1986,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:47:15,16.37923502922058,OPTIMAL,-0.10256950565999576,-0.10256951114752975,5.487533996650917e-09,2.6441459719661748e-11,2.0332286620010367e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +2254,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:34:14,16.770871877670288,OPTIMAL,-0.10256951119546298,-0.10256951120226779,6.804806718108125e-12,3.092966674770312e-14,2.36811594750051e-13,13,"{""solver_solve_time"": 0.335756291, ""problem_class"": ""SOCP""}" +2256,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2257,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2255,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:05,50.646941900253296,OPTIMAL,,-0.1025668967864537,,,1.098899869826144e-07,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1987,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:47:33,17.0360369682312,OPTIMAL,-0.10256936649935693,-0.10257104661299753,1.6801136406008332e-06,3.1910805185769294e-05,1.891547527204477e-07,950,"{""solver_solve_time"": 0.306163208, ""problem_class"": ""SOCP""}" +1984,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:46:41,38.031092166900635,OPTIMAL (INACCURATE),-0.10256935572921497,-0.1025694147293237,5.9000108729168055e-08,2.8997429768473637e-07,3.76033631227958e-09,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1587,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:58:59,0.7735605,OPTIMAL,-0.10256950754836537,-0.10256951016133178,2.612966412685047e-09,7.249211116524449e-12,2.492579880231683e-10,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7735605, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -0.10256950754836537, ""dual_objective_value"": -0.10256951016133178, ""duality_gap"": 2.612966412685047e-09, ""primal_infeasibility"": 7.249211116524449e-12, ""dual_infeasibility"": 2.492579880231683e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:58:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1455,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T11:11:04,0.6093694583333333,OPTIMAL,-0.1025694979041563,-0.10256951119637202,1.3292215716997902e-08,2.856571488970491e-11,7.56900876485523e-13,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6093694583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.1025694979041563, ""dual_objective_value"": -0.10256951119637202, ""duality_gap"": 1.3292215716997902e-08, ""primal_infeasibility"": 2.856571488970491e-11, ""dual_infeasibility"": 7.56900876485523e-13, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 20:11:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +2258,scipy_linprog,scipy-1.15.3,DIMACS,nb_L2_bessel,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:35:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1957,cvxpy_clarabel,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:11:56,39.67093467712402,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:11:17 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:17 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:17 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:17 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - python_solver_runner - INFO - Solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:11:17 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:17 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:17 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1958,cvxpy_cvxopt,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:12:38,41.05316877365112,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:11:57 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:57 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:57 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:57 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - python_solver_runner - INFO - Solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:11:57 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:58 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:58 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +2425,cvxpy_ecos,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:15:08,41.56452298164368,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 22:14:26 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:14:26 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:14:26 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:14:26 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - python_solver_runner - INFO - Solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - solver_cvxpy_ecos - INFO - Initialized CVXPY solver 'cvxpy_ecos' with backend 'ECOS'\n2025-08-05 22:14:26 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:14:27 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:14:27 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +476,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +477,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2426,cvxpy_scip,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:15:49,40.53333306312561,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 22:15:09 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:15:09 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:15:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:15:09 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - python_solver_runner - INFO - Solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - solver_cvxpy_scip - INFO - Initialized CVXPY solver 'cvxpy_scip' with backend 'SCIP'\n2025-08-05 22:15:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:15:09 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:15:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1959,cvxpy_scs,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:13:19,40.40824317932129,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:12:39 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:12:39 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:12:39 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:12:39 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - python_solver_runner - INFO - Solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:12:39 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:12:39 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:12:39 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1956,cvxpy_sdpa,unknown,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:11:16,55.10064911842346,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:10:21 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:10:21 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:10:21 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:10:21 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_sdpa\n2025-08-04 00:10:21 - python_solver_runner - INFO - Solving nql180 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:10:21 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:10:21 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:10:21 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:10:21 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)"", ""problem_class"": ""SOCP""}" +1664,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:46,36.740298708333334,OPTIMAL,-0.9277286131116571,-0.927728620913157,7.801499890547348e-09,5.4916733095581286e-11,1.161702398637029e-12,58,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 36.740298708333334, ""setup_time"": [], ""iterations"": 58, ""primal_objective_value"": -0.9277286131116571, ""dual_objective_value"": -0.927728620913157, ""duality_gap"": 7.801499890547348e-09, ""primal_infeasibility"": 5.4916733095581286e-11, ""dual_infeasibility"": 1.161702398637029e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:16:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1532,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:38,12.182909208333333,OPTIMAL,-0.9277236542726338,-0.9277138968827718,9.757389861975163e-06,1.0298591375138612e-09,1.071058841986682e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 12.182909208333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -0.9277236542726338, ""dual_objective_value"": -0.9277138968827718, ""duality_gap"": 9.757389861975163e-06, ""primal_infeasibility"": 1.0298591375138612e-09, ""dual_infeasibility"": 1.071058841986682e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +478,scipy_linprog,scipy-1.15.3,DIMACS,nql180,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:27:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1949,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:31,26.76625108718872,OPTIMAL,-0.9460280973730932,-0.9460280998223545,2.4492612382687184e-09,1.956251612313512e-08,1.3360942438602618e-08,15,"{""solver_solve_time"": 0.086608874, ""problem_class"": ""SOCP""}" +1950,cvxpy_cvxopt,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:56,24.00167489051819,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +467,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:10:22,21.114145040512085,OPTIMAL (INACCURATE),-0.9460284749224446,-0.9460284748518045,-7.064004936552237e-11,3.478855069906872e-11,8.506553783847303e-09,63,"{""solver_solve_time"": 0.339042, ""problem_class"": ""SOCP""}" +462,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +463,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:06:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +466,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:09:57,57.389968156814575,OPTIMAL,,-0.9316011995967092,,,0.0004163234009667355,,"{""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1951,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:02:20,23.52648687362671,OPTIMAL,-0.9460027956114715,-0.9459981676622777,-4.627949193758418e-06,2.900046732074137e-06,1.0668505768545404e-05,475,"{""solver_solve_time"": 0.17467137500000002, ""problem_class"": ""SOCP""}" +1948,cvxpy_sdpa,unknown,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:01:04,47.52529978752136,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1649,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:39,0.9404508333333333,OPTIMAL,-0.9460284865934897,-0.9460284991390998,1.2545610106329264e-08,6.250873663071201e-11,2.95124542471296e-11,37,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9404508333333333, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -0.9460284865934897, ""dual_objective_value"": -0.9460284991390998, ""duality_gap"": 1.2545610106329264e-08, ""primal_infeasibility"": 6.250873663071201e-11, ""dual_infeasibility"": 2.95124542471296e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1519,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:15,0.4045484166666667,OPTIMAL,-0.9460278817820568,-0.9460275595123333,3.2226972346283134e-07,8.718969712675225e-10,1.4556998452282358e-08,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.4045484166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -0.9460278817820568, ""dual_objective_value"": -0.9460275595123333, ""duality_gap"": 3.2226972346283134e-07, ""primal_infeasibility"": 8.718969712675225e-10, ""dual_infeasibility"": 1.4556998452282358e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +468,scipy_linprog,scipy-1.15.3,DIMACS,nql30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:11:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1953,cvxpy_clarabel,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:06:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1954,cvxpy_cvxopt,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:08:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2435,cvxpy_ecos,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:53:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +471,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +472,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2422,cvxpy_scip,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:59:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1955,cvxpy_scs,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:10:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1952,cvxpy_sdpa,unknown,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:04:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1663,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:16:03,4.5348270416666665,OPTIMAL,-0.9350529216589623,-0.9350529430516714,2.1392709159684387e-08,4.568144423812863e-11,3.3090660555122834e-11,42,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 4.5348270416666665, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": -0.9350529216589623, ""dual_objective_value"": -0.9350529430516714, ""duality_gap"": 2.1392709159684387e-08, ""primal_infeasibility"": 4.568144423812863e-11, ""dual_infeasibility"": 3.3090660555122834e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:15:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1531,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:19,0.9663814166666667,OPTIMAL,-0.9350511855008967,-0.9350485012990968,2.6842017999406664e-06,5.844691781034275e-10,4.421947097574071e-08,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.9663814166666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -0.9350511855008967, ""dual_objective_value"": -0.9350485012990968, ""duality_gap"": 2.6842017999406664e-06, ""primal_infeasibility"": 5.844691781034275e-10, ""dual_infeasibility"": 4.421947097574071e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +473,scipy_linprog,scipy-1.15.3,DIMACS,nql60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T13:16:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1989,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:50:11,52.129913091659546,OPTIMAL,-6.496675072773684,-6.496675072817704,4.4019898837177607e-11,8.612756727893201e-10,3.714323041760762e-09,19,"{""solver_solve_time"": 0.124407211, ""problem_class"": ""SOCP""}" +1990,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:51:34,82.56687808036804,OPTIMAL,-6.496674199067025,-6.496674193174276,-5.892748511371337e-09,2.237809310520621e-09,8.622386895665068e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +514,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:31,52.14936709403992,OPTIMAL,-6.496675716987453,-6.496675716971549,-1.5903722783150442e-11,7.350808444749379e-13,7.798431676338478e-10,17,"{""solver_solve_time"": 0.17480625, ""problem_class"": ""SOCP""}" +515,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +516,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:07:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2423,cvxpy_scip,unknown,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:01:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1991,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:52:33,58.04234218597412,OPTIMAL,-6.496662894119256,-6.496659451196209,-3.4429230471033634e-06,8.634202940522347e-08,5.405298460172423e-06,14375,"{""solver_solve_time"": 5.14132375, ""problem_class"": ""SOCP""}" +1988,cvxpy_sdpa,unknown,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:49:18,105.0474328994751,ERROR,,,,,,,"{""error_message"": ""Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +1651,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:50,0.7027917083333334,UNKNOWN,-6.4966770139444625,-6.496675726860695,1.2870837675649227e-06,7.454748459602961e-09,2.2293203875515626e-08,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.7027917083333334, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -6.4966770139444625, ""dual_objective_value"": -6.496675726860695, ""duality_gap"": 1.2870837675649227e-06, ""primal_infeasibility"": 7.454748459602961e-09, ""dual_infeasibility"": 2.2293203875515626e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1521,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:27,0.49142,OPTIMAL,-6.49666909788267,-6.496669087168537,1.0714132692157818e-08,7.182734585341389e-10,3.7263864829751396e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.49142, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -6.49666909788267, ""dual_objective_value"": -6.496669087168537, ""duality_gap"": 1.0714132692157818e-08, ""primal_infeasibility"": 7.182734585341389e-10, ""dual_infeasibility"": 3.7263864829751396e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +519,scipy_linprog,scipy-1.15.3,DIMACS,qssp30,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:14:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1961,cvxpy_clarabel,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:17:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1962,cvxpy_cvxopt,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:19:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2436,cvxpy_ecos,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +522,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +523,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2424,cvxpy_scip,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:03:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1963,cvxpy_scs,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:21:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1960,cvxpy_sdpa,unknown,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:15:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1667,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:18:35,2.3680329166666665,UNKNOWN,-6.562707043774328,-6.562705418128809,1.625645518643637e-06,1.0393547981901797e-09,6.418055339037683e-08,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.3680329166666665, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -6.562707043774328, ""dual_objective_value"": -6.562705418128809, ""duality_gap"": 1.625645518643637e-06, ""primal_infeasibility"": 1.0393547981901797e-09, ""dual_infeasibility"": 6.418055339037683e-08, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:18:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1535,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:57:30,1.614889625,OPTIMAL,-6.562697214789513,-6.562697203156434,1.1633079388673195e-08,2.9305640450404797e-10,2.5921160736720044e-08,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.614889625, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -6.562697214789513, ""dual_objective_value"": -6.562697203156434, ""duality_gap"": 1.1633079388673195e-08, ""primal_infeasibility"": 2.9305640450404797e-10, ""dual_infeasibility"": 2.5921160736720044e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:57:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +524,scipy_linprog,scipy-1.15.3,DIMACS,qssp60,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T14:24:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2001,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:00:16,0.9231948852539062,OPTIMAL (INACCURATE),717367.9694302354,717367.9693405145,8.972093928605318e-05,0.4553377125041338,1.7972121515951058e-07,29,"{""solver_solve_time"": 0.389974875, ""problem_class"": ""SOCP""}" +2002,cvxpy_cvxopt,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:02:16,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +559,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,1.4604618549346924,OPTIMAL (INACCURATE),717387.6566034524,717387.6570615877,-0.0004581352695822716,0.010368232231233494,0.0016076899929897248,70,"{""solver_solve_time"": 0.888042958, ""problem_class"": ""SOCP""}" +560,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +561,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2429,cvxpy_scip,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:22:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2003,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:03:26,69.41161584854126,OPTIMAL (INACCURATE),1426694.15480458,1426060.9124832153,633.2423213645816,4.495169240132521,668608.3395679782,100000,"{""solver_solve_time"": 68.767482125, ""problem_class"": ""SOCP""}" +2000,cvxpy_sdpa,unknown,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:00:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1669,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:33,2.528989458333333,UNKNOWN,717664.7819529852,717343.935387326,320.84656565915793,1.4635089779954944e-05,0.0,30,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.528989458333333, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": 717664.7819529852, ""dual_objective_value"": 717343.935387326, ""duality_gap"": 320.84656565915793, ""primal_infeasibility"": 1.4635089779954944e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1538,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:23,3.3865474583333333,NUM_ERROR,717367.7873780461,717367.7875279884,0.0001499423524364829,3.2577166049237135e-05,3.822526277112251e-09,101,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.3865474583333333, ""setup_time"": [], ""iterations"": 101, ""primal_objective_value"": 717367.7873780461, ""dual_objective_value"": 717367.7875279884, ""duality_gap"": 0.0001499423524364829, ""primal_infeasibility"": 3.2577166049237135e-05, ""dual_infeasibility"": 3.822526277112251e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +562,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T22:24:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1965,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:23:21,0.8148598670959473,OPTIMAL (INACCURATE),27.33078559493936,27.33078559493853,8.313350008393172e-13,1.5053374900925652e-05,8.190909865691049e-11,27,"{""solver_solve_time"": 0.414034665, ""problem_class"": ""SOCP""}" +1966,cvxpy_cvxopt,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:25:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2437,cvxpy_ecos,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:08,1.6577939987182617,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +594,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +595,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2433,cvxpy_scip,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:49:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1967,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:26:33,70.47928071022034,OPTIMAL (INACCURATE),27.432528450175983,27.432503791282166,2.4658893817530725e-05,0.00020653158969344076,0.019105119199777195,100000,"{""solver_solve_time"": 70.04146987499999, ""problem_class"": ""SOCP""}" +1964,cvxpy_sdpa,unknown,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:23:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1671,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:52,1.908151625,UNKNOWN,27.33080258413944,27.33078486456531,1.7719574131547233e-05,9.835491261168821e-09,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.908151625, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 27.33080258413944, ""dual_objective_value"": 27.33078486456531, ""duality_gap"": 1.7719574131547233e-05, ""primal_infeasibility"": 9.835491261168821e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1540,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:45,1.767578,OPTIMAL,27.33078560261699,27.330794117006498,8.5143895063311e-06,2.148011155839875e-08,7.094423477282984e-11,60,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.767578, ""setup_time"": [], ""iterations"": 60, ""primal_objective_value"": 27.33078560261699, ""dual_objective_value"": 27.330794117006498, ""duality_gap"": 8.5143895063311e-06, ""primal_infeasibility"": 2.148011155839875e-08, ""dual_infeasibility"": 7.094423477282984e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +596,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:33:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1997,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:55:55,0.3930230140686035,OPTIMAL (INACCURATE),181889.9302235155,181889.93017808485,4.543064278550446e-05,0.20507020561906186,1.6535033732446265e-07,30,"{""solver_solve_time"": 0.211994998, ""problem_class"": ""SOCP""}" +1998,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:57:36,99.64534091949463,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +551,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:08,0.4621720314025879,OPTIMAL (INACCURATE),181889.9476437784,181889.94765594476,-1.216636155731976e-05,0.3529266178870372,2.339171186358583e-05,40,"{""solver_solve_time"": 0.267833375, ""problem_class"": ""SOCP""}" +552,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +553,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:52:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2428,cvxpy_scip,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:20:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1999,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:58:14,37.75173091888428,UNBOUNDED (INACCURATE),,,,,,100000,"{""solver_solve_time"": 37.5636215, ""problem_class"": ""SOCP""}" +1996,cvxpy_sdpa,unknown,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:55:54,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1656,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:49,1.319889125,MAX_ITER,181893.5416873559,181889.2138017401,4.3278856158140115,0.0001842777716910772,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 1.319889125, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 181893.5416873559, ""dual_objective_value"": 181889.2138017401, ""duality_gap"": 4.3278856158140115, ""primal_infeasibility"": 0.0001842777716910772, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1525,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:16,1.1841420833333334,OPTIMAL,181889.9393690289,181889.93942920535,6.017644773237407e-05,6.474335930554726e-08,1.9271716253657946e-10,41,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1841420833333334, ""setup_time"": [], ""iterations"": 41, ""primal_objective_value"": 181889.9393690289, ""dual_objective_value"": 181889.93942920535, ""duality_gap"": 6.017644773237407e-05, ""primal_infeasibility"": 6.474335930554726e-08, ""dual_infeasibility"": 1.9271716253657946e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +555,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:59:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2013,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:13:46,0.39348578453063965,OPTIMAL,67.16503110771706,67.16503110770685,1.0203393685515039e-11,1.3166341677133402e-05,3.192143596063497e-10,28,"{""solver_solve_time"": 0.238405125, ""problem_class"": ""SOCP""}" +2014,cvxpy_cvxopt,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:15:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +588,cvxpy_ecos,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:29:28,0.8036279678344727,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +589,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +590,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2432,cvxpy_scip,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:47:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2015,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:16:27,39.494370222091675,OPTIMAL (INACCURATE),67.19515680638824,67.19509878640596,5.80199822763916e-05,9.115696547595488e-06,0.013741283267092997,100000,"{""solver_solve_time"": 39.319873583, ""problem_class"": ""SOCP""}" +2012,cvxpy_sdpa,unknown,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:13:45,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1658,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:01,1.1798084166666667,UNKNOWN,67.16504386757731,67.1650296736913,1.4193886016755641e-05,8.372561524043076e-08,0.0,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.1798084166666667, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": 67.16504386757731, ""dual_objective_value"": 67.1650296736913, ""duality_gap"": 1.4193886016755641e-05, ""primal_infeasibility"": 8.372561524043076e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1527,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:27,1.0436247916666668,OPTIMAL,67.16503131825516,67.16504436552164,1.3047266477883568e-05,1.5621088165689924e-09,1.652497306472603e-10,42,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.0436247916666668, ""setup_time"": [], ""iterations"": 42, ""primal_objective_value"": 67.16503131825516, ""dual_objective_value"": 67.16504436552164, ""duality_gap"": 1.3047266477883568e-05, ""primal_infeasibility"": 1.5621088165689924e-09, ""dual_infeasibility"": 1.652497306472603e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +591,scipy_linprog,scipy-1.15.3,DIMACS,sched_100_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:30:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2005,cvxpy_clarabel,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:05:31,3.713930130004883,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +2006,cvxpy_cvxopt,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:07:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +567,cvxpy_ecos,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:47:08,6.631985902786255,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +569,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +570,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2430,cvxpy_scip,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:24:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2007,cvxpy_scs,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:09:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2004,cvxpy_sdpa,unknown,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:05:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1670,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:25:45,6.322234541666667,MAX_ITER,141398.6133370716,141352.75901112944,45.85432594217127,2.270219537981104e-05,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 6.322234541666667, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": 141398.6133370716, ""dual_objective_value"": 141352.75901112944, ""duality_gap"": 45.85432594217127, ""primal_infeasibility"": 2.270219537981104e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:25:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1539,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:38,9.316090291666667,INFEASIBLE,421.94187307827224,0.9999999999999997,420.94187307827224,1.3616549626114933,6.062796780357364e-09,150,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""infeasible"", ""solve_time"": 9.316090291666667, ""setup_time"": [], ""iterations"": 150, ""primal_objective_value"": 421.94187307827224, ""dual_objective_value"": 0.9999999999999997, ""duality_gap"": 420.94187307827224, ""primal_infeasibility"": 1.3616549626114933, ""dual_infeasibility"": 6.062796780357364e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +571,scipy_linprog,scipy-1.15.3,DIMACS,sched_200_100_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:52:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2017,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:18:32,3.063275098800659,OPTIMAL (INACCURATE),51.81196102828225,51.81196102828078,1.4708234630234074e-12,4.858747047888998e-06,2.8373054115952637e-11,27,"{""solver_solve_time"": 1.077499788, ""problem_class"": ""SOCP""}" +2018,cvxpy_cvxopt,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:20:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2438,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:55:15,5.086763620376587,OPTIMAL (INACCURATE),93.815155585729,93.8151556507703,-6.504129146378546e-08,3.347342476175021e-07,3.756812771549544,60,"{""solver_solve_time"": 2.264175291, ""problem_class"": ""SOCP""}" +599,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +600,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2434,cvxpy_scip,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:51:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2019,cvxpy_scs,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:22:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2016,cvxpy_sdpa,unknown,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:18:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1672,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:03,5.2030821666666665,UNKNOWN,51.81198120718885,51.811960258992684,2.0948196166159505e-05,9.305294462873729e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.2030821666666665, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": 51.81198120718885, ""dual_objective_value"": 51.811960258992684, ""duality_gap"": 2.0948196166159505e-05, ""primal_infeasibility"": 9.305294462873729e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:26:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1541,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:00:56,5.779061583333333,OPTIMAL,51.811964255303366,51.81205548787007,9.123256670307e-05,2.1438553479259163e-08,4.496836433724744e-09,79,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 5.779061583333333, ""setup_time"": [], ""iterations"": 79, ""primal_objective_value"": 51.811964255303366, ""dual_objective_value"": 51.81205548787007, ""duality_gap"": 9.123256670307e-05, ""primal_infeasibility"": 2.1438553479259163e-08, ""dual_infeasibility"": 4.496836433724744e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:00:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +601,scipy_linprog,scipy-1.15.3,DIMACS,sched_200_100_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T09:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1993,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:12,0.14995408058166504,OPTIMAL (INACCURATE),26673.000976502055,26673.000976503732,-1.6771082300692797e-09,6.4391229604616e-06,1.2221958605691128e-11,29,"{""solver_solve_time"": 0.094789584, ""problem_class"": ""SOCP""}" +1994,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:35,22.904015064239502,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +541,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,0.17055892944335938,OPTIMAL,26673.000987463758,26673.000988293505,-8.297465683426708e-07,0.0008211845592554915,3.175354988442067e-09,30,"{""solver_solve_time"": 0.114245291, ""problem_class"": ""SOCP""}" +542,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +543,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2427,cvxpy_scip,unknown,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:18:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +1995,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:54,17.85116195678711,OPTIMAL (INACCURATE),35809.49201866682,36069.131423950195,-259.63940528337844,0.6278642052360084,2013643.3276811917,100000,"{""solver_solve_time"": 17.790207541, ""problem_class"": ""SOCP""}" +1992,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T11:53:11,37.08626198768616,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1655,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:41,0.7064037083333333,MAX_ITER,26673.095548738904,26672.99721972217,0.09832901673507877,3.15909062818255e-07,0.0,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.7064037083333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 26673.095548738904, ""dual_objective_value"": 26672.99721972217, ""duality_gap"": 0.09832901673507877, ""primal_infeasibility"": 3.15909062818255e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1524,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:09,0.7506059583333333,OPTIMAL,26673.000976938325,26673.000978030293,1.0919684427790344e-06,1.0054272660303507e-09,3.565461396342987e-11,44,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.7506059583333333, ""setup_time"": [], ""iterations"": 44, ""primal_objective_value"": 26673.000976938325, ""dual_objective_value"": 26673.000978030293, ""duality_gap"": 1.0919684427790344e-06, ""primal_infeasibility"": 1.0054272660303507e-09, ""dual_infeasibility"": 3.565461396342987e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +546,scipy_linprog,scipy-1.15.3,DIMACS,sched_50_50_orig,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-14T15:47:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2009,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:10:58,0.14790773391723633,OPTIMAL (INACCURATE),7.852038439863746,7.852038439863737,8.881784197001252e-15,5.942633532349437e-09,3.1698625599395943e-13,26,"{""solver_solve_time"": 0.096584246, ""problem_class"": ""SOCP""}" +2010,cvxpy_cvxopt,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:11:26,27.336299896240234,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +576,cvxpy_ecos,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:57:38,0.31072497367858887,ERROR,,,,,,,"{""error_message"": ""Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SOCP""}" +578,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +579,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T05:58:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +2431,cvxpy_scip,unknown,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1754399488.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T13:45:05,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SOCP""}" +2011,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:11:45,18.689378023147583,OPTIMAL (INACCURATE),7.852068168748205,7.852068714033491,-5.452852862575241e-07,1.3471978048109906e-08,0.00038825804604077893,100000,"{""solver_solve_time"": 18.631857583000002, ""problem_class"": ""SOCP""}" +2008,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:10:57,84.66230511665344,OPTIMAL (INACCURATE),7.852038526235663,7.852043972235164,-5.445999500253151e-06,1.669993096788863e-08,4.0060306334744484e-07,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SOCP""}" +1657,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:55,0.7289274583333333,OPTIMAL,7.852038477343999,7.85203843733003,4.0013969027086205e-08,5.643670372617149e-10,8.132293889752614e-13,27,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7289274583333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 7.852038477343999, ""dual_objective_value"": 7.85203843733003, ""duality_gap"": 4.0013969027086205e-08, ""primal_infeasibility"": 5.643670372617149e-10, ""dual_infeasibility"": 8.132293889752614e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +1526,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:21,0.514955,OPTIMAL,7.8520384401152645,7.852038442629353,2.514088492944211e-09,1.8727965760166163e-11,1.9350277378313464e-10,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.514955, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": 7.8520384401152645, ""dual_objective_value"": 7.852038442629353, ""duality_gap"": 2.514088492944211e-09, ""primal_infeasibility"": 1.8727965760166163e-11, ""dual_infeasibility"": 1.9350277378313464e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SOCP""}" +580,scipy_linprog,scipy-1.15.3,DIMACS,sched_50_50_scaled,SOCP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T06:03:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SOCP problems"", ""problem_type"": ""SOCP"", ""problem_class"": ""SOCP""}" +1981,cvxpy_clarabel,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:46,18.888890981674194,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:28 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:28 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:28 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:28 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:35:28 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:28 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:28 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1982,cvxpy_cvxopt,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:36:05,18.98634123802185,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:47 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:47 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:47 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:47 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:35:47 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:47 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:47 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +623,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +624,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +625,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +626,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1983,cvxpy_scs,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:36:24,19.028573036193848,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:36:06 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:36:06 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:36:06 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:36:06 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:36:06 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:36:06 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:36:06 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1980,cvxpy_sdpa,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:27,18.80346393585205,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:35:09 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:09 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:09 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_sdpa\n2025-08-04 00:35:09 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:35:09 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:35:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:09 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1677,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:29:50,96.853589375,OPTIMAL,-318810925.66454315,-318810927.37935495,1.7148118019104004,3.472238775909382e-13,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 96.853589375, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -318810925.66454315, ""dual_objective_value"": -318810927.37935495, ""duality_gap"": 1.7148118019104004, ""primal_infeasibility"": 3.472238775909382e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:29:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2022,matlab_sedumi,unknown,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:36:14,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +627,scipy_linprog,scipy-1.15.3,DIMACS,torusg3-15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:09:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1977,cvxpy_clarabel,unknown,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:34:51,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1978,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:07,15.618396282196045,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +617,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +618,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +619,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +620,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1979,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:35:08,0.3025782108306885,INFEASIBLE,,,,,,0,"{""solver_solve_time"": 0.098356375, ""problem_class"": ""SDP""}" +1976,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:50,0.8717789649963379,OPTIMAL,-48340945.427833095,-48340945.95630214,0.5284690484404564,1.604926322373818e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1676,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:28:05,1.9698861666666667,OPTIMAL,-48340945.86330335,-48340945.949232884,0.08592953532934189,3.430228268358133e-11,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.9698861666666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -48340945.86330335, ""dual_objective_value"": -48340945.949232884, ""duality_gap"": 0.08592953532934189, ""primal_infeasibility"": 3.430228268358133e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:28:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1545,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:03:39,8.568708083333334,OPTIMAL,-48340945.69408667,-48340945.69332005,0.0007666200399398804,1.6106946788226167e-09,3.269120548119365e-16,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 8.568708083333334, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -48340945.69408667, ""dual_objective_value"": -48340945.69332005, ""duality_gap"": 0.0007666200399398804, ""primal_infeasibility"": 1.6106946788226167e-09, ""dual_infeasibility"": 3.269120548119365e-16, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:03:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +621,scipy_linprog,scipy-1.15.3,DIMACS,torusg3-8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:06:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1973,cvxpy_clarabel,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:10,19.003982067108154,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:31:51 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:51 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:51 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:51 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:31:51 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:51 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:51 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1974,cvxpy_cvxopt,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:29,19.038095712661743,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:32:10 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:10 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:10 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:10 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:32:10 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:10 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:10 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +610,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +611,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +612,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +613,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1975,cvxpy_scs,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:32:48,19.10547423362732,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:32:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:29 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:32:29 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:29 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:29 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1972,cvxpy_sdpa,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:31:50,18.875687837600708,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 00:31:32 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:32 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:32 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:32 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_sdpa\n2025-08-04 00:31:32 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:31:32 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:31:32 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:32 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:32 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)"", ""problem_class"": ""SDP""}" +1718,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:48:56,82.76187025,OPTIMAL,-3474.794059052365,-3474.7940824213174,2.336895249754889e-05,2.319714150200321e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 82.76187025, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -3474.794059052365, ""dual_objective_value"": -3474.7940824213174, ""duality_gap"": 2.336895249754889e-05, ""primal_infeasibility"": 2.319714150200321e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:48:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2021,matlab_sedumi,unknown,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:33:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +614,scipy_linprog,scipy-1.15.3,DIMACS,toruspm3-15-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:05:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1969,cvxpy_clarabel,unknown,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:28:35,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1970,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:29:31,54.69461226463318,OPTIMAL,-527.8086363538721,-527.8086363269429,-2.6929228624794632e-08,6.74571396637511e-15,3.631236069352535e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +604,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +605,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +606,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +607,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1971,cvxpy_scs,unknown,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:31:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1968,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-03T15:26:35,0.644899845123291,OPTIMAL,-527.8086347494122,-527.8086640471479,2.9297735636646394e-05,4.731821784136668e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1717,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:47:24,2.0340817083333333,OPTIMAL,-527.808660710369,-527.8086632131733,2.502804250070767e-06,1.4509650835086007e-11,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.0340817083333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -527.808660710369, ""dual_objective_value"": -527.8086632131733, ""duality_gap"": 2.502804250070767e-06, ""primal_infeasibility"": 1.4509650835086007e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:47:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1582,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:37:03,7.601006166666667,OPTIMAL,-527.8086592434917,-527.8086592306726,1.281910044781398e-08,2.098791477322716e-09,5.187620354134206e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 7.601006166666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -527.8086592434917, ""dual_objective_value"": -527.8086592306726, ""duality_gap"": 1.281910044781398e-08, ""primal_infeasibility"": 2.098791477322716e-09, ""dual_infeasibility"": 5.187620354134206e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:37:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +608,scipy_linprog,scipy-1.15.3,DIMACS,toruspm3-8-50,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:02:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2076,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:57,0.4208559989929199,OPTIMAL (INACCURATE),132.63530797336855,132.6353098328787,-1.8595101494156552e-06,2.976961436986348e-06,6.742415211712427e-08,19,"{""solver_solve_time"": 0.380134749, ""problem_class"": ""SDP""}" +2077,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:59,1.182116985321045,OPTIMAL,132.63567622801477,132.63567623702812,-9.013348289954592e-09,1.4353448618618097e-08,3.018302548232494e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +632,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +633,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +634,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +635,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:12:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2078,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:22,22.059240341186523,OPTIMAL,132.67032214278458,132.67032627913713,-4.136352544037436e-06,2.4188989473182798e-06,0.0024103317967444286,83675,"{""solver_solve_time"": 22.017944333, ""problem_class"": ""SDP""}" +2075,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:48:56,0.14781689643859863,OPTIMAL,132.6356794538592,132.63567502877504,4.425084171089111e-06,6.293316373095602e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1818,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""86bfae9b39861dd3a3303c878d8ee30e9a970bb6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",86bfae9b39861dd3a3303c878d8ee30e9a970bb6,2025-07-22T15:17:54,0.6745402916666666,OPTIMAL,132.63567801876036,132.63567787176189,1.4699847383781162e-07,1.5205458807246513e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.6745402916666666, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 132.63567801876036, ""dual_objective_value"": 132.63567787176189, ""duality_gap"": 1.4699847383781162e-07, ""primal_infeasibility"": 1.5205458807246513e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:17:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1821,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:32:38,0.6298311666666667,OPTIMAL,132.6356771601937,132.63567716470257,4.5088768274581525e-09,6.3772698840920634e-09,1.2707963027328625e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.6298311666666667, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 132.6356771601937, ""dual_objective_value"": 132.63567716470257, ""duality_gap"": 4.5088768274581525e-09, ""primal_infeasibility"": 6.3772698840920634e-09, ""dual_infeasibility"": 1.2707963027328625e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:32:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +638,scipy_linprog,scipy-1.15.3,DIMACS,truss5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:13:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2080,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:30,7.1672890186309814,OPTIMAL,133.11452300392386,133.1145231602386,-1.5631474070687545e-07,5.880442946566506e-07,2.416827226267145e-08,20,"{""solver_solve_time"": 7.025535836, ""problem_class"": ""SDP""}" +2081,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:35,4.457964658737183,OPTIMAL,133.11458873614384,133.11458873454836,1.5954810805851594e-09,5.1857958079351704e-09,9.454734908598581e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +643,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +644,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +645,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +646,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:14:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2082,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:50:55,78.73915386199951,OPTIMAL,133.206421971091,133.2064255039062,-3.532815185280924e-06,1.809776268177368e-06,0.0026429235860219477,90650,"{""solver_solve_time"": 78.591124291, ""problem_class"": ""SDP""}" +2079,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:49:23,0.6237318515777588,OPTIMAL,133.11459453047246,133.11459273039674,1.8000757222580432e-06,1.4560143550748557e-10,2.0041502554605766e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1820,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:31:53,0.8213070833333334,OPTIMAL,133.11458915883577,133.1145890906361,6.819968234594853e-08,2.2496379323625403e-10,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8213070833333334, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 133.11458915883577, ""dual_objective_value"": 133.1145890906361, ""duality_gap"": 6.819968234594853e-08, ""primal_infeasibility"": 2.2496379323625403e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:31:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1822,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:32:44,1.0171705,OPTIMAL,133.11458828405543,133.11458828648352,2.4280950583488448e-09,7.429302853954885e-09,2.294303437965876e-10,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.0171705, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 133.11458828405543, ""dual_objective_value"": 133.11458828648352, ""duality_gap"": 2.4280950583488448e-09, ""primal_infeasibility"": 7.429302853954885e-09, ""dual_infeasibility"": 2.294303437965876e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:32:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +649,scipy_linprog,scipy-1.15.3,DIMACS,truss8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:15:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2084,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:17,8.200895071029663,OPTIMAL,-0.5665172821147114,-0.5665172817725594,-3.421519734203571e-10,1.022967781834959e-07,0.0,22,"{""solver_solve_time"": 5.049194498, ""problem_class"": ""SDP""}" +2085,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:27,9.065042972564697,OPTIMAL,-0.5665172762101253,-0.5665172760832871,-1.2683820660441825e-10,2.9533438966925347e-08,4.1854682344393564e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +654,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +655,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +656,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +657,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:17:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2086,cvxpy_scs,unknown,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:27,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2083,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:54:08,3.568632125854492,OPTIMAL,-0.566517267707974,-0.5665172734748258,5.766851884914104e-09,6.702895394246997e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1891,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T16:08:58,1.693596375,OPTIMAL,-0.5665172706450547,-0.5665172738234687,3.1784139764567954e-09,3.331523558890798e-09,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.693596375, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -0.5665172706450547, ""dual_objective_value"": -0.5665172738234687, ""duality_gap"": 3.1784139764567954e-09, ""primal_infeasibility"": 3.331523558890798e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 01:08:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1462,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:38,2.2475020833333335,OPTIMAL,-0.5665172725671985,-0.5665172736468338,1.0796352700737089e-09,8.490926777938654e-10,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.2475020833333335, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -0.5665172725671985, ""dual_objective_value"": -0.5665172736468338, ""duality_gap"": 1.0796352700737089e-09, ""primal_infeasibility"": 8.490926777938654e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +659,scipy_linprog,scipy-1.15.3,SDPLIB,arch0,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:21:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2088,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:37,5.3541259765625,OPTIMAL,-0.6715154099679571,-0.6715154097625702,-2.0538692968585792e-10,3.512925202723288e-08,0.0,24,"{""solver_solve_time"": 2.193572249, ""problem_class"": ""SDP""}" +2089,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:46,7.850555181503296,OPTIMAL,-0.6715154087273556,-0.6715154086542251,-7.313050165436152e-11,1.1755370688932572e-08,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +665,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +666,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +667,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +668,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2090,cvxpy_scs,unknown,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:46,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2087,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:56:31,3.9591081142425537,OPTIMAL (INACCURATE),-0.6715149919393316,-0.6715154519149769,4.599756452394743e-07,9.880028136196605e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1598,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:13,1.86828275,OPTIMAL,-0.6715154042243952,-0.6715154083287945,4.104399375925993e-09,3.403005752654008e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.86828275, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -0.6715154042243952, ""dual_objective_value"": -0.6715154083287945, ""duality_gap"": 4.104399375925993e-09, ""primal_infeasibility"": 3.403005752654008e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1463,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:45,1.7373145833333334,OPTIMAL,-0.6715153908899425,-0.6715153884008259,2.4891165795182246e-09,2.8865480120764807e-09,6.157079870441952e-11,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.7373145833333334, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -0.6715153908899425, ""dual_objective_value"": -0.6715153884008259, ""duality_gap"": 2.4891165795182246e-09, ""primal_infeasibility"": 2.8865480120764807e-09, ""dual_infeasibility"": 6.157079870441952e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +669,scipy_linprog,scipy-1.15.3,SDPLIB,arch2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:23:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2092,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:56,4.968804836273193,OPTIMAL,-0.9726274329610303,-0.9726274322104886,-7.505416288466904e-10,1.1813692812382962e-07,0.0,20,"{""solver_solve_time"": 1.834995457, ""problem_class"": ""SDP""}" +2093,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:59:04,7.285048723220825,OPTIMAL,-0.9726274304903915,-0.9726274299150273,-5.753642007277904e-10,7.421682204955683e-08,2.5603242314031326e-13,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +674,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +675,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +676,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +677,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2094,cvxpy_scs,unknown,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2091,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:58:50,3.6847190856933594,OPTIMAL (INACCURATE),-0.9726272676562057,-0.9726274431143305,1.7545812480701528e-07,6.41651460356969e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1599,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:20,1.705317875,OPTIMAL,-0.97262741117333,-0.972627418748867,7.57553708652381e-09,8.514427642381836e-10,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.705317875, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -0.97262741117333, ""dual_objective_value"": -0.972627418748867, ""duality_gap"": 7.57553708652381e-09, ""primal_infeasibility"": 8.514427642381836e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1464,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:37:52,1.874344125,OPTIMAL,-0.9726274178595536,-0.9726274178395272,2.00264249627935e-11,2.8576206940232703e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.874344125, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.9726274178595536, ""dual_objective_value"": -0.9726274178395272, ""duality_gap"": 2.00264249627935e-11, ""primal_infeasibility"": 2.8576206940232703e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +679,scipy_linprog,scipy-1.15.3,SDPLIB,arch4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:26:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2096,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:14,5.1614251136779785,OPTIMAL,-7.056985719383242,-7.0569856944182865,-2.4964955436246328e-08,2.7109763353502106e-06,0.0,24,"{""solver_solve_time"": 2.099254042, ""problem_class"": ""SDP""}" +2097,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:23,8.174963235855103,OPTIMAL,-7.056980177129674,-7.056980175019456,-2.1102177782950093e-09,8.034408651651353e-08,1.259191489724154e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +685,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +686,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +687,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +688,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2098,cvxpy_scs,unknown,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:23,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2095,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:01:08,3.7701759338378906,OPTIMAL (INACCURATE),-7.056979925817409,-7.056980053305484,1.2748807520779337e-07,1.428558638956882e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1600,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:27,1.4575445,UNKNOWN,-7.056980018798058,-7.056980042117708,2.331965021085125e-08,1.4104717965201591e-08,3.5687676151979556e-13,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.4575445, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -7.056980018798058, ""dual_objective_value"": -7.056980042117708, ""duality_gap"": 2.331965021085125e-08, ""primal_infeasibility"": 1.4104717965201591e-08, ""dual_infeasibility"": 3.5687676151979556e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1465,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:01,3.12848525,OPTIMAL,-7.056980043548424,-7.056980043508659,3.976463602839431e-11,3.648550476043381e-09,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 3.12848525, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -7.056980043548424, ""dual_objective_value"": -7.056980043508659, ""duality_gap"": 3.976463602839431e-11, ""primal_infeasibility"": 3.648550476043381e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:37:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +689,scipy_linprog,scipy-1.15.3,SDPLIB,arch8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:28:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2100,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:24,0.014528989791870117,OPTIMAL,-18.057693540129556,-18.05769338831607,-1.5181348445025833e-07,0.02414985830941088,0.0,56,"{""solver_solve_time"": 0.011800501, ""problem_class"": ""SDP""}" +2101,cvxpy_cvxopt,unknown,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:24,0.16407227516174316,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +695,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +696,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +697,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +698,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2102,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:26,0.9191200733184814,OPTIMAL (INACCURATE),-0.002878232961825694,-20.48065620588266,20.477777972920833,0.27819661314555105,546368.1134344704,100000,"{""solver_solve_time"": 0.915902708, ""problem_class"": ""SDP""}" +2099,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:23,0.011425018310546875,OPTIMAL,-17.78462618700244,-17.784627142638215,9.556357731810294e-07,1.9992999166489883e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1629,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:57,0.29932166666666665,OPTIMAL,-17.78462660868152,-17.784626742725198,1.3404367749103585e-07,6.1483802884653124e-09,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.29932166666666665, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -17.78462660868152, ""dual_objective_value"": -17.784626742725198, ""duality_gap"": 1.3404367749103585e-07, ""primal_infeasibility"": 6.1483802884653124e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1499,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:52,0.30866791666666665,OPTIMAL,-17.784626802847523,-17.784626793465566,9.38195654498486e-09,5.28282960426234e-09,0.0,30,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.30866791666666665, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": -17.784626802847523, ""dual_objective_value"": -17.784626793465566, ""duality_gap"": 9.38195654498486e-09, ""primal_infeasibility"": 5.28282960426234e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +700,scipy_linprog,scipy-1.15.3,SDPLIB,control1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:30:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2212,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:58:53,58.74322485923767,OPTIMAL,-38.53310978438966,-38.53310974843417,-3.5955487476257986e-08,1.3387459817271676e-06,3.600325513296991e-11,44,"{""solver_solve_time"": 58.39190925, ""problem_class"": ""SDP""}" +2213,cvxpy_cvxopt,unknown,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:59:27,31.417057037353516,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +810,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +811,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +812,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +813,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2214,cvxpy_scs,unknown,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:01:28,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2211,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:57:53,11.582292795181274,OPTIMAL (INACCURATE),-38.532875373216974,-38.53307092893413,0.00019555571715557107,2.813485631313094e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1638,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:17,8.544497708333333,UNKNOWN,-38.53290115712743,-38.53305732276117,0.00015616563374010184,1.0306253214751266e-06,0.0,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 8.544497708333333, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -38.53290115712743, ""dual_objective_value"": -38.53305732276117, ""duality_gap"": 0.00015616563374010184, ""primal_infeasibility"": 1.0306253214751266e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1508,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:31,17.53509725,NUM_ERROR,-38.533100875331215,-38.53309670441624,4.1709149769530995e-06,1.1942347138694803e-06,0.0,43,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 17.53509725, ""setup_time"": [], ""iterations"": 43, ""primal_objective_value"": -38.533100875331215, ""dual_objective_value"": -38.53309670441624, ""duality_gap"": 4.1709149769530995e-06, ""primal_infeasibility"": 1.1942347138694803e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:45:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +814,scipy_linprog,scipy-1.15.3,SDPLIB,control10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:14:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2216,cvxpy_clarabel,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:03:49,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2217,cvxpy_cvxopt,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:04:35,43.228622913360596,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +819,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +820,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +821,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +822,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2218,cvxpy_scs,unknown,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:06:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2215,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:01:48,17.948111295700073,OPTIMAL (INACCURATE),-31.95851149383577,-31.95870615260608,0.000194658770311662,1.7090596773415e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1639,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:38,11.558988291666667,UNKNOWN,-31.958623305615316,-31.958686698445707,6.339283039125121e-05,7.853573037958292e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 11.558988291666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -31.958623305615316, ""dual_objective_value"": -31.958686698445707, ""duality_gap"": 6.339283039125121e-05, ""primal_infeasibility"": 7.853573037958292e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1509,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:12,30.733073958333332,NUM_ERROR,-31.958699244576298,-31.958695423512797,3.821063501163735e-06,5.312516350920055e-07,0.0,47,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 30.733073958333332, ""setup_time"": [], ""iterations"": 47, ""primal_objective_value"": -31.958699244576298, ""dual_objective_value"": -31.958695423512797, ""duality_gap"": 3.821063501163735e-06, ""primal_infeasibility"": 5.312516350920055e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +823,scipy_linprog,scipy-1.15.3,SDPLIB,control11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:19:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2180,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:51,0.050559043884277344,OPTIMAL,-8.30000052797604,-8.300000490399094,-3.7576945999262534e-08,1.0799058809794016e-07,0.0,25,"{""solver_solve_time"": 0.046177288, ""problem_class"": ""SDP""}" +2181,cvxpy_cvxopt,unknown,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:52,0.16975116729736328,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +706,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +707,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +708,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +709,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2182,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:57,4.875208854675293,OPTIMAL (INACCURATE),-0.0019666666133589523,-1.6631072323702496,1.6611405657568907,0.166111590183817,16899.147636217396,100000,"{""solver_solve_time"": 4.870198625, ""problem_class"": ""SDP""}" +2179,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:51,0.03551793098449707,OPTIMAL,-8.299999482545115,-8.300000044307849,5.617627341081288e-07,1.6670044255637843e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1630,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:03,0.41014416666666664,MAX_ITER,-8.299999963979975,-8.300000195440187,2.3146021277398177e-07,4.880420109459047e-09,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.41014416666666664, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -8.299999963979975, ""dual_objective_value"": -8.300000195440187, ""duality_gap"": 2.3146021277398177e-07, ""primal_infeasibility"": 4.880420109459047e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1500,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:58,0.3295910833333333,OPTIMAL,-8.300000061550637,-8.300000053303892,8.24674550869986e-09,8.92637846485658e-09,0.0,31,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3295910833333333, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -8.300000061550637, ""dual_objective_value"": -8.300000053303892, ""duality_gap"": 8.24674550869986e-09, ""primal_infeasibility"": 8.92637846485658e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +711,scipy_linprog,scipy-1.15.3,SDPLIB,control2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:32:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2184,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:59,0.23012804985046387,OPTIMAL,-13.633267734899809,-13.633267702679126,-3.2220683010564244e-08,2.693486524788012e-07,0.0,29,"{""solver_solve_time"": 0.221856126, ""problem_class"": ""SDP""}" +2185,cvxpy_cvxopt,unknown,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:00,0.34781694412231445,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +717,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +718,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +719,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +720,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2186,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:14,14.100239038467407,OPTIMAL (INACCURATE),-0.037735833422812004,-0.27289208768706114,0.23515625426424913,0.13917932877951675,1893.5597441188274,100000,"{""solver_solve_time"": 14.090095958, ""problem_class"": ""SDP""}" +2183,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:45:58,0.16129589080810547,OPTIMAL (INACCURATE),-13.633263748445593,-13.633266893655158,3.1452095647921396e-06,6.364345948755367e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1631,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:09,0.5669687916666667,MAX_ITER,-13.633263261632482,-13.633267476768832,4.215136350183002e-06,8.350276043868962e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.5669687916666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -13.633263261632482, ""dual_objective_value"": -13.633267476768832, ""duality_gap"": 4.215136350183002e-06, ""primal_infeasibility"": 8.350276043868962e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1501,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:04,0.5063703333333334,NUM_ERROR,-13.633266745169918,-13.633266709049082,3.612083609993988e-08,2.9250113210155247e-08,0.0,34,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5063703333333334, ""setup_time"": [], ""iterations"": 34, ""primal_objective_value"": -13.633266745169918, ""dual_objective_value"": -13.633266709049082, ""duality_gap"": 3.612083609993988e-08, ""primal_infeasibility"": 2.9250113210155247e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +722,scipy_linprog,scipy-1.15.3,SDPLIB,control3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:33:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2188,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:17,0.8590762615203857,OPTIMAL,-19.79423318506499,-19.79423315316147,-3.190351804960301e-08,5.103843191955561e-07,5.641713395479458e-08,32,"{""solver_solve_time"": 0.841925412, ""problem_class"": ""SDP""}" +2189,cvxpy_cvxopt,unknown,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:19,1.2682511806488037,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +728,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +729,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +730,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +731,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2190,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:48,28.04506778717041,OPTIMAL (INACCURATE),-0.002563905576329976,-2.112935527155603,2.110371621579273,0.11510210278659297,14854.924304999919,100000,"{""solver_solve_time"": 28.022136791, ""problem_class"": ""SDP""}" +2187,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:15,0.33644914627075195,OPTIMAL (INACCURATE),-19.79422577234397,-19.7942315506204,5.778276428003437e-06,1.3327565863841907e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1632,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:14,0.9797094583333333,UNKNOWN,-19.794231903242835,-19.794231015288197,8.879546378182113e-07,2.2336441257685175e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.9797094583333333, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -19.794231903242835, ""dual_objective_value"": -19.794231015288197, ""duality_gap"": 8.879546378182113e-07, ""primal_infeasibility"": 2.2336441257685175e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1502,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:10,0.619574875,NUM_ERROR,-19.79423223668097,-19.79423226601071,2.932974041414127e-08,7.34021862743097e-08,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.619574875, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -19.79423223668097, ""dual_objective_value"": -19.79423226601071, ""duality_gap"": 2.932974041414127e-08, ""primal_infeasibility"": 7.34021862743097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +733,scipy_linprog,scipy-1.15.3,SDPLIB,control4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2192,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:52,2.263176918029785,OPTIMAL,-16.88364881340114,-16.883648809313648,-4.087493010729304e-09,5.620802961416378e-07,5.697256261448682e-09,35,"{""solver_solve_time"": 2.230729789, ""problem_class"": ""SDP""}" +2193,cvxpy_cvxopt,unknown,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:55,2.0964319705963135,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +739,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +740,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +741,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +742,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2194,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:49,53.70480513572693,OPTIMAL (INACCURATE),-0.17807903005516243,-0.23275478696713833,0.054675756911975903,0.09362750982167806,369.6736319443367,100000,"{""solver_solve_time"": 53.657073791, ""problem_class"": ""SDP""}" +2191,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:46:49,0.6715381145477295,OPTIMAL (INACCURATE),-16.883575406676048,-16.883604992850316,2.9586174267848264e-05,2.7521358841549283e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1633,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:21,2.211192083333333,UNKNOWN,-16.883596414614832,-16.88360083689795,4.422283119254189e-06,2.75357458891001e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.211192083333333, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -16.883596414614832, ""dual_objective_value"": -16.88360083689795, ""duality_gap"": 4.422283119254189e-06, ""primal_infeasibility"": 2.75357458891001e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1503,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:16,1.1899270833333333,NUM_ERROR,-16.88360792645761,-16.88360752271663,4.037409802037928e-07,4.1151459934863073e-07,0.0,35,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.1899270833333333, ""setup_time"": [], ""iterations"": 35, ""primal_objective_value"": -16.88360792645761, ""dual_objective_value"": -16.88360752271663, ""duality_gap"": 4.037409802037928e-07, ""primal_infeasibility"": 4.1151459934863073e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:14"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +744,scipy_linprog,scipy-1.15.3,SDPLIB,control5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:36:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2196,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:58,5.672824859619141,OPTIMAL,-37.3044718247362,-37.30447181818093,-6.5552683281566715e-09,1.4634649666883939e-06,3.059050321188013e-06,42,"{""solver_solve_time"": 5.614913959, ""problem_class"": ""SDP""}" +2197,cvxpy_cvxopt,unknown,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:48:03,4.2641379833221436,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +750,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +751,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +752,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +753,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T10:50:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2198,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:36,91.90722298622131,OPTIMAL (INACCURATE),-0.5214729254574336,-1.0154678495708611,0.4939949241134275,0.08196294538901851,3266.178827189497,100000,"{""solver_solve_time"": 91.81093475, ""problem_class"": ""SDP""}" +2195,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:47:51,1.3168079853057861,OPTIMAL (INACCURATE),-37.30434823321163,-37.30443772697064,8.94937590132372e-05,2.9293219588294305e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1634,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:28,1.4893847916666667,UNKNOWN,-37.3043782593074,-37.30442450422718,4.624491977978096e-05,6.229389742583387e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.4893847916666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -37.3043782593074, ""dual_objective_value"": -37.30442450422718, ""duality_gap"": 4.624491977978096e-05, ""primal_infeasibility"": 6.229389742583387e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1504,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:24,2.2992367083333334,NUM_ERROR,-37.304475715902306,-37.30447323765376,2.478248546822215e-06,1.310139383095129e-06,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.2992367083333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -37.304475715902306, ""dual_objective_value"": -37.30447323765376, ""duality_gap"": 2.478248546822215e-06, ""primal_infeasibility"": 1.310139383095129e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1766,scipy_linprog,scipy-1.15.3,SDPLIB,control6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:40:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2200,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:51,10.41468095779419,OPTIMAL,-20.625077113896168,-20.625077105250966,-8.64520188770257e-09,6.579981870625703e-07,2.3499840470621547e-07,39,"{""solver_solve_time"": 10.31394521, ""problem_class"": ""SDP""}" +2201,cvxpy_cvxopt,unknown,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:50:00,8.096139907836914,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +781,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +782,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +783,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +784,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2202,cvxpy_scs,unknown,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:00,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2199,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:49:40,2.504279851913452,OPTIMAL (INACCURATE),-20.625054215291936,-20.625079174008114,2.4958716178247187e-05,7.626469959925607e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1635,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:37,2.1745322916666665,UNKNOWN,-20.62505846427079,-20.62507774002214,1.9275751348857284e-05,5.828261469963749e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.1745322916666665, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.62505846427079, ""dual_objective_value"": -20.62507774002214, ""duality_gap"": 1.9275751348857284e-05, ""primal_infeasibility"": 5.828261469963749e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1505,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:34,3.7043799583333334,NUM_ERROR,-20.625087691567924,-20.625088042230974,3.506630505967223e-07,4.0114303820059954e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.7043799583333334, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.625087691567924, ""dual_objective_value"": -20.625088042230974, ""duality_gap"": 3.506630505967223e-07, ""primal_infeasibility"": 4.0114303820059954e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +785,scipy_linprog,scipy-1.15.3,SDPLIB,control7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:04:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2204,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:26,19.301553964614868,OPTIMAL,-20.2863714283772,-20.286371308207375,-1.201698260899775e-07,5.539607872665644e-07,1.4511474711248118e-07,40,"{""solver_solve_time"": 19.143677041, ""problem_class"": ""SDP""}" +2205,cvxpy_cvxopt,unknown,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:40,11.985829830169678,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +790,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +791,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +792,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +793,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2206,cvxpy_scs,unknown,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:54:40,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2203,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:52:06,4.015629053115845,OPTIMAL (INACCURATE),-20.286315458750884,-20.286372440169522,5.698141863774708e-05,2.99146677629299e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1636,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:47,3.2315104166666666,UNKNOWN,-20.286339185828837,-20.286370196182016,3.101035317953915e-05,6.98131306134552e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 3.2315104166666666, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -20.286339185828837, ""dual_objective_value"": -20.286370196182016, ""duality_gap"": 3.101035317953915e-05, ""primal_infeasibility"": 6.98131306134552e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1506,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:44:48,6.0665873333333336,NUM_ERROR,-20.286375865662162,-20.286374249545677,1.6161164850814203e-06,4.233911977499572e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.0665873333333336, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -20.286375865662162, ""dual_objective_value"": -20.286374249545677, ""duality_gap"": 1.6161164850814203e-06, ""primal_infeasibility"": 4.233911977499572e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:44:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +794,scipy_linprog,scipy-1.15.3,SDPLIB,control8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:06:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2208,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:55:19,29.263099193572998,OPTIMAL,-14.675430563285023,-14.675430500128785,-6.315623757302546e-08,1.0734959395341116e-06,0.0,35,"{""solver_solve_time"": 29.023103417, ""problem_class"": ""SDP""}" +2209,cvxpy_cvxopt,unknown,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:55:39,18.054994821548462,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +800,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +801,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +802,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +803,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2210,cvxpy_scs,unknown,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:57:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2207,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:54:48,6.55282998085022,OPTIMAL (INACCURATE),-14.67540228481323,-14.675431392929916,2.910811668499491e-05,1.4589427065347405e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1637,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:04:59,5.164574291666667,UNKNOWN,-14.675411161814361,-14.675428193598599,1.7031784237175884e-05,3.695427597785709e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 5.164574291666667, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -14.675411161814361, ""dual_objective_value"": -14.675428193598599, ""duality_gap"": 1.7031784237175884e-05, ""primal_infeasibility"": 3.695427597785709e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:04:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1507,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:45:05,10.212919458333333,NUM_ERROR,-14.6754285362703,-14.675428798508477,2.622381778394356e-07,1.582313837708998e-07,0.0,40,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 10.212919458333333, ""setup_time"": [], ""iterations"": 40, ""primal_objective_value"": -14.6754285362703, ""dual_objective_value"": -14.675428798508477, ""duality_gap"": 2.622381778394356e-07, ""primal_infeasibility"": 1.582313837708998e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:45:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +804,scipy_linprog,scipy-1.15.3,SDPLIB,control9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:10:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2220,cvxpy_clarabel,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:08:01,32.29365611076355,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 00:07:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:07:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:07:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:07:29 - python_solver_runner - INFO - Subprocess solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - python_solver_runner - INFO - Solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:07:29 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG11.dat-s\n2025-08-05 00:07:29 - dat_loader - INFO - Converted equalG11: SDP problem (641601 vars, 801 constraints)\n2025-08-05 00:07:29 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG11', class='SDP', 641601 vars, 801 constraints)"", ""problem_class"": ""SDP""}" +2221,cvxpy_cvxopt,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:10:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1388,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1389,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1390,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1391,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2222,cvxpy_scs,unknown,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:12:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2219,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:07:28,50.860018253326416,OPTIMAL,-629.1552658005733,-629.1552929633996,2.716282631354261e-05,2.369371882908525e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1612,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:56,5.390393125,OPTIMAL,-629.1552924715518,-629.155292824143,3.52591200680763e-07,1.783924970601402e-12,6.427897648455087e-18,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.390393125, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -629.1552924715518, ""dual_objective_value"": -629.155292824143, ""duality_gap"": 3.52591200680763e-07, ""primal_infeasibility"": 1.783924970601402e-12, ""dual_infeasibility"": 6.427897648455087e-18, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1497,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:57,40.736246875,NUM_ERROR,-629.1548520668078,-629.147034816694,0.007817250113816954,2.5361087944180886e-08,4.2544376286179536e-11,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 40.736246875, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -629.1548520668078, ""dual_objective_value"": -629.147034816694, ""duality_gap"": 0.007817250113816954, ""primal_infeasibility"": 2.5361087944180886e-08, ""dual_infeasibility"": 4.2544376286179536e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:41:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1392,scipy_linprog,scipy-1.15.3,SDPLIB,equalG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:17:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2224,cvxpy_clarabel,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:14:20,36.03781485557556,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-05 00:13:43 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:13:43 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:13:43 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:13:43 - python_solver_runner - INFO - Subprocess solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - python_solver_runner - INFO - Solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:13:43 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG51.dat-s\n2025-08-05 00:13:44 - dat_loader - INFO - Converted equalG51: SDP problem (1002001 vars, 1001 constraints)\n2025-08-05 00:13:44 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG51', class='SDP', 1002001 vars, 1001 constraints)"", ""problem_class"": ""SDP""}" +2225,cvxpy_cvxopt,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:16:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +835,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +836,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +837,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +838,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2226,cvxpy_scs,unknown,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2223,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:13:43,98.00020503997803,OPTIMAL,-4005.6011905473815,-4005.6013169406397,0.00012639325814234326,7.832639830764701e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1613,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:29,8.547652125,OPTIMAL,-4005.601288017268,-4005.601316366677,2.834940914908657e-05,5.789644333861485e-11,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 8.547652125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -4005.601288017268, ""dual_objective_value"": -4005.601316366677, ""duality_gap"": 2.834940914908657e-05, ""primal_infeasibility"": 5.789644333861485e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1498,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:43:46,84.32632358333333,NUM_ERROR,-4005.599767044349,-4005.599767799965,7.556159289379138e-07,8.95433741624491e-09,5.676034290944519e-12,30,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 84.32632358333333, ""setup_time"": [], ""iterations"": 30, ""primal_objective_value"": -4005.599767044349, ""dual_objective_value"": -4005.599767799965, ""duality_gap"": 7.556159289379138e-07, ""primal_infeasibility"": 8.95433741624491e-09, ""dual_infeasibility"": 5.676034290944519e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:43:42"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +839,scipy_linprog,scipy-1.15.3,SDPLIB,equalG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:33:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2024,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:10,24.420432090759277,OPTIMAL,44.94352143580459,44.943521202203435,2.3360115619652788e-07,2.5595494078020857e-08,1.5712483353179885e-09,26,"{""solver_solve_time"": 24.409408122, ""problem_class"": ""SDP""}" +2025,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:12,1.319443941116333,OPTIMAL,44.943516455354754,44.94351577687856,6.784761907852044e-07,6.165359139962672e-08,2.922917563468684e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2282,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:30:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2284,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2285,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2283,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:30:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2026,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:33,20.59488797187805,OPTIMAL,44.943699547453214,44.94369974548657,-1.9803335504775532e-07,8.108289283382372e-07,1.6016297568809636e-06,19450,"{""solver_solve_time"": 20.583261750000002, ""problem_class"": ""SDP""}" +2023,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:39:45,0.4165680408477783,OPTIMAL,44.94355314399055,44.943550479204376,2.6647861730566547e-06,2.1521573192501864e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1878,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:51:34,0.44436095833333333,OPTIMAL,44.94354787139288,44.943548863521535,9.921286547864838e-07,2.734211981964889e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.44436095833333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 44.94354787139288, ""dual_objective_value"": 44.943548863521535, ""duality_gap"": 9.921286547864838e-07, ""primal_infeasibility"": 2.734211981964889e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:51:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1865,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:53,0.7721935,NUM_ERROR,44.94351945079613,44.943668273606576,0.0001488228104449263,3.6371368159315026e-07,1.8043086007717958e-08,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.7721935, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": 44.94351945079613, ""dual_objective_value"": 44.943668273606576, ""duality_gap"": 0.0001488228104449263, ""primal_infeasibility"": 3.6371368159315026e-07, ""dual_infeasibility"": 1.8043086007717958e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:50"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2286,scipy_linprog,scipy-1.15.3,SDPLIB,gpp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:31:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2028,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:41:48,73.53240489959717,OPTIMAL,7.343057048260827,7.343056996265297,5.199553054779926e-08,1.2959915647658356e-08,2.9534277759680858e-09,30,"{""solver_solve_time"": 73.514996203, ""problem_class"": ""SDP""}" +2029,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:41:52,2.941185235977173,OPTIMAL,7.343069474100868,7.343069487135349,-1.3034481050056002e-08,5.133479828232705e-09,7.610058312761891e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2287,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2289,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2290,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2288,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2030,cvxpy_scs,unknown,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:43:52,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2027,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:40:34,0.6313779354095459,OPTIMAL (INACCURATE),7.343079595579098,7.343076185089177,3.4104899215847695e-06,2.927273492503322e-06,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1840,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:10,0.5800415,OPTIMAL,7.343075216995572,7.343075708069313,4.910737407826105e-07,3.445685296414346e-11,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5800415, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 7.343075216995572, ""dual_objective_value"": 7.343075708069313, ""duality_gap"": 4.910737407826105e-07, ""primal_infeasibility"": 3.445685296414346e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1866,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:59,1.011289,NUM_ERROR,7.343040041853136,7.343323197544134,0.00028315569099746085,4.6273048261564336e-07,6.076241571456934e-08,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.011289, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 7.343040041853136, ""dual_objective_value"": 7.343323197544134, ""duality_gap"": 0.00028315569099746085, ""primal_infeasibility"": 4.6273048261564336e-07, ""dual_infeasibility"": 6.076241571456934e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:56"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2291,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2032,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:45:03,69.69699668884277,OPTIMAL,46.862264832079795,46.86226449534972,3.3673007493462137e-07,2.5135826306059297e-08,8.998138869898386e-10,28,"{""solver_solve_time"": 69.679521045, ""problem_class"": ""SDP""}" +2033,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:45:06,2.4338388442993164,OPTIMAL,46.86227168740106,46.86227113257759,5.548234724983558e-07,4.6663936113070845e-08,2.3688111053568684e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2292,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2294,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2295,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2293,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2034,cvxpy_scs,unknown,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:47:06,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2031,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:43:53,0.614959716796875,OPTIMAL,46.8622983506127,46.862295004806455,3.345806241839e-06,1.373933037186379e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1841,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:15,0.5533539166666667,OPTIMAL,46.86229340823787,46.86229387971365,4.7147577930672924e-07,1.2319438807287507e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5533539166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 46.86229340823787, ""dual_objective_value"": 46.86229387971365, ""duality_gap"": 4.7147577930672924e-07, ""primal_infeasibility"": 1.2319438807287507e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1867,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:05,1.067351625,NUM_ERROR,46.8623007758379,46.862310357065084,9.581227182309249e-06,2.602493957176677e-07,4.4461266039776315e-09,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.067351625, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 46.8623007758379, ""dual_objective_value"": 46.862310357065084, ""duality_gap"": 9.581227182309249e-06, ""primal_infeasibility"": 2.602493957176677e-07, ""dual_infeasibility"": 4.4461266039776315e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:02"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2296,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:16,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2036,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:48:14,66.16559410095215,OPTIMAL,153.01408663697256,153.01408542136193,1.2156106379279663e-06,5.2151548589389365e-08,8.00066489003644e-10,27,"{""solver_solve_time"": 66.147987458, ""problem_class"": ""SDP""}" +2037,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:48:17,2.3794949054718018,OPTIMAL,153.01408360362933,153.01408174526287,1.8583664598281757e-06,6.848434744436384e-08,1.717152917121848e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2297,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2299,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2300,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2298,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2038,cvxpy_scs,unknown,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:50:17,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2035,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:47:08,0.6218161582946777,OPTIMAL,153.01412733964798,153.01412720660855,1.33039435468163e-07,8.311483119261992e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1842,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:21,0.522561625,OPTIMAL,153.014122916332,153.01412446660885,1.550276834905162e-06,4.152400563581602e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.522561625, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 153.014122916332, ""dual_objective_value"": 153.01412446660885, ""duality_gap"": 1.550276834905162e-06, ""primal_infeasibility"": 4.152400563581602e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:18"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1868,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:12,1.3415220833333332,NUM_ERROR,153.01413111066205,153.0141433591371,1.2248475059095654e-05,3.772924496141658e-07,1.4242436509417165e-09,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.3415220833333332, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 153.01413111066205, ""dual_objective_value"": 153.0141433591371, ""duality_gap"": 1.2248475059095654e-05, ""primal_infeasibility"": 3.772924496141658e-07, ""dual_infeasibility"": 1.4242436509417165e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2301,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2040,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:51:54,95.07492804527283,OPTIMAL,418.9875424590275,418.9875415105999,9.484276120019786e-07,4.418241810753433e-08,1.0871892833263688e-09,32,"{""solver_solve_time"": 95.058631418, ""problem_class"": ""SDP""}" +2041,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:51:58,2.832003116607666,OPTIMAL,418.98746606964215,418.98746467361104,1.3960311093796918e-06,3.372914105987499e-08,0.0,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2302,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2304,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2305,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2303,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2042,cvxpy_scs,unknown,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:53:58,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2039,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:50:18,0.6177799701690674,OPTIMAL,418.9876329576085,418.987623002338,9.955270513728465e-06,1.1983390832123164e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1843,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:27,0.7190450416666667,OPTIMAL,418.98759463635133,418.98760998623175,1.534988041385077e-05,5.62265250487158e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7190450416666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 418.98759463635133, ""dual_objective_value"": 418.98760998623175, ""duality_gap"": 1.534988041385077e-05, ""primal_infeasibility"": 5.62265250487158e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1869,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:19,1.2991055833333334,NUM_ERROR,418.9877644444689,418.9878255927038,6.114823491998322e-05,4.115301077190911e-07,3.607218879110399e-09,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.2991055833333334, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 418.9877644444689, ""dual_objective_value"": 418.9878255927038, ""duality_gap"": 6.114823491998322e-05, ""primal_infeasibility"": 4.115301077190911e-07, ""dual_infeasibility"": 3.607218879110399e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2306,scipy_linprog,scipy-1.15.3,SDPLIB,gpp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2044,cvxpy_clarabel,unknown,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:56:02,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2045,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:56:18,14.727091073989868,OPTIMAL,15.444900580063722,15.444900197302442,3.827612804485625e-07,3.879457797449652e-08,3.257714081782618e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2307,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2309,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2310,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2308,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2046,cvxpy_scs,unknown,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:58:18,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2043,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:54:01,2.738187074661255,OPTIMAL (INACCURATE),15.446607847213254,15.44490872745331,0.001699119759944523,2.093336410893669e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1844,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:33,1.305260125,UNKNOWN,15.444916745668474,15.444916791369133,4.5700659256908693e-08,8.619595094369608e-12,1.5998195761311495e-13,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 1.305260125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": 15.444916745668474, ""dual_objective_value"": 15.444916791369133, ""duality_gap"": 4.5700659256908693e-08, ""primal_infeasibility"": 8.619595094369608e-12, ""dual_infeasibility"": 1.5998195761311495e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1870,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:27,3.5781583333333336,NUM_ERROR,15.444884449808155,15.4450291912657,0.00014474145754483914,7.773040500979703e-07,9.678959317803167e-09,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.5781583333333336, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 15.444884449808155, ""dual_objective_value"": 15.4450291912657, ""duality_gap"": 0.00014474145754483914, ""primal_infeasibility"": 7.773040500979703e-07, ""dual_infeasibility"": 9.678959317803167e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:25"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2311,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2048,cvxpy_clarabel,unknown,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:00:23,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2049,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:00:39,15.732684135437012,OPTIMAL,81.86892758846523,81.86892640326104,1.1852041836846183e-06,6.319784139238923e-08,2.534971057205083e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2312,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2314,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2315,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2313,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2050,cvxpy_scs,unknown,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:02:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2047,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T12:58:21,2.771937131881714,OPTIMAL,81.86896145123242,81.86895868580729,2.765425136885824e-06,4.495223038672261e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1845,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:41,1.0700413333333334,OPTIMAL,81.86895604876402,81.86895743427542,1.385511396279071e-06,1.2930217037292772e-10,1.5507764493660058e-14,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0700413333333334, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 81.86895604876402, ""dual_objective_value"": 81.86895743427542, ""duality_gap"": 1.385511396279071e-06, ""primal_infeasibility"": 1.2930217037292772e-10, ""dual_infeasibility"": 1.5507764493660058e-14, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1871,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:36,3.7947375416666667,NUM_ERROR,81.86902025037489,81.86944910336783,0.00042885299293971,4.94138352678929e-07,1.1701289111328567e-08,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.7947375416666667, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 81.86902025037489, ""dual_objective_value"": 81.86944910336783, ""duality_gap"": 0.00042885299293971, ""primal_infeasibility"": 4.94138352678929e-07, ""dual_infeasibility"": 1.1701289111328567e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2316,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2052,cvxpy_clarabel,unknown,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:04:44,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2053,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:04:59,14.465261220932007,OPTIMAL,303.5392513049725,303.53924845771263,2.8472598501139146e-06,7.080286602904634e-08,8.487394573341143e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2317,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2319,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2320,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2318,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2054,cvxpy_scs,unknown,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:06:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2051,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:02:43,2.7531580924987793,OPTIMAL,303.5393343673693,303.5393239344627,1.0432906606183678e-05,3.293294155188434e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1846,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:48,1.0686595833333334,OPTIMAL,303.5393167017354,303.5393198675198,3.1657843919674633e-06,3.327821459253514e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0686595833333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 303.5393167017354, ""dual_objective_value"": 303.5393198675198, ""duality_gap"": 3.1657843919674633e-06, ""primal_infeasibility"": 3.327821459253514e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:45"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1872,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:46,4.021484041666667,NUM_ERROR,303.53929877505766,303.540211904581,0.0009131295233260062,5.409184861944874e-07,5.977453961703577e-09,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 4.021484041666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 303.53929877505766, ""dual_objective_value"": 303.540211904581, ""duality_gap"": 0.0009131295233260062, ""primal_infeasibility"": 5.409184861944874e-07, ""dual_infeasibility"": 5.977453961703577e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2321,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2056,cvxpy_clarabel,unknown,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:09:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2057,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:09:20,14.835282802581787,OPTIMAL,747.328215683326,747.3282126610573,3.022268742824963e-06,4.0097982702259803e-08,1.144431183059174e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2322,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2324,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:45,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2325,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2323,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2058,cvxpy_scs,unknown,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:11:20,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2055,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:07:03,2.731801986694336,OPTIMAL,747.3283200675708,747.3283086121074,1.1455463322818105e-05,2.765810017928616e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1847,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:41:54,0.9967734583333333,OPTIMAL,747.3283058391797,747.3283049708084,8.683713303980767e-07,2.2452130375841572e-10,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9967734583333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 747.3283058391797, ""dual_objective_value"": 747.3283049708084, ""duality_gap"": 8.683713303980767e-07, ""primal_infeasibility"": 2.2452130375841572e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:41:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1873,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:45:55,3.3964448333333332,NUM_ERROR,747.328611326081,747.3286056221518,5.703929218725534e-06,1.5891172434487362e-06,1.0336478520663563e-09,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 3.3964448333333332, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 747.328611326081, ""dual_objective_value"": 747.3286056221518, ""duality_gap"": 5.703929218725534e-06, ""primal_infeasibility"": 1.5891172434487362e-06, ""dual_infeasibility"": 1.0336478520663563e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:45:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2326,scipy_linprog,scipy-1.15.3,SDPLIB,gpp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:47,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2060,cvxpy_clarabel,unknown,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:12:04,28.537490129470825,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:11:36 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:11:36 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:11:36 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:11:36 - python_solver_runner - INFO - Subprocess solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - python_solver_runner - INFO - Solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:11:36 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-1.dat-s\n2025-08-04 22:11:36 - dat_loader - INFO - Converted gpp500-1: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:11:36 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-1', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2061,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:14:04,117.96824312210083,OPTIMAL,25.320526674810647,25.32052637938557,2.954250781783685e-07,2.1919175642173723e-08,8.274734152904314e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2327,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2329,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2330,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2328,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2062,cvxpy_scs,unknown,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:04,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2059,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:11:36,14.758704900741577,OPTIMAL,25.32054457240321,25.320543492733886,1.079669324610677e-06,1.3074092923281278e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1848,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:04,2.947858166666667,NUM_ERROR,25.320546265113887,25.320543834359203,2.430754683757641e-06,3.084055027579803e-14,1.140507524262097e-12,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""num_error"", ""solve_time"": 2.947858166666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 25.320546265113887, ""dual_objective_value"": 25.320543834359203, ""duality_gap"": 2.430754683757641e-06, ""primal_infeasibility"": 3.084055027579803e-14, ""dual_infeasibility"": 1.140507524262097e-12, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:01"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1874,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:46:18,15.377118958333334,NUM_ERROR,25.320632841703226,25.322930361468835,0.0022975197656087687,1.1452090235982779e-06,3.397050009105795e-08,28,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.377118958333334, ""setup_time"": [], ""iterations"": 28, ""primal_objective_value"": 25.320632841703226, ""dual_objective_value"": 25.322930361468835, ""duality_gap"": 0.0022975197656087687, ""primal_infeasibility"": 1.1452090235982779e-06, ""dual_infeasibility"": 3.397050009105795e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:46:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2331,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2064,cvxpy_clarabel,unknown,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:49,28.745557069778442,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:16:20 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:16:20 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:16:20 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:16:20 - python_solver_runner - INFO - Subprocess solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - python_solver_runner - INFO - Solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:16:20 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-2.dat-s\n2025-08-04 22:16:20 - dat_loader - INFO - Converted gpp500-2: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:16:20 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-2', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2065,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:18:44,114.04924011230469,OPTIMAL,156.06035666172633,156.06035552858836,1.133137971010001e-06,4.103628736945596e-08,8.100882058962239e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2332,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2334,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2335,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2333,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:32:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2066,cvxpy_scs,unknown,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:20:44,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2063,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:16:20,14.896263122558594,OPTIMAL (INACCURATE),156.06044168820128,156.06038737307432,5.431512695963647e-05,9.95614195158524e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1849,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:15,2.782814,OPTIMAL,156.06039007012993,156.06038734464326,2.725486666577126e-06,1.5107253167137408e-11,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.782814, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": 156.06039007012993, ""dual_objective_value"": 156.06038734464326, ""duality_gap"": 2.725486666577126e-06, ""primal_infeasibility"": 1.5107253167137408e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1875,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:46:41,15.842044375,NUM_ERROR,156.06069685644727,156.0654106456209,0.004713789173621308,5.653736676264694e-07,2.731499527461661e-08,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.842044375, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 156.06069685644727, ""dual_objective_value"": 156.0654106456209, ""duality_gap"": 0.004713789173621308, ""primal_infeasibility"": 5.653736676264694e-07, ""dual_infeasibility"": 2.731499527461661e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:46:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2336,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2068,cvxpy_clarabel,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:21:32,30.809092044830322,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:21:01 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:21:01 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:21:01 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:21:01 - python_solver_runner - INFO - Subprocess solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - python_solver_runner - INFO - Solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:21:01 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-3.dat-s\n2025-08-04 22:21:01 - dat_loader - INFO - Converted gpp500-3: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:21:01 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-3', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2069,cvxpy_cvxopt,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:23:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2337,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2339,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2340,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2338,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2070,cvxpy_scs,unknown,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:25:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2067,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:21:00,14.947671175003052,OPTIMAL,513.0176116916346,513.0176020214957,9.670138865658373e-06,1.7217391148694617e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1850,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:26,2.2795346666666667,OPTIMAL,513.0176090027193,513.0176019918591,7.010860144873732e-06,4.510660770051609e-12,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.2795346666666667, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 513.0176090027193, ""dual_objective_value"": 513.0176019918591, ""duality_gap"": 7.010860144873732e-06, ""primal_infeasibility"": 4.510660770051609e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1876,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:47:06,18.165691125,NUM_ERROR,513.0180735864465,513.0180749365385,1.3500920204023714e-06,4.4434696313909057e-07,1.0333092976055663e-09,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 18.165691125, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 513.0180735864465, ""dual_objective_value"": 513.0180749365385, ""duality_gap"": 1.3500920204023714e-06, ""primal_infeasibility"": 4.4434696313909057e-07, ""dual_infeasibility"": 1.0333092976055663e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:47:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2341,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2072,cvxpy_clarabel,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:26:19,30.212826013565063,SIGKILL,,,,,,,"{""error_type"": ""SIGKILL"", ""error_details"": ""Process terminated (returncode -9). 2025-08-04 22:25:49 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:25:49 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:25:49 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:25:49 - python_solver_runner - INFO - Subprocess solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - python_solver_runner - INFO - Solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:25:49 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-4.dat-s\n2025-08-04 22:25:49 - dat_loader - INFO - Converted gpp500-4: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:25:49 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-4', class='SDP', 250000 vars, 501 constraints)"", ""problem_class"": ""SDP""}" +2073,cvxpy_cvxopt,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:28:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2342,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2344,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2345,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2343,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2074,cvxpy_scs,unknown,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:30:19,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2071,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T13:25:48,15.022250890731812,OPTIMAL,1567.0188583796264,1567.0187909110516,6.746857479811297e-05,7.443909590382624e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1851,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:37,2.642140875,OPTIMAL,1567.0187951883258,1567.0187917942853,3.3940405046450906e-06,8.670520994656674e-12,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.642140875, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 1567.0187951883258, ""dual_objective_value"": 1567.0187917942853, ""duality_gap"": 3.3940405046450906e-06, ""primal_infeasibility"": 8.670520994656674e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1877,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:47:28,15.819546916666667,NUM_ERROR,1567.0194253372717,1567.026642378539,0.007217041267267632,3.401601219505255e-07,3.479858546976129e-09,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 15.819546916666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 1567.0194253372717, ""dual_objective_value"": 1567.026642378539, ""duality_gap"": 0.007217041267267632, ""primal_infeasibility"": 3.401601219505255e-07, ""dual_infeasibility"": 3.479858546976129e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:47:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2346,scipy_linprog,scipy-1.15.3,SDPLIB,gpp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:33:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1000,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01,0.005572795867919922,OPTIMAL,-2.0326681219679923,-2.0326681159848516,-5.983140649590268e-09,1.5142732808798136e-09,5.8528406408805414e-08,27,"{""solver_solve_time"": 0.002366377, ""problem_class"": ""SDP""}" +1001,cvxpy_cvxopt,unknown,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:01,0.05380678176879883,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1004,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1005,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1006,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1007,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1002,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02,0.5455272197723389,OPTIMAL (INACCURATE),-2.034025995512536,-2.033865317055243,-0.00016067845729317298,2.999590308495669e-06,0.0,100000,"{""solver_solve_time"": 0.541413458, ""problem_class"": ""SDP""}" +1003,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:02,0.008548974990844727,OPTIMAL,-2.0326162960518173,-2.0326162960518173,0.0,3.967316966357652e-09,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1614,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:34,0.37224925,UNKNOWN,-2.0327304439087186,-2.032679460642064,5.098326665464725e-05,2.666994274501407e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.37224925, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -2.0327304439087186, ""dual_objective_value"": -2.032679460642064, ""duality_gap"": 5.098326665464725e-05, ""primal_infeasibility"": 2.666994274501407e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1471,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:35,0.38086575,NUM_ERROR,-2.032702691217913,-2.0326573971090376,4.5294108875548744e-05,1.1139356829973714e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.38086575, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -2.032702691217913, ""dual_objective_value"": -2.0326573971090376, ""duality_gap"": 4.5294108875548744e-05, ""primal_infeasibility"": 1.1139356829973714e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1008,scipy_linprog,scipy-1.15.3,SDPLIB,hinf1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:55:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +923,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.006523847579956055,OPTIMAL (INACCURATE),-108.78737562810723,-108.78736989216672,-5.73594050479187e-06,7.50016586494756e-08,8.372072031670971e-08,24,"{""solver_solve_time"": 0.003101377, ""problem_class"": ""SDP""}" +924,cvxpy_cvxopt,unknown,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.0596768856048584,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +927,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +928,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +929,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +930,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +925,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.7690088748931885,OPTIMAL,-109.67066975246388,-109.6700504066821,-0.0006193457817857961,2.294628633625865e-06,3.7480545771311504e-06,97050,"{""solver_solve_time"": 0.765419125, ""problem_class"": ""SDP""}" +926,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:57,0.012375831604003906,OPTIMAL (INACCURATE),-108.86347113724204,-108.78673318394273,-0.07673795329931465,8.231747852466604e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1623,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:23,0.365393375,UNKNOWN,-108.7683048840259,-108.77818212309559,0.009877239069695065,2.3595268341152298e-05,0.0,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.365393375, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -108.7683048840259, ""dual_objective_value"": -108.77818212309559, ""duality_gap"": 0.009877239069695065, ""primal_infeasibility"": 2.3595268341152298e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1480,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:24,0.3626290833333333,NUM_ERROR,-108.75993162203638,-108.75125626509862,0.008675356937757783,5.284061049311702e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3626290833333333, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -108.75993162203638, ""dual_objective_value"": -108.75125626509862, ""duality_gap"": 0.008675356937757783, ""primal_infeasibility"": 5.284061049311702e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +931,scipy_linprog,scipy-1.15.3,SDPLIB,hinf10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:23:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +934,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14,0.00967717170715332,OPTIMAL (INACCURATE),-65.90991351702351,-65.90990389505751,-9.62196600085008e-06,3.264652971267897e-08,7.961207252939813e-10,25,"{""solver_solve_time"": 0.006049124, ""problem_class"": ""SDP""}" +935,cvxpy_cvxopt,unknown,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:14,0.06746697425842285,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +938,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +939,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +940,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +941,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +936,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15,1.2248289585113525,OPTIMAL (INACCURATE),-67.03265487888538,-66.9425045006043,-0.09015037828108063,7.271735945414379e-06,2.372132910723892e-12,100000,"{""solver_solve_time"": 1.2213040000000002, ""problem_class"": ""SDP""}" +937,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:15,0.012714862823486328,OPTIMAL (INACCURATE),-65.96092354028318,-65.91206628197119,-0.04885725831198329,4.861398484093877e-07,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1624,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:29,0.4292201666666667,UNKNOWN,-65.91623172173267,-65.89340793308176,0.022823788650910615,1.465391663685626e-07,0.0,25,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.4292201666666667, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": -65.91623172173267, ""dual_objective_value"": -65.89340793308176, ""duality_gap"": 0.022823788650910615, ""primal_infeasibility"": 1.465391663685626e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1481,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:30,0.3754861666666667,NUM_ERROR,-65.88284488105815,-65.88010110073674,0.002743780321409872,1.2872974305043217e-07,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3754861666666667, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -65.88284488105815, ""dual_objective_value"": -65.88010110073674, ""duality_gap"": 0.002743780321409872, ""primal_infeasibility"": 1.2872974305043217e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +942,scipy_linprog,scipy-1.15.3,SDPLIB,hinf11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:24:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +956,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:25,0.01746988296508789,OPTIMAL,-3.2433629986793885e-05,-3.2432575308661486e-05,-1.0546781323988747e-09,8.300260965155049e-06,0.0,44,"{""solver_solve_time"": 0.013888374, ""problem_class"": ""SDP""}" +957,cvxpy_cvxopt,unknown,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:26,0.3970298767089844,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +960,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +961,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +962,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +963,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +958,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28,1.8517041206359863,OPTIMAL (INACCURATE),-1.5660892533183435,-1.550972805649461,-0.015116447668882538,1.2713713263916197e-07,9.437455397904784e-07,100000,"{""solver_solve_time"": 1.846340583, ""problem_class"": ""SDP""}" +959,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:28,0.01336216926574707,OPTIMAL (INACCURATE),-26.28462100943706,-3.218764582272006,-23.065856427165055,0.00026649547088509193,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1625,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:34,0.5892792083333334,UNKNOWN,-2.2571558268484783e-05,-2.9572121961358873e-05,7.00056369287409e-06,1.538325025557428e-12,0.0,61,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5892792083333334, ""setup_time"": [], ""iterations"": 61, ""primal_objective_value"": -2.2571558268484783e-05, ""dual_objective_value"": -2.9572121961358873e-05, ""duality_gap"": 7.00056369287409e-06, ""primal_infeasibility"": 1.538325025557428e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1482,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:35,0.3087037083333333,OPTIMAL,-0.11791225666476954,-0.09905856082734718,0.018853695837422357,5.037944322430809e-09,0.0,29,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3087037083333333, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -0.11791225666476954, ""dual_objective_value"": -0.09905856082734718, ""duality_gap"": 0.018853695837422357, ""primal_infeasibility"": 5.037944322430809e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +964,scipy_linprog,scipy-1.15.3,SDPLIB,hinf12_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:48:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +967,cvxpy_clarabel,unknown,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39,0.014467954635620117,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +968,cvxpy_cvxopt,unknown,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:39,0.08350205421447754,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +971,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +972,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +973,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +974,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +969,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42,2.7371368408203125,OPTIMAL (INACCURATE),-30.338550177295044,-30.33799855091353,-0.0005516263815152911,5.355726666806104e-06,9.237315025625231e-05,100000,"{""solver_solve_time"": 2.731196458, ""problem_class"": ""SDP""}" +970,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:42,0.012221097946166992,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1626,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:40,0.5201742916666666,UNKNOWN,-44.36054953507353,-44.352737721585974,0.0078118134875566625,2.34826882611184e-05,1.9677815225005485e-09,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5201742916666666, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -44.36054953507353, ""dual_objective_value"": -44.352737721585974, ""duality_gap"": 0.0078118134875566625, ""primal_infeasibility"": 2.34826882611184e-05, ""dual_infeasibility"": 1.9677815225005485e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1483,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:41,0.34354358333333335,NUM_ERROR,-44.98782800411155,-44.73512547033813,0.2527025337734159,5.0403409648842495e-05,5.164198359985477e-07,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.34354358333333335, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -44.98782800411155, ""dual_objective_value"": -44.73512547033813, ""duality_gap"": 0.2527025337734159, ""primal_infeasibility"": 5.0403409648842495e-05, ""dual_infeasibility"": 5.164198359985477e-07, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +975,scipy_linprog,scipy-1.15.3,SDPLIB,hinf13_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:50:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +978,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.029858112335205078,OPTIMAL (INACCURATE),-12.991620016749662,-12.991619832202199,-1.8454746353313567e-07,7.960100598663184e-08,2.8200844817922423e-07,25,"{""solver_solve_time"": 0.023652419, ""problem_class"": ""SDP""}" +979,cvxpy_cvxopt,unknown,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.1548140048980713,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +982,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +983,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +984,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +985,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +980,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:12,0.260235071182251,OPTIMAL,-13.016693637637012,-13.016676436910254,-1.7200726757593543e-05,9.713120873550967e-06,3.7424537617375734e-05,7350,"{""solver_solve_time"": 0.25517412500000003, ""problem_class"": ""SDP""}" +981,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:13,0.01812005043029785,OPTIMAL (INACCURATE),-12.977127071396835,-13.002235688978644,0.025108617581809156,1.4121816289795736e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1627,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:46,0.5131727916666666,UNKNOWN,-12.989960076415304,-12.989934206347613,2.5870067691613485e-05,8.66236229712859e-08,9.648370597983024e-10,31,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5131727916666666, ""setup_time"": [], ""iterations"": 31, ""primal_objective_value"": -12.989960076415304, ""dual_objective_value"": -12.989934206347613, ""duality_gap"": 2.5870067691613485e-05, ""primal_infeasibility"": 8.66236229712859e-08, ""dual_infeasibility"": 9.648370597983024e-10, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1484,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:47,0.42435625,NUM_ERROR,-12.994433062802717,-12.993857944680892,0.0005751181218247581,3.459515165126997e-07,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.42435625, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -12.994433062802717, ""dual_objective_value"": -12.993857944680892, ""duality_gap"": 0.0005751181218247581, ""primal_infeasibility"": 3.459515165126997e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +986,scipy_linprog,scipy-1.15.3,SDPLIB,hinf14,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:52:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +989,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23,0.03337883949279785,OPTIMAL (INACCURATE),-24.823804805102615,-24.823648667307985,-0.00015613779462952948,3.8123673598819243e-06,1.3632493267012344e-06,19,"{""solver_solve_time"": 0.02654958, ""problem_class"": ""SDP""}" +990,cvxpy_cvxopt,unknown,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:23,0.12059998512268066,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +993,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +994,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +995,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +996,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +991,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28,4.816857099533081,OPTIMAL (INACCURATE),-6.535899836686729,-6.535738728003019,-0.0001611086837103315,1.2124638376828503e-05,0.0007877132599741793,100000,"{""solver_solve_time"": 4.811149333, ""problem_class"": ""SDP""}" +992,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:28,0.018558025360107422,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1628,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:52,0.5514212916666666,UNKNOWN,-23.987835100185112,-24.001097916938342,0.0132628167532296,3.144875496622765e-05,6.997893475414923e-09,29,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.5514212916666666, ""setup_time"": [], ""iterations"": 29, ""primal_objective_value"": -23.987835100185112, ""dual_objective_value"": -24.001097916938342, ""duality_gap"": 0.0132628167532296, ""primal_infeasibility"": 3.144875496622765e-05, ""dual_infeasibility"": 6.997893475414923e-09, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1485,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:52,0.3233525,NUM_ERROR,-24.83998341547683,-24.214925261340976,0.6250581541358535,0.000150801335775723,4.4160427926549335e-06,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3233525, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -24.83998341547683, ""dual_objective_value"": -24.214925261340976, ""duality_gap"": 0.6250581541358535, ""primal_infeasibility"": 0.000150801335775723, ""dual_infeasibility"": 4.4160427926549335e-06, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:49"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +997,scipy_linprog,scipy-1.15.3,SDPLIB,hinf15,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:53:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1011,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35,0.005145072937011719,OPTIMAL,-10.967598918863468,-10.96759886205494,-5.6808527659768515e-08,1.9892414732039526e-07,0.0,17,"{""solver_solve_time"": 0.001845334, ""problem_class"": ""SDP""}" +1012,cvxpy_cvxopt,unknown,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:35,0.03723597526550293,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1015,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1016,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1017,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1018,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1013,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36,0.4676029682159424,OPTIMAL,-10.956014425126677,-10.95598391306363,-3.0512063046828075e-05,2.723109573191675e-06,0.00048699575464379656,74125,"{""solver_solve_time"": 0.46430825, ""problem_class"": ""SDP""}" +1014,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:36,0.009016036987304688,OPTIMAL,-10.967063926554635,-10.967063926554637,1.7763568394002505e-15,5.723703689342138e-10,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1615,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:40,0.3056114583333333,UNKNOWN,-10.969253774110527,-10.968153281488807,0.0011004926217204059,3.1722464136341583e-06,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.3056114583333333, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -10.969253774110527, ""dual_objective_value"": -10.968153281488807, ""duality_gap"": 0.0011004926217204059, ""primal_infeasibility"": 3.1722464136341583e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1472,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:40,0.291179125,NUM_ERROR,-10.967252738065635,-10.967220837229675,3.190083596038562e-05,2.413420742969955e-07,3.97875826735212e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.291179125, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -10.967252738065635, ""dual_objective_value"": -10.967220837229675, ""duality_gap"": 3.190083596038562e-05, ""primal_infeasibility"": 2.413420742969955e-07, ""dual_infeasibility"": 3.97875826735212e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:37"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1019,scipy_linprog,scipy-1.15.3,SDPLIB,hinf2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:57:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2228,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:22,0.0054168701171875,OPTIMAL,-56.95458417169877,-56.954584100815666,-7.088310383096541e-08,1.2182104934532567e-06,1.935530761916017e-08,21,"{""solver_solve_time"": 0.00223204, ""problem_class"": ""SDP""}" +2229,cvxpy_cvxopt,unknown,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:23,0.04180288314819336,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +850,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +851,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +852,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +853,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2230,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:23,0.05362105369567871,OPTIMAL,-56.95290556196835,-56.95257093437306,-0.00033462759529356845,4.360158022165924e-06,9.60043824422556e-06,7875,"{""solver_solve_time"": 0.050502125, ""problem_class"": ""SDP""}" +2227,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:22,0.008648872375488281,OPTIMAL (INACCURATE),-56.946017137117806,-56.94340849281433,-0.0026086443034785134,1.9356932179028497e-06,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1616,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:45,0.3675725833333333,OPTIMAL,-56.96785514137487,-56.95432364943337,0.013531491941499496,6.41331617518588e-06,0.0,20,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3675725833333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -56.96785514137487, ""dual_objective_value"": -56.95432364943337, ""duality_gap"": 0.013531491941499496, ""primal_infeasibility"": 6.41331617518588e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1473,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:46,0.2846183333333333,NUM_ERROR,-56.94166534866042,-56.93662791786083,0.005037430799589515,4.0341715618686706e-07,8.598366229162091e-08,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.2846183333333333, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -56.94166534866042, ""dual_objective_value"": -56.93662791786083, ""duality_gap"": 0.005037430799589515, ""primal_infeasibility"": 4.0341715618686706e-07, ""dual_infeasibility"": 8.598366229162091e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +854,scipy_linprog,scipy-1.15.3,SDPLIB,hinf3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T11:35:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1022,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.005476951599121094,OPTIMAL,-274.76580456156256,-274.7658044528675,-1.0869507605093531e-07,2.9587869724570718e-08,0.0,22,"{""solver_solve_time"": 0.002260333, ""problem_class"": ""SDP""}" +1023,cvxpy_cvxopt,unknown,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.052572011947631836,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1026,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1027,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1028,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1029,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1024,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.05102682113647461,OPTIMAL,-274.8169686239859,-274.8175011426577,0.0005325186718323494,1.5793940777175766e-05,5.0915418172079886e-09,7175,"{""solver_solve_time"": 0.047997041000000004, ""problem_class"": ""SDP""}" +1025,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:42,0.01003885269165039,OPTIMAL (INACCURATE),-274.7642606658802,-274.7640791113404,-0.00018155453983581538,2.067736809821613e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1617,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:51,0.348355125,MAX_ITER,-274.76574859289997,-274.7647974867353,0.0009511061646776398,8.935314643369996e-08,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.348355125, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -274.76574859289997, ""dual_objective_value"": -274.7647974867353, ""duality_gap"": 0.0009511061646776398, ""primal_infeasibility"": 8.935314643369996e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1474,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:51,0.348588375,OPTIMAL,-274.76402427242704,-274.76401549857536,8.773851675414335e-06,6.1072960080975595e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.348588375, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": -274.76402427242704, ""dual_objective_value"": -274.76401549857536, ""duality_gap"": 8.773851675414335e-06, ""primal_infeasibility"": 6.1072960080975595e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1030,scipy_linprog,scipy-1.15.3,SDPLIB,hinf4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:58:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1033,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.0060749053955078125,OPTIMAL (INACCURATE),-362.4299072470292,-362.4295803431538,-0.000326903875361495,4.958727500256144e-06,0.0,18,"{""solver_solve_time"": 0.002001209, ""problem_class"": ""SDP""}" +1034,cvxpy_cvxopt,unknown,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.0457768440246582,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1037,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1038,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1039,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1040,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1035,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.08220601081848145,OPTIMAL,-320.9234414376666,-320.92497928960995,0.0015378519433397742,3.052930540788306e-06,0.00027660204589100273,13300,"{""solver_solve_time"": 0.07908475, ""problem_class"": ""SDP""}" +1036,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T11:59:50,0.008898258209228516,OPTIMAL (INACCURATE),-363.08837704719326,-362.65312853712743,-0.43524851006583276,0.0031096059091866054,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1618,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:02:56,0.30704,UNKNOWN,-362.8407662937241,-362.5463311167045,0.29443517701957944,5.076986649325987e-05,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.30704, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -362.8407662937241, ""dual_objective_value"": -362.5463311167045, ""duality_gap"": 0.29443517701957944, ""primal_infeasibility"": 5.076986649325987e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1475,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:38:57,0.29583345833333335,NUM_ERROR,-362.1389840878955,-362.19928444461704,0.06030035672154099,4.623878615933405e-05,1.468529060102308e-08,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.29583345833333335, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -362.1389840878955, ""dual_objective_value"": -362.19928444461704, ""duality_gap"": 0.06030035672154099, ""primal_infeasibility"": 4.623878615933405e-05, ""dual_infeasibility"": 1.468529060102308e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1041,scipy_linprog,scipy-1.15.3,SDPLIB,hinf5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:00:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1044,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31,0.005522966384887695,OPTIMAL,-448.95023164103816,-448.9502285290299,-3.1120082439883845e-06,4.4077878809117167e-07,0.0,23,"{""solver_solve_time"": 0.002378126, ""problem_class"": ""SDP""}" +1045,cvxpy_cvxopt,unknown,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:31,0.05508112907409668,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1048,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1049,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1050,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1051,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1046,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32,0.6322319507598877,OPTIMAL (INACCURATE),-245.90113198641467,-245.85737180839376,-0.043760178020903595,1.3088894176536186e-05,0.0003530484760489283,100000,"{""solver_solve_time"": 0.627335833, ""problem_class"": ""SDP""}" +1047,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:32,0.011322736740112305,OPTIMAL (INACCURATE),-448.97876320335996,-448.9556735151818,-0.023089688178174583,3.2823630729197306e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1619,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:02,0.3865935,MAX_ITER,-448.94845306947616,-448.93787068369375,0.01058238578241344,1.0795193288541605e-05,2.9425725883582585e-11,26,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.3865935, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -448.94845306947616, ""dual_objective_value"": -448.93787068369375, ""duality_gap"": 0.01058238578241344, ""primal_infeasibility"": 1.0795193288541605e-05, ""dual_infeasibility"": 2.9425725883582585e-11, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:02:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1476,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:02,0.34503904166666666,NUM_ERROR,-448.93866526508225,-448.93735904243533,0.0013062226469173766,7.16453106043704e-08,1.0964487510881784e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.34503904166666666, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -448.93866526508225, ""dual_objective_value"": -448.93735904243533, ""duality_gap"": 0.0013062226469173766, ""primal_infeasibility"": 7.16453106043704e-08, ""dual_infeasibility"": 1.0964487510881784e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:38:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1052,scipy_linprog,scipy-1.15.3,SDPLIB,hinf6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:02:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1055,cvxpy_clarabel,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23,0.00506281852722168,ERROR,,,,,,,"{""error_message"": ""Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1056,cvxpy_cvxopt,unknown,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:23,0.03922271728515625,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1059,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1060,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1061,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1062,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1057,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24,0.6557118892669678,OPTIMAL (INACCURATE),-389.32499417666725,-389.3066200564397,-0.018374120227520052,6.437354049320336e-06,1.5407433103673238e-06,100000,"{""solver_solve_time"": 0.652232833, ""problem_class"": ""SDP""}" +1058,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:24,0.007824182510375977,OPTIMAL (INACCURATE),-386.2729744082578,-394.11795931873803,7.844984910480207,0.0010676527612919265,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1620,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:07,0.321014,OPTIMAL,-390.8268127270961,-390.81955811039285,0.007254616703278316,5.153919837286196e-06,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.321014, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -390.8268127270961, ""dual_objective_value"": -390.81955811039285, ""duality_gap"": 0.007254616703278316, ""primal_infeasibility"": 5.153919837286196e-06, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1477,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:08,0.30022125,NUM_ERROR,-390.4187062005368,-388.9712939688352,1.4474122317016054,2.1674897967340183e-06,1.349616784492387e-08,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.30022125, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -390.4187062005368, ""dual_objective_value"": -388.9712939688352, ""duality_gap"": 1.4474122317016054, ""primal_infeasibility"": 2.1674897967340183e-06, ""dual_infeasibility"": 1.349616784492387e-08, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1063,scipy_linprog,scipy-1.15.3,SDPLIB,hinf7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +901,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.0065250396728515625,OPTIMAL (INACCURATE),-116.162359822706,-116.16235950573696,-3.1696903590727743e-07,7.420952338087494e-07,3.2950076855126425e-07,29,"{""solver_solve_time"": 0.003015376, ""problem_class"": ""SDP""}" +902,cvxpy_cvxopt,unknown,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.03650498390197754,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +905,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +906,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +907,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +908,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +903,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.2217872142791748,OPTIMAL,-113.4663274817136,-113.46736346299392,0.0010359812803102386,2.0881037650067233e-06,2.9352242087893714e-05,33450,"{""solver_solve_time"": 0.218281083, ""problem_class"": ""SDP""}" +904,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:07,0.008577823638916016,OPTIMAL (INACCURATE),-116.18084367885152,-116.17297265490086,-0.007871023950656308,2.1524411488941546e-05,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1621,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:13,0.3580920416666667,MAX_ITER,-116.18907747348399,-116.16764622467993,0.02143124880406333,1.107192932812266e-05,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.3580920416666667, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -116.18907747348399, ""dual_objective_value"": -116.16764622467993, ""duality_gap"": 0.02143124880406333, ""primal_infeasibility"": 1.107192932812266e-05, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1478,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:13,0.3128221666666667,NUM_ERROR,-116.14800748522454,-116.14764044645105,0.0003670387734899805,5.243531762309649e-07,1.3890768653808889e-09,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3128221666666667, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -116.14800748522454, ""dual_objective_value"": -116.14764044645105, ""duality_gap"": 0.0003670387734899805, ""primal_infeasibility"": 5.243531762309649e-07, ""dual_infeasibility"": 1.3890768653808889e-09, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +909,scipy_linprog,scipy-1.15.3,SDPLIB,hinf8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:21:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +912,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05,0.006279945373535156,OPTIMAL,-236.2492537893636,-236.24925167798062,-2.111382968905673e-06,1.1227693010097353e-09,7.503567730794685e-13,27,"{""solver_solve_time"": 0.002816334, ""problem_class"": ""SDP""}" +913,cvxpy_cvxopt,unknown,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:05,0.07575297355651855,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +916,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +917,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +918,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +919,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +914,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06,0.6299283504486084,OPTIMAL (INACCURATE),-23.995993470322126,-23.73307395594187,-0.2629195143802576,0.0002501696048966344,4.7055340393382825e-06,100000,"{""solver_solve_time"": 0.626416875, ""problem_class"": ""SDP""}" +915,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:06,0.02733016014099121,OPTIMAL (INACCURATE),-236.24929860181874,-236.24925825295142,-4.034886731574261e-05,6.211843885658271e-06,1.1701336108488862e-17,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1622,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:03:19,0.3677940416666667,UNKNOWN,-236.24926143119387,-236.2492582522059,3.178987981300452e-06,4.333392854983704e-07,6.696508028901661e-17,23,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.3677940416666667, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -236.24926143119387, ""dual_objective_value"": -236.2492582522059, ""duality_gap"": 3.178987981300452e-06, ""primal_infeasibility"": 4.333392854983704e-07, ""dual_infeasibility"": 6.696508028901661e-17, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:03:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1479,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:39:19,0.317706625,OPTIMAL,-236.24742814369876,-236.2473437618947,8.438180404368723e-05,5.8628976583948846e-09,6.012462469094062e-12,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.317706625, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": -236.24742814369876, ""dual_objective_value"": -236.2473437618947, ""duality_gap"": 8.438180404368723e-05, ""primal_infeasibility"": 5.8628976583948846e-09, ""dual_infeasibility"": 6.012462469094062e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:39:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +920,scipy_linprog,scipy-1.15.3,SDPLIB,hinf9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-16T15:22:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1110,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:10:33,5.780447959899902,OPTIMAL,-629.1647805357129,-629.1647805350874,-6.255049811443314e-10,3.358572693912759e-15,1.776705970627518e-11,16,"{""solver_solve_time"": 2.942479084, ""problem_class"": ""SDP""}" +1111,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:16:28,228.55329608917236,OPTIMAL,-629.1647801726815,-629.1647801710005,-1.6809735825518146e-09,1.2726085361287806e-12,2.1291444400788673e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1113,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1114,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1115,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1116,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2274,cvxpy_scs,unknown,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:37:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1112,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:36:57,6.635096073150635,OPTIMAL,-629.1647613155295,-629.1647831444957,2.1828966168868646e-05,1.093272639824208e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1653,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:07:14,2.363915125,OPTIMAL,-629.1647770178772,-629.1647830495338,6.031656539562391e-06,1.487176561555531e-13,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 2.363915125, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -629.1647770178772, ""dual_objective_value"": -629.1647830495338, ""duality_gap"": 6.031656539562391e-06, ""primal_infeasibility"": 1.487176561555531e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:07:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1523,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:48:02,18.21366383333333,OPTIMAL,-629.1647785850998,-629.1647785773678,7.73206920712255e-09,1.9597982503383297e-09,3.331356481626968e-11,16,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 18.21366383333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -629.1647785850998, ""dual_objective_value"": -629.1647785773678, ""duality_gap"": 7.73206920712255e-09, ""primal_infeasibility"": 1.9597982503383297e-09, ""dual_infeasibility"": 3.331356481626968e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:48:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1117,scipy_linprog,scipy-1.15.3,SDPLIB,maxG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:37:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2104,cvxpy_clarabel,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:28,1.0812201499938965,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2105,cvxpy_cvxopt,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:30,1.0752131938934326,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1120,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1121,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1122,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1123,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2106,cvxpy_scs,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:31,1.0642778873443604,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2103,cvxpy_sdpa,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:27,1.0839791297912598,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1654,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:09:36,15.456882125,OPTIMAL,-1567.6396346092076,-1567.6396447238442,1.011463655231637e-05,1.502035887240306e-11,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 15.456882125, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1567.6396346092076, ""dual_objective_value"": -1567.6396447238442, ""duality_gap"": 1.011463655231637e-05, ""primal_infeasibility"": 1.502035887240306e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:09:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1119,matlab_sedumi,unknown,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:12,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1124,scipy_linprog,scipy-1.15.3,SDPLIB,maxG32,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:48:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2108,cvxpy_clarabel,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:05:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2109,cvxpy_cvxopt,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:07:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1127,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1128,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1129,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1130,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2110,cvxpy_scs,unknown,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2107,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:03:45,12.59275507926941,OPTIMAL,-4006.255355989173,-4006.255524702168,0.0001687129947640642,2.0941798250870906e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1673,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:26:27,5.433042291666666,OPTIMAL,-4006.2555195572245,-4006.2555216808855,2.1236610336927697e-06,7.797328522618889e-14,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.433042291666666, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -4006.2555195572245, ""dual_objective_value"": -4006.2555216808855, ""duality_gap"": 2.1236610336927697e-06, ""primal_infeasibility"": 7.797328522618889e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:26:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1542,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:01:57,43.0097865,OPTIMAL,-4006.255460000534,-4006.255459886479,1.1405518307583407e-07,1.6434551009770762e-09,1.1291850783925127e-11,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 43.0097865, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": -4006.255460000534, ""dual_objective_value"": -4006.255459886479, ""duality_gap"": 1.1405518307583407e-07, ""primal_infeasibility"": 1.6434551009770762e-09, ""dual_infeasibility"": 1.1291850783925127e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:01:54"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1131,scipy_linprog,scipy-1.15.3,SDPLIB,maxG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T12:54:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2112,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:49,0.2541928291320801,OPTIMAL,-226.15735056371446,-226.15735056120263,-2.511825414330815e-09,4.677724965457351e-16,8.809188623572417e-11,11,"{""solver_solve_time"": 0.246065042, ""problem_class"": ""SDP""}" +2113,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:50,0.5887832641601562,OPTIMAL,-226.15734160717605,-226.15734155551763,-5.165841798770998e-08,6.202424795825198e-14,8.902537162396245e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2357,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2359,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:06,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2360,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2358,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2114,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:52,1.3103270530700684,OPTIMAL,-226.15643832070722,-226.15570990174183,-0.0007284189653944395,4.9409478283232725e-06,2.408292278682985e-07,1125,"{""solver_solve_time"": 1.302447541, ""problem_class"": ""SDP""}" +2111,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:48,0.034883737564086914,OPTIMAL,-226.15734786394398,-226.15735172707906,3.863135077608604e-06,3.0968379547604032e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1826,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:38,0.3674235416666667,OPTIMAL,-226.15735063849868,-226.15735153136035,8.928616637149389e-07,2.7784036751600645e-11,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3674235416666667, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -226.15735063849868, ""dual_objective_value"": -226.15735153136035, ""duality_gap"": 8.928616637149389e-07, ""primal_infeasibility"": 2.7784036751600645e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1852,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:51,0.42889166666666667,OPTIMAL,-226.15735066324342,-226.15735064685092,1.6392505131079815e-08,2.540251644217761e-09,7.337480389552916e-11,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.42889166666666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -226.15735066324342, ""dual_objective_value"": -226.15735064685092, ""duality_gap"": 1.6392505131079815e-08, ""primal_infeasibility"": 2.540251644217761e-09, ""dual_infeasibility"": 7.337480389552916e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:48"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2361,scipy_linprog,scipy-1.15.3,SDPLIB,mcp100,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2116,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:53,0.032792091369628906,OPTIMAL,-141.99047689078066,-141.99047689026875,-5.119034085510066e-10,4.156174261174552e-15,4.199415289446605e-11,12,"{""solver_solve_time"": 0.020084, ""problem_class"": ""SDP""}" +2117,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:55,1.1706581115722656,OPTIMAL,-141.9904749593561,-141.99047495055282,-8.803283435554476e-09,2.2453515911417613e-13,4.542127396475113e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2362,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2364,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2365,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:11,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2363,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:09,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2118,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:03,8.35070276260376,OPTIMAL,-141.98813786178076,-141.9875838883371,-0.0005539734436581512,2.8267894549544556e-06,3.83990291112102e-06,4350,"{""solver_solve_time"": 8.337701958, ""problem_class"": ""SDP""}" +2115,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:09:52,0.050338029861450195,OPTIMAL,-141.99047575527533,-141.99047735177834,1.596503011569439e-06,3.982608286351293e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1827,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:44,0.5272229166666667,OPTIMAL,-141.99047525291158,-141.99047737688758,2.1239760030766774e-06,3.5074058660380328e-12,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5272229166666667, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -141.99047525291158, ""dual_objective_value"": -141.99047737688758, ""duality_gap"": 2.1239760030766774e-06, ""primal_infeasibility"": 3.5074058660380328e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1853,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:42:57,1.2223734583333334,OPTIMAL,-141.99047629355732,-141.99047628004945,1.3507872154150391e-08,2.947795342213903e-09,1.7867929542859113e-10,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.2223734583333334, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -141.99047629355732, ""dual_objective_value"": -141.99047628004945, ""duality_gap"": 1.3507872154150391e-08, ""primal_infeasibility"": 2.947795342213903e-09, ""dual_infeasibility"": 1.7867929542859113e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:42:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2366,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2120,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:05,0.5691618919372559,OPTIMAL,-269.88016869497824,-269.8801686913607,-3.617515176301822e-09,3.335139604959785e-16,1.370718634958635e-10,11,"{""solver_solve_time"": 0.556317127, ""problem_class"": ""SDP""}" +2121,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:07,1.1793420314788818,OPTIMAL,-269.8801659941921,-269.88016597458284,-1.960927420441294e-08,1.8302081584984527e-14,3.1844196366459363e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2367,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:13,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2369,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2370,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2368,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:14,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2122,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:10,2.415357828140259,OPTIMAL,-269.8801469917551,-269.8801394704992,-7.521255895426293e-06,1.4821257835891417e-06,1.0745562097345573e-07,1225,"{""solver_solve_time"": 2.4024067909999998, ""problem_class"": ""SDP""}" +2119,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:04,0.04748392105102539,OPTIMAL,-269.8801629227768,-269.88017132963336,8.406856579767918e-06,9.623806008572918e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1828,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:49,0.541560125,OPTIMAL,-269.88017043292245,-269.88017065541254,2.2249008679864346e-07,7.365570128801219e-14,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.541560125, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -269.88017043292245, ""dual_objective_value"": -269.88017065541254, ""duality_gap"": 2.2249008679864346e-07, ""primal_infeasibility"": 7.365570128801219e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1854,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:03,0.8320392083333333,OPTIMAL,-269.88017030007154,-269.8801702946931,5.3784674491907936e-09,9.209708037490611e-10,2.2285924347635445e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.8320392083333333, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -269.88017030007154, ""dual_objective_value"": -269.8801702946931, ""duality_gap"": 5.3784674491907936e-09, ""primal_infeasibility"": 9.209708037490611e-10, ""dual_infeasibility"": 2.2285924347635445e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2371,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:16,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2124,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:14,3.524592161178589,OPTIMAL,-467.7501129260428,-467.75011292377854,-2.2642439034825657e-09,2.2015867814748726e-15,2.7290545959913828e-11,14,"{""solver_solve_time"": 3.5117294599999997, ""problem_class"": ""SDP""}" +2125,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:16,1.080678939819336,OPTIMAL,-467.75010646690146,-467.75010642794496,-3.895650024787756e-08,5.9965206332123494e-15,1.5401225413839454e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2372,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:17,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2374,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2375,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2373,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2126,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:18,1.1609041690826416,OPTIMAL,-467.7502234039853,-467.74997043188023,-0.0002529721050450462,4.1773529864416556e-07,4.656553667450933e-08,575,"{""solver_solve_time"": 1.148141541, ""problem_class"": ""SDP""}" +2123,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:10,0.047016143798828125,OPTIMAL,-467.7501026865027,-467.7501156367352,1.295023247394056e-05,3.1265375769840824e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1829,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:39:55,0.573352625,OPTIMAL,-467.75010984467355,-467.7501144740113,4.62933775224883e-06,3.4418429164954034e-13,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.573352625, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": -467.75010984467355, ""dual_objective_value"": -467.7501144740113, ""duality_gap"": 4.62933775224883e-06, ""primal_infeasibility"": 3.4418429164954034e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1855,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:09,0.813436375,OPTIMAL,-467.75011366517776,-467.75011365499245,1.0185317478317302e-08,1.2380352442101327e-09,1.2079205834364502e-11,18,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.813436375, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -467.75011366517776, ""dual_objective_value"": -467.75011365499245, ""duality_gap"": 1.0185317478317302e-08, ""primal_infeasibility"": 1.2380352442101327e-09, ""dual_infeasibility"": 1.2079205834364502e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2376,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2128,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:31,11.987443208694458,OPTIMAL,-864.4118587839267,-864.4118587756075,-8.319261723954696e-09,9.469259058323655e-15,2.5070234017971762e-11,12,"{""solver_solve_time"": 11.974252711, ""problem_class"": ""SDP""}" +2129,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:32,1.1041698455810547,OPTIMAL,-864.4118513258304,-864.4118512580925,-6.773791483283276e-08,1.6350918002647319e-13,6.087262225582329e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2377,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2379,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2380,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2378,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2130,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:33,0.46433019638061523,OPTIMAL,-864.4118977179496,-864.4096336193913,-0.0022640985582711437,7.582685087510616e-07,8.068776913131342e-08,225,"{""solver_solve_time"": 0.45122058299999995, ""problem_class"": ""SDP""}" +2127,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:18,0.046462059020996094,OPTIMAL,-864.4118465739052,-864.4118653239351,1.875002988072083e-05,2.057078025751857e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1830,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:00,0.49896158333333335,OPTIMAL,-864.4118633887887,-864.4118640817342,6.929454912096844e-07,2.1225996542903577e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.49896158333333335, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -864.4118633887887, ""dual_objective_value"": -864.4118640817342, ""duality_gap"": 6.929454912096844e-07, ""primal_infeasibility"": 2.1225996542903577e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:39:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1856,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:14,0.72608825,OPTIMAL,-864.4118628975764,-864.411862876331,2.1245341486064717e-08,2.30264056066451e-09,5.427533369077547e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.72608825, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -864.4118628975764, ""dual_objective_value"": -864.411862876331, ""duality_gap"": 2.1245341486064717e-08, ""primal_infeasibility"": 2.30264056066451e-09, ""dual_infeasibility"": 5.427533369077547e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:12"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2381,scipy_linprog,scipy-1.15.3,SDPLIB,mcp124-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2132,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:35,0.24130702018737793,OPTIMAL,-317.2643396559851,-317.26433965517947,-8.05641775514232e-10,2.317503143690089e-15,3.2364647886398265e-11,12,"{""solver_solve_time"": 0.163966999, ""problem_class"": ""SDP""}" +2133,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:42,6.18490195274353,OPTIMAL,-317.2643357289886,-317.26433571943585,-9.55276391323423e-09,3.452429205651864e-14,2.289855858365093e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2382,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2384,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2385,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2383,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2134,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:47,65.18666386604309,OPTIMAL,-317.26334217587544,-317.26018290170634,-0.003159274169092896,1.3145309316250677e-06,1.0170101910506083e-06,6025,"{""solver_solve_time"": 65.107815083, ""problem_class"": ""SDP""}" +2131,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:10:34,0.16768622398376465,OPTIMAL,-317.2643237878996,-317.26434282949464,1.904159501009417e-05,3.133245307540807e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1831,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:07,0.8985415,OPTIMAL,-317.26433979088665,-317.2643404055531,6.146664759398845e-07,1.1817715432431227e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8985415, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -317.26433979088665, ""dual_objective_value"": -317.2643404055531, ""duality_gap"": 6.146664759398845e-07, ""primal_infeasibility"": 1.1817715432431227e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:04"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1857,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:22,2.260602083333333,OPTIMAL,-317.2643388544631,-317.26433884402263,1.0440487585583469e-08,2.606685535332963e-09,7.365073918346426e-11,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.260602083333333, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -317.2643388544631, ""dual_objective_value"": -317.26433884402263, ""duality_gap"": 1.0440487585583469e-08, ""primal_infeasibility"": 2.606685535332963e-09, ""dual_infeasibility"": 7.365073918346426e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2386,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2136,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:55,5.162637710571289,OPTIMAL,-531.9300813566422,-531.9300813543795,-2.262709131173324e-09,8.227473646636106e-16,5.305261841984453e-11,11,"{""solver_solve_time"": 5.084504, ""problem_class"": ""SDP""}" +2137,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:12:01,5.5707409381866455,OPTIMAL,-531.9300725932821,-531.930072569,-2.4282144295284525e-08,8.040295993778045e-14,2.329819847105128e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2387,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2389,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2390,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2388,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2138,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:13:27,85.80190420150757,OPTIMAL,-531.9296665702215,-531.9243902498758,-0.005276320345615204,3.5097864358050385e-07,4.608231670735556e-07,6725,"{""solver_solve_time"": 85.723657208, ""problem_class"": ""SDP""}" +2135,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:11:49,0.9686660766601562,OPTIMAL,-531.9300419847027,-531.9300864211093,4.4436406597014866e-05,7.856532362095457e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1832,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:13,0.8380240416666667,OPTIMAL,-531.9300812378247,-531.930084038429,2.8006043066852726e-06,5.9500298393263746e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8380240416666667, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -531.9300812378247, ""dual_objective_value"": -531.930084038429, ""duality_gap"": 2.8006043066852726e-06, ""primal_infeasibility"": 5.9500298393263746e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:10"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1858,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:29,2.2106795833333335,OPTIMAL,-531.9300822835332,-531.9300822716898,1.1843440006487072e-08,1.926782694456677e-09,3.374042791082714e-11,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.2106795833333335, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -531.9300822835332, ""dual_objective_value"": -531.9300822716898, ""duality_gap"": 1.1843440006487072e-08, ""primal_infeasibility"": 1.926782694456677e-09, ""dual_infeasibility"": 3.374042791082714e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2391,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:34,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2140,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:14:59,89.82528376579285,OPTIMAL,-981.172560450884,-981.172560441928,-8.956021702033468e-09,5.576649407633878e-15,6.758930441182268e-11,13,"{""solver_solve_time"": 89.744985665, ""problem_class"": ""SDP""}" +2141,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:06,5.910895109176636,OPTIMAL,-981.1725575157805,-981.1725574810541,-3.4726326703093946e-08,1.1304565496294368e-14,8.0190851099525e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2392,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2394,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2395,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:38,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2393,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2142,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:31,24.193409204483032,OPTIMAL,-981.1715863618699,-981.1618374757425,-0.00974888612745417,9.84883038240223e-08,3.305222499689065e-07,1875,"{""solver_solve_time"": 24.105715125, ""problem_class"": ""SDP""}" +2139,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:13:29,0.9742119312286377,OPTIMAL,-981.1725284770389,-981.1725736916305,4.5214591636977275e-05,2.9884877512057914e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1833,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:19,0.912536375,OPTIMAL,-981.1725661031035,-981.1725718690851,5.765981654803909e-06,3.16026274347861e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.912536375, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -981.1725661031035, ""dual_objective_value"": -981.1725718690851, ""duality_gap"": 5.765981654803909e-06, ""primal_infeasibility"": 3.16026274347861e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1859,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:36,2.6032755416666666,OPTIMAL,-981.1725702362594,-981.172570225403,1.0856410881388001e-08,1.3408641864535708e-09,7.777848240269705e-12,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.6032755416666666, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -981.1725702362594, ""dual_objective_value"": -981.172570225403, ""duality_gap"": 1.0856410881388001e-08, ""primal_infeasibility"": 1.3408641864535708e-09, ""dual_infeasibility"": 7.777848240269705e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:34"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2396,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:39,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2144,cvxpy_clarabel,unknown,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:17:32,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2145,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:17:39,5.564814805984497,OPTIMAL,-1681.960048879275,-1681.9600487093676,-1.6990748008538503e-07,2.788764812335165e-14,1.0652363569467362e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2397,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:40,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2399,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2400,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:42,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2398,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:41,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2146,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:01,22.179195880889893,OPTIMAL,-1681.9584387566933,-1681.953564698473,-0.004874058220366351,2.0180126454384416e-06,2.1737788103100266e-08,1625,"{""solver_solve_time"": 22.0992225, ""problem_class"": ""SDP""}" +2143,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:15:31,0.17056798934936523,OPTIMAL,-1681.960022233755,-1681.960115536573,9.330281818620279e-05,6.498259333050908e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1834,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:26,0.9775438333333333,OPTIMAL,-1681.9600975043904,-1681.9601125495465,1.5045156033011153e-05,8.103865749540684e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.9775438333333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -1681.9600975043904, ""dual_objective_value"": -1681.9601125495465, ""duality_gap"": 1.5045156033011153e-05, ""primal_infeasibility"": 8.103865749540684e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1860,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:44,2.581019125,OPTIMAL,-1681.9601099646616,-1681.9601099478573,1.680427885730751e-08,1.774438052229053e-09,3.5680044750280445e-12,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.581019125, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -1681.9601099646616, ""dual_objective_value"": -1681.9601099478573, ""duality_gap"": 1.680427885730751e-08, ""primal_infeasibility"": 1.774438052229053e-09, ""dual_infeasibility"": 3.5680044750280445e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:41"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2401,scipy_linprog,scipy-1.15.3,SDPLIB,mcp250-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:43,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2148,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:07,1.623703956604004,OPTIMAL,-598.1485156509422,-598.1485156502104,-7.318021744140424e-10,1.0279534041409784e-15,1.8856686824865825e-11,12,"{""solver_solve_time"": 1.075159208, ""problem_class"": ""SDP""}" +2149,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:57,49.235872983932495,OPTIMAL,-598.1484980478649,-598.148498028111,-1.9753883861994836e-08,6.9727808859637596e-15,3.076456407970078e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2402,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2404,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:46,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2405,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2403,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:45,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2150,cvxpy_scs,unknown,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:20:57,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2147,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:18:04,2.33392596244812,OPTIMAL,-598.1485095041485,-598.1485189328429,9.428694397684012e-06,2.5921330521074135e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1835,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:34,1.5547225,OPTIMAL,-598.1485163350332,-598.1485169989327,6.63899527353351e-07,5.203879178173194e-13,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5547225, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -598.1485163350332, ""dual_objective_value"": -598.1485169989327, ""duality_gap"": 6.63899527353351e-07, ""primal_infeasibility"": 5.203879178173194e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1861,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:43:59,9.016883166666666,OPTIMAL,-598.1485152998665,-598.1485152939756,5.890910870220978e-09,1.2225054525178163e-09,2.5374934956038518e-11,21,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.016883166666666, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -598.1485152998665, ""dual_objective_value"": -598.1485152939756, ""duality_gap"": 5.890910870220978e-09, ""primal_infeasibility"": 1.2225054525178163e-09, ""dual_infeasibility"": 2.5374934956038518e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:43:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2406,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2152,cvxpy_clarabel,unknown,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:23:01,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2153,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:23:55,53.50329923629761,OPTIMAL,-1070.0567589595314,-1070.0567589516327,-7.898734111222439e-09,2.7488754243134703e-13,3.8483116375688007e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2407,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2409,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:52,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2410,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:53,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2408,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:51,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2154,cvxpy_scs,unknown,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:25:55,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2151,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:21:00,2.8333511352539062,OPTIMAL,-1070.056746962311,-1070.0567665649662,1.9602655129347113e-05,3.271071190322263e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1836,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:41,1.5360105833333333,OPTIMAL,-1070.0567637418037,-1070.0567662625401,2.5207364160451107e-06,9.081847783622977e-13,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5360105833333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": -1070.0567637418037, ""dual_objective_value"": -1070.0567662625401, ""duality_gap"": 2.5207364160451107e-06, ""primal_infeasibility"": 9.081847783622977e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:39"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1862,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:44:13,9.306898791666667,OPTIMAL,-1070.0567627403077,-1070.0567627284877,1.1820020517916419e-08,1.9894116855005456e-09,1.83524722585802e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.306898791666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1070.0567627403077, ""dual_objective_value"": -1070.0567627284877, ""duality_gap"": 1.1820020517916419e-08, ""primal_infeasibility"": 1.9894116855005456e-09, ""dual_infeasibility"": 1.83524722585802e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2411,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2156,cvxpy_clarabel,unknown,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:27:58,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2157,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:28:53,53.33316898345947,OPTIMAL,-1847.9699944022154,-1847.9699943694136,-3.280183591414243e-08,1.6551577809205618e-14,4.792848030985146e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2412,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2414,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2415,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2413,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2158,cvxpy_scs,unknown,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:30:53,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2155,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:25:57,0.9246599674224854,OPTIMAL,-1847.9699810333868,-1847.970022451066,4.1417679085498094e-05,1.1936389203813294e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1837,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:50,1.5978740833333334,OPTIMAL,-1847.9700088367038,-1847.9700217552486,1.2918544825879508e-05,1.3971950234132762e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5978740833333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -1847.9700088367038, ""dual_objective_value"": -1847.9700217552486, ""duality_gap"": 1.2918544825879508e-05, ""primal_infeasibility"": 1.3971950234132762e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1863,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:44:30,10.876570833333334,OPTIMAL,-1847.9700184528383,-1847.9700184414694,1.1368911145837046e-08,1.480896814122543e-09,5.281511248115392e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 10.876570833333334, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -1847.9700184528383, ""dual_objective_value"": -1847.9700184414694, ""duality_gap"": 1.1368911145837046e-08, ""primal_infeasibility"": 1.480896814122543e-09, ""dual_infeasibility"": 5.281511248115392e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:27"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2416,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:41:59,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2160,cvxpy_clarabel,unknown,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:32:56,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2161,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:33:38,40.44312405586243,OPTIMAL,-3566.7379833165146,-3566.737983223862,-9.265249900636263e-08,7.472516046203045e-13,2.8114690795223104e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2417,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:00,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2419,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2420,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2418,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:01,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2162,cvxpy_scs,unknown,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2159,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:30:55,1.1287381649017334,OPTIMAL,-3566.7380109438227,-3566.7380522800404,4.133621769142337e-05,3.097610455579781e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1838,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""d31cb7532a216fdc91b3add7143ef51aa6679c9d""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",d31cb7532a216fdc91b3add7143ef51aa6679c9d,2025-07-22T15:40:58,1.5796517916666666,OPTIMAL,-3566.7379931729224,-3566.738052271622,5.909869969400461e-05,1.1792225585239736e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.5796517916666666, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -3566.7379931729224, ""dual_objective_value"": -3566.738052271622, ""duality_gap"": 5.909869969400461e-05, ""primal_infeasibility"": 1.1792225585239736e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:40:55"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1864,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""2ef15f0b24da1069f2b57592da99da5a647810c6""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",2ef15f0b24da1069f2b57592da99da5a647810c6,2025-07-22T15:44:46,9.711638,OPTIMAL,-3566.738045969509,-3566.7380459534215,1.608759703231044e-08,1.4561025810833674e-09,1.6673683400563527e-12,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.711638, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -3566.738045969509, ""dual_objective_value"": -3566.7380459534215, ""duality_gap"": 1.608759703231044e-08, ""primal_infeasibility"": 1.4561025810833674e-09, ""dual_infeasibility"": 1.6673683400563527e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-23 00:44:43"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2421,scipy_linprog,scipy-1.15.3,SDPLIB,mcp500-4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:42:04,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1207,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:11,25.793164014816284,OPTIMAL,1092.5981048387882,1092.5981049304173,-9.162909009319264e-08,5.720872373199901e-10,1.1890157244942814e-10,26,"{""solver_solve_time"": 25.738914749, ""problem_class"": ""SDP""}" +1208,cvxpy_cvxopt,unknown,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:11:16,4.625144004821777,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1210,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1211,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1212,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1213,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2275,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:39:35,99.81731796264648,OPTIMAL (INACCURATE),1092.4922416744214,1092.544894125871,-0.05265245144960318,4.2353434666135e-07,0.0,100000,"{""solver_solve_time"": 99.759706791, ""problem_class"": ""SDP""}" +1209,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:12:55,0.5981779098510742,OPTIMAL (INACCURATE),1093.0721614033846,1092.5599703709595,0.5121910324251076,2.3061857111994798e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1610,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:26,0.8021789583333333,UNKNOWN,1092.5398261865366,1092.5738677926238,0.03404160608715756,2.2324924926700836e-07,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.8021789583333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 1092.5398261865366, ""dual_objective_value"": 1092.5738677926238, ""duality_gap"": 0.03404160608715756, ""primal_infeasibility"": 2.2324924926700836e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:23"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1495,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:50,2.500351125,NUM_ERROR,1092.5803930728775,1092.5806235221098,0.00023044923227644176,5.983215930617338e-08,0.0,26,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 2.500351125, ""setup_time"": [], ""iterations"": 26, ""primal_objective_value"": 1092.5803930728775, ""dual_objective_value"": 1092.5806235221098, ""duality_gap"": 0.00023044923227644176, ""primal_infeasibility"": 5.983215930617338e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1214,scipy_linprog,scipy-1.15.3,SDPLIB,qap10,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:13:02,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1152,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.039627790451049805,OPTIMAL,436.00000012500374,436.0000001787257,-5.3721976200904464e-08,8.543064997221504e-10,8.700480256542984e-14,9,"{""solver_solve_time"": 0.036510792, ""problem_class"": ""SDP""}" +1153,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.05824089050292969,OPTIMAL,436.00000638953816,436.0000103135326,-3.923994427168509e-06,6.573074355875933e-08,5.296699388254977e-12,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1156,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1157,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1158,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1159,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1154,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.015094995498657227,OPTIMAL,436.00007269274516,435.9998052039491,0.00026748879605520415,2.3053436931048306e-07,0.0,225,"{""solver_solve_time"": 0.012320290999999999, ""problem_class"": ""SDP""}" +1155,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:01:58,0.020327091217041016,OPTIMAL (INACCURATE),436.0403897924358,435.9998304004548,0.04055939198099168,9.059329771695843e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1605,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:00:56,0.4685420416666667,OPTIMAL,436.000000302473,435.9999999151769,3.872960974149464e-07,1.0352572932812939e-11,0.0,10,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.4685420416666667, ""setup_time"": [], ""iterations"": 10, ""primal_objective_value"": 436.000000302473, ""dual_objective_value"": 435.9999999151769, ""duality_gap"": 3.872960974149464e-07, ""primal_infeasibility"": 1.0352572932812939e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:53"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1490,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:19,0.2549562083333333,OPTIMAL,435.99999879051774,435.9999990246588,2.3414105498886784e-07,6.0506510269859365e-09,0.0,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2549562083333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 435.99999879051774, ""dual_objective_value"": 435.9999990246588, ""duality_gap"": 2.3414105498886784e-07, ""primal_infeasibility"": 6.0506510269859365e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1160,scipy_linprog,scipy-1.15.3,SDPLIB,qap5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:03:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1163,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:47,0.3584439754486084,OPTIMAL (INACCURATE),381.43279582401055,381.4327960779774,-2.539668457757216e-07,9.455201134480351e-10,4.251389530798158e-09,26,"{""solver_solve_time"": 0.353374376, ""problem_class"": ""SDP""}" +1164,cvxpy_cvxopt,unknown,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:48,0.4547898769378662,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1167,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1168,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1169,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1170,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1165,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59,11.140121698379517,OPTIMAL (INACCURATE),381.1579788447341,381.2947477911839,-0.13676894644981985,2.5734585406151894e-06,0.0,100000,"{""solver_solve_time"": 11.135406458, ""problem_class"": ""SDP""}" +1166,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:04:59,0.09423494338989258,OPTIMAL (INACCURATE),381.5253368559963,381.38626400064095,0.1390728553553231,4.7219042964099784e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1606,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:02,0.7566619166666667,OPTIMAL,381.39365405504674,381.41637577242363,0.022721717376896322,2.8681423726442413e-07,0.0,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.7566619166666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 381.39365405504674, ""dual_objective_value"": 381.41637577242363, ""duality_gap"": 0.022721717376896322, ""primal_infeasibility"": 2.8681423726442413e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:00:59"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1491,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:25,0.3632245416666667,NUM_ERROR,381.4236687453082,381.4240243638051,0.0003556184968829257,1.0256556673173296e-07,0.0,22,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.3632245416666667, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 381.4236687453082, ""dual_objective_value"": 381.4240243638051, ""duality_gap"": 0.0003556184968829257, ""primal_infeasibility"": 1.0256556673173296e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1171,scipy_linprog,scipy-1.15.3,SDPLIB,qap6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1174,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:49,1.2171392440795898,OPTIMAL (INACCURATE),424.81215093653674,424.8121509794146,-4.28778434979904e-08,1.4814603139603626e-09,2.3106894516466327e-09,26,"{""solver_solve_time"": 1.208488294, ""problem_class"": ""SDP""}" +1175,cvxpy_cvxopt,unknown,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:05:50,0.7405779361724854,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1178,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1179,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1180,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1181,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1176,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10,20.12582302093506,OPTIMAL (INACCURATE),424.5225849795715,424.66763159392576,-0.14504661435427124,2.5643940808572178e-06,0.0,100000,"{""solver_solve_time"": 20.117360833, ""problem_class"": ""SDP""}" +1177,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:10,0.1465590000152588,OPTIMAL (INACCURATE),424.8762477985437,424.79985124990344,0.07639654864027534,2.3370667875751253e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1607,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:08,0.6350701666666667,UNKNOWN,424.7884026413741,424.8042332891782,0.015830647804136788,2.244805558197445e-07,1.0208979903820277e-13,19,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.6350701666666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": 424.7884026413741, ""dual_objective_value"": 424.8042332891782, ""duality_gap"": 0.015830647804136788, ""primal_infeasibility"": 2.244805558197445e-07, ""dual_infeasibility"": 1.0208979903820277e-13, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:05"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1492,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:30,0.5065246666666666,NUM_ERROR,424.8083811224529,424.80858176294714,0.00020064049425627672,7.622887967153097e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.5065246666666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 424.8083811224529, ""dual_objective_value"": 424.80858176294714, ""duality_gap"": 0.00020064049425627672, ""primal_infeasibility"": 7.622887967153097e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:28"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1182,scipy_linprog,scipy-1.15.3,SDPLIB,qap7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:06:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1185,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:08,3.9440019130706787,OPTIMAL (INACCURATE),756.9434336934269,756.9434339047293,-2.1130244931555353e-07,1.1033134136067158e-09,1.8036454579220684e-09,29,"{""solver_solve_time"": 3.928795753, ""problem_class"": ""SDP""}" +1186,cvxpy_cvxopt,unknown,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:09,1.6612441539764404,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1189,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1190,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1191,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1192,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1187,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46,36.509506940841675,OPTIMAL (INACCURATE),756.5711755506155,756.7533977873954,-0.18222223677992133,1.7661078048246205e-06,0.0,100000,"{""solver_solve_time"": 36.495549333, ""problem_class"": ""SDP""}" +1188,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:46,0.23933076858520508,OPTIMAL (INACCURATE),757.0347850401854,756.9408334188629,0.09395162132250334,1.6356761098055173e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1608,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:14,0.5659632083333334,OPTIMAL,756.8395594287458,756.8977747654171,0.05821533667131007,6.256731733516596e-07,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5659632083333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 756.8395594287458, ""dual_objective_value"": 756.8977747654171, ""duality_gap"": 0.05821533667131007, ""primal_infeasibility"": 6.256731733516596e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:11"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1493,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:36,0.8749054583333333,NUM_ERROR,756.9340877297344,756.934375193232,0.0002874634975569279,3.486442395574242e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.8749054583333333, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 756.9340877297344, ""dual_objective_value"": 756.934375193232, ""duality_gap"": 0.0002874634975569279, ""primal_infeasibility"": 3.486442395574242e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:33"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1193,scipy_linprog,scipy-1.15.3,SDPLIB,qap8,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:07:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1196,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:56,9.71919322013855,OPTIMAL (INACCURATE),1409.9415896092542,1409.941617901437,-2.8292182832956314e-05,7.656624897637267e-08,8.594780663566562e-10,24,"{""solver_solve_time"": 9.690633708, ""problem_class"": ""SDP""}" +1197,cvxpy_cvxopt,unknown,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:08:59,2.7372238636016846,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1200,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1201,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1202,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1203,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1198,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:44,44.790440797805786,OPTIMAL,1409.9180851457008,1409.9311892082915,-0.013104062590628018,2.0332473972900747e-05,1.2215291832739586e-08,74700,"{""solver_solve_time"": 44.763336166, ""problem_class"": ""SDP""}" +1199,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:45,0.36574411392211914,OPTIMAL (INACCURATE),1410.25627924329,1409.8952495753765,0.361029667913499,4.0892029004511786e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1609,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:19,0.8991597916666667,OPTIMAL,1409.9186636560362,1409.9299342574086,0.011270601372416422,5.8123518858196593e-08,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.8991597916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": 1409.9186636560362, ""dual_objective_value"": 1409.9299342574086, ""duality_gap"": 0.011270601372416422, ""primal_infeasibility"": 5.8123518858196593e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1494,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:40:42,1.283624125,NUM_ERROR,1409.918321784674,1409.918571432121,0.00024964744716271525,9.550174489527122e-08,0.0,25,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 1.283624125, ""setup_time"": [], ""iterations"": 25, ""primal_objective_value"": 1409.918321784674, ""dual_objective_value"": 1409.918571432121, ""duality_gap"": 0.00024964744716271525, ""primal_infeasibility"": 9.550174489527122e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:40:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1204,scipy_linprog,scipy-1.15.3,SDPLIB,qap9,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:09:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1216,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:49:36,20.110408067703247,OPTIMAL,-2448.659092952946,-2448.6590929340227,-1.892340151243843e-08,1.7496194581406766e-08,3.538743119610824e-11,15,"{""solver_solve_time"": 3.195941749, ""problem_class"": ""SDP""}" +2279,cvxpy_cvxopt,unknown,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:46:59,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1218,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1219,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1220,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1221,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2276,cvxpy_scs,unknown,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:41:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1217,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:23,29.925652980804443,OPTIMAL,-2448.6590489835125,-2448.6591322561353,8.327262275997782e-05,2.3298734319033554e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1712,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:45:28,3.4544910833333335,OPTIMAL,-2448.659090183629,-2448.65913216471,4.198108126729494e-05,3.2288322455640034e-12,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 3.4544910833333335, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": -2448.659090183629, ""dual_objective_value"": -2448.65913216471, ""duality_gap"": 4.198108126729494e-05, ""primal_infeasibility"": 3.2288322455640034e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:45:24"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1578,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:30:50,142.55485320833333,OPTIMAL,-2448.659124217068,-2448.659124204988,1.2079908628948033e-08,4.663936345007886e-09,7.389642148204685e-12,17,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 142.55485320833333, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -2448.659124217068, ""dual_objective_value"": -2448.659124204988, ""duality_gap"": 1.2079908628948033e-08, ""primal_infeasibility"": 4.663936345007886e-09, ""dual_infeasibility"": 7.389642148204685e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:30:47"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1222,scipy_linprog,scipy-1.15.3,SDPLIB,qpG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T13:54:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2164,cvxpy_clarabel,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:40,0.9329919815063477,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2165,cvxpy_cvxopt,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:41,0.9212636947631836,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1224,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1225,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1226,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1227,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2166,cvxpy_scs,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:43,0.9268250465393066,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2163,cvxpy_sdpa,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:39,0.9359021186828613,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1713,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:46:39,6.199770916666667,OPTIMAL,-11817.999949825342,-11818.000000034852,5.020950993639417e-05,1.691030179875868e-11,0.0,17,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.199770916666667, ""setup_time"": [], ""iterations"": 17, ""primal_objective_value"": -11817.999949825342, ""dual_objective_value"": -11818.000000034852, ""duality_gap"": 5.020950993639417e-05, ""primal_infeasibility"": 1.691030179875868e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:46:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2281,matlab_sedumi,unknown,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:49:21,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1228,scipy_linprog,scipy-1.15.3,SDPLIB,qpG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:03:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1231,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:06,41.18780493736267,OPTIMAL,-20.239510587223354,-20.239510586816014,-4.0733993955655023e-10,9.912076322563995e-08,0.0,29,"{""solver_solve_time"": 34.756203417, ""problem_class"": ""SDP""}" +1232,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:06:28,21.264667987823486,OPTIMAL,-20.239510644969997,-20.239510638137972,-6.8320247237352305e-09,8.94817783016025e-08,5.0557558792995994e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1234,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1235,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1236,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1237,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2277,cvxpy_scs,unknown,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:43:36,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1233,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:09:55,7.810168981552124,OPTIMAL (INACCURATE),-20.239507687488363,-20.23951064833439,2.960846028798869e-06,1.5496658619045873e-08,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1611,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:01:35,2.882202875,UNKNOWN,-20.239507562642537,-20.23951068538981,3.122747273209825e-06,1.0755657434415856e-07,0.0,21,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 2.882202875, ""setup_time"": [], ""iterations"": 21, ""primal_objective_value"": -20.239507562642537, ""dual_objective_value"": -20.23951068538981, ""duality_gap"": 3.122747273209825e-06, ""primal_infeasibility"": 1.0755657434415856e-07, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:01:31"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1496,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:41:03,6.760695833333333,NUM_ERROR,-20.239510592874606,-20.239510589127317,3.747288701561047e-09,3.232622404503955e-08,0.0,37,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 6.760695833333333, ""setup_time"": [], ""iterations"": 37, ""primal_objective_value"": -20.239510592874606, ""dual_objective_value"": -20.239510589127317, ""duality_gap"": 3.747288701561047e-09, ""primal_infeasibility"": 3.232622404503955e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:41:00"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1238,scipy_linprog,scipy-1.15.3,SDPLIB,ss30,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:10:03,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1241,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.5781240463256836,OPTIMAL,-23.000000113696405,-23.00000006485042,-4.884598681087482e-08,1.7021181449260494e-08,1.1944769291368984e-11,12,"{""solver_solve_time"": 0.573968168, ""problem_class"": ""SDP""}" +1242,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.30235886573791504,OPTIMAL,-22.99999992045278,-22.999999920596142,1.4336265508063661e-10,1.1739084766113277e-16,4.107080131386077e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1245,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1246,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1247,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1248,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1243,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.059606075286865234,OPTIMAL,-22.99957523727033,-22.999473468676786,-0.00010176859354515955,8.547389016417847e-06,2.873384339106012e-07,250,"{""solver_solve_time"": 0.055213041, ""problem_class"": ""SDP""}" +1244,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:05,0.025326967239379883,OPTIMAL,-22.99999909785378,-23.000000314920484,1.217066703418368e-06,5.552518868004142e-16,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1646,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:19,0.3554101666666667,OPTIMAL,-22.99999966935091,-23.000000054814368,3.854634584854466e-07,1.08019134049444e-11,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.3554101666666667, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": -22.99999966935091, ""dual_objective_value"": -23.000000054814368, ""duality_gap"": 3.854634584854466e-07, ""primal_infeasibility"": 1.08019134049444e-11, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:16"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1516,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:55,0.2917774166666667,OPTIMAL,-23.00000001877833,-23.000000013317347,5.460982777094614e-09,2.5321435718789402e-09,0.0,19,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2917774166666667, ""setup_time"": [], ""iterations"": 19, ""primal_objective_value"": -23.00000001877833, ""dual_objective_value"": -23.000000013317347, ""duality_gap"": 5.460982777094614e-09, ""primal_infeasibility"": 2.5321435718789402e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1249,scipy_linprog,scipy-1.15.3,SDPLIB,theta1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:11:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1252,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:36,10.558916091918945,OPTIMAL,-32.87916985873813,-32.87916961787732,-2.4086081396035297e-07,9.043557291921717e-08,6.7143730115455886e-12,10,"{""solver_solve_time"": 10.531377999, ""problem_class"": ""SDP""}" +1253,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38,2.042449951171875,OPTIMAL,-32.87916894882581,-32.87916894877984,-4.596500957632088e-11,1.4343967695977949e-12,2.2664637685921277e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1256,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1257,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1258,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1259,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1254,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:38,0.41171908378601074,OPTIMAL,-32.879092775414236,-32.87901385888463,-7.891652960267947e-05,1.00022956740785e-06,2.3274278129605833e-07,350,"{""solver_solve_time"": 0.3871845, ""problem_class"": ""SDP""}" +1255,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:39,0.47716593742370605,OPTIMAL,-32.87916857824288,-32.87916905441676,4.761738736647203e-07,4.57224779883188e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1647,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:25,0.5580662916666667,OPTIMAL,-32.87916893679436,-32.87916903116265,9.436828918296669e-08,1.2482387284479412e-12,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.5580662916666667, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": -32.87916893679436, ""dual_objective_value"": -32.87916903116265, ""duality_gap"": 9.436828918296669e-08, ""primal_infeasibility"": 1.2482387284479412e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:22"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1517,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:01,0.631585375,OPTIMAL,-32.879169040448566,-32.87916903780507,2.643496088694519e-09,2.2690844865871237e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.631585375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -32.879169040448566, ""dual_objective_value"": -32.87916903780507, ""duality_gap"": 2.643496088694519e-09, ""primal_infeasibility"": 2.2690844865871237e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:58"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1260,scipy_linprog,scipy-1.15.3,SDPLIB,theta2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:12:50,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1263,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:24:54,67.7079222202301,OPTIMAL,-42.16698181950611,-42.16698175324743,-6.625868564924531e-08,2.566384582637676e-08,6.118994005248439e-14,10,"{""solver_solve_time"": 67.592432958, ""problem_class"": ""SDP""}" +1264,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:02,7.798202753067017,OPTIMAL,-42.166981272985936,-42.166981273163785,1.7784884676075308e-10,3.401035803092698e-15,3.975102289462933e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1267,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1268,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1269,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1270,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1265,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:03,1.58660888671875,OPTIMAL,-42.166983999600596,-42.166985728095874,1.7284952775753482e-06,2.2777817734753627e-08,6.1942128146186496e-09,450,"{""solver_solve_time"": 1.477760083, ""problem_class"": ""SDP""}" +1266,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:05,1.048050880432129,OPTIMAL,-42.16698095442231,-42.166981616724364,6.623020567531057e-07,2.3718112851955558e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1648,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:33,1.1650570833333334,OPTIMAL,-42.16698130052295,-42.16698152368698,2.2316402947808456e-07,6.941267860310931e-12,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.1650570833333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -42.16698130052295, ""dual_objective_value"": -42.16698152368698, ""duality_gap"": 2.2316402947808456e-07, ""primal_infeasibility"": 6.941267860310931e-12, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:29"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1518,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:47:08,2.416633291666667,OPTIMAL,-42.16698154577349,-42.16698155040591,4.632418892924761e-09,4.565662075596726e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 2.416633291666667, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -42.16698154577349, ""dual_objective_value"": -42.16698155040591, ""duality_gap"": 4.632418892924761e-09, ""primal_infeasibility"": 4.565662075596726e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:47:06"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1271,scipy_linprog,scipy-1.15.3,SDPLIB,theta3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:25:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2168,cvxpy_clarabel,unknown,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:37:47,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2169,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:18,29.595786094665527,OPTIMAL,-50.3212217910097,-50.32122179111797,1.0827250207512407e-10,1.0777758760552207e-13,1.9701297898894425e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1767,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1769,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1770,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1768,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:19,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2170,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:22,2.66982102394104,OPTIMAL,-50.32166114881474,-50.32153115885043,-0.0001299899643072422,2.9254331569073637e-06,9.944532731845678e-08,325,"{""solver_solve_time"": 2.3345363750000003, ""problem_class"": ""SDP""}" +2167,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:35:46,2.17305588722229,OPTIMAL,-50.32122092262562,-50.321222056603794,1.1339781735841825e-06,4.166852070171613e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1659,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:09,1.6901592083333334,OPTIMAL,-50.321221317087485,-50.32122203998839,7.229009071352266e-07,3.4400304938930694e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.6901592083333334, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -50.321221317087485, ""dual_objective_value"": -50.32122203998839, ""duality_gap"": 7.229009071352266e-07, ""primal_infeasibility"": 3.4400304938930694e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:07"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1528,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:53:42,9.029102375,OPTIMAL,-50.32122201238018,-50.32122201939875,7.018570613581687e-09,4.163130295345427e-09,0.0,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 9.029102375, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": -50.32122201238018, ""dual_objective_value"": -50.32122201939875, ""duality_gap"": 7.018570613581687e-09, ""primal_infeasibility"": 4.163130295345427e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:53:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1771,scipy_linprog,scipy-1.15.3,SDPLIB,theta4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:20,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2172,cvxpy_clarabel,unknown,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:40:31,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2173,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:45,73.00050282478333,OPTIMAL,-57.23230661497225,-57.23230661531533,3.4307845453440677e-10,9.587709927591261e-14,6.076045292986302e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1772,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1774,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1775,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:22,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1773,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2174,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:52,5.0073630809783936,OPTIMAL,-57.23240759320841,-57.23245003631919,4.24431107859391e-05,4.5962074213473126e-07,9.261089404552817e-08,325,"{""solver_solve_time"": 4.229581583, ""problem_class"": ""SDP""}" +2171,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:38:29,5.290843963623047,OPTIMAL,-57.232306113340115,-57.232307531112916,1.4177728004938217e-06,2.248221894866901e-15,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1660,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:21,3.2877647083333335,OPTIMAL,-57.23230683313342,-57.232307346760024,5.136266025829173e-07,4.815986565890254e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 3.2877647083333335, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -57.23230683313342, ""dual_objective_value"": -57.232307346760024, ""duality_gap"": 5.136266025829173e-07, ""primal_infeasibility"": 4.815986565890254e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:17"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1529,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:54:24,32.23979391666666,OPTIMAL,-57.23230747485862,-57.232307354157946,1.2070067612057755e-07,4.87171381111366e-09,0.0,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 32.23979391666666, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": -57.23230747485862, ""dual_objective_value"": -57.232307354157946, ""duality_gap"": 1.2070067612057755e-07, ""primal_infeasibility"": 4.87171381111366e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:54:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1776,scipy_linprog,scipy-1.15.3,SDPLIB,theta5,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2232,cvxpy_clarabel,unknown,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:20:38,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2233,cvxpy_cvxopt,unknown,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:22:39,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1777,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:23,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1779,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1780,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:25,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1778,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2234,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:22:49,8.415114879608154,OPTIMAL,-63.477143052691204,-63.47716632190371,2.3269212505283576e-05,1.793398850777613e-07,5.95964349077978e-08,325,"{""solver_solve_time"": 6.774055375, ""problem_class"": ""SDP""}" +2231,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:18:36,10.462555885314941,OPTIMAL,-63.477086010464404,-63.47708753548431,1.5250199041361157e-06,1.2905179494861903e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1661,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:10:38,5.631308958333333,OPTIMAL,-63.47708709665152,-63.477087197659806,1.010082826269354e-07,8.471542469613478e-13,0.0,14,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 5.631308958333333, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": -63.47708709665152, ""dual_objective_value"": -63.477087197659806, ""duality_gap"": 1.010082826269354e-07, ""primal_infeasibility"": 8.471542469613478e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:10:35"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1530,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:56:13,96.736359625,OPTIMAL,-63.47708710436236,-63.47708721576618,1.1140382127905468e-07,9.370169346520279e-10,0.0,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 96.736359625, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": -63.47708710436236, ""dual_objective_value"": -63.47708721576618, ""duality_gap"": 1.1140382127905468e-07, ""primal_infeasibility"": 9.370169346520279e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:56:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1781,scipy_linprog,scipy-1.15.3,SDPLIB,theta6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2236,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:23:21,14.389510154724121,OPTIMAL,-399.99997518390705,-399.9999722019107,-2.9819963742738764e-06,1.837354544732748e-08,1.1691283350191018e-10,11,"{""solver_solve_time"": 4.544505209, ""problem_class"": ""SDP""}" +2237,cvxpy_cvxopt,unknown,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:25:22,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +1782,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1784,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1785,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1783,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:27,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2238,cvxpy_scs,unknown,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:27:22,120.0,TIMEOUT,,,,,,,"{""timeout_duration"": 120.0, ""problem_class"": ""SDP""}" +2235,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:23:05,14.341548681259155,OPTIMAL,-399.99999085524865,-400.0000000516816,9.196432927183196e-06,2.8791527184913406e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1678,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:30:23,6.12120375,OPTIMAL,-399.9999948753643,-400.0000001208191,5.2454548153946234e-06,5.104383506653095e-13,0.0,18,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 6.12120375, ""setup_time"": [], ""iterations"": 18, ""primal_objective_value"": -399.9999948753643, ""dual_objective_value"": -400.0000001208191, ""duality_gap"": 5.2454548153946234e-06, ""primal_infeasibility"": 5.104383506653095e-13, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:30:20"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1546,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:10:16,69.43002633333333,OPTIMAL,-399.9999995772125,-399.9999995761562,1.0563212526903953e-09,2.5194124567833976e-09,1.777169568338365e-12,33,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 69.43002633333333, ""setup_time"": [], ""iterations"": 33, ""primal_objective_value"": -399.9999995772125, ""dual_objective_value"": -399.9999995761562, ""duality_gap"": 1.0563212526903953e-09, ""primal_infeasibility"": 2.5194124567833976e-09, ""dual_infeasibility"": 1.777169568338365e-12, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:10:13"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1786,scipy_linprog,scipy-1.15.3,SDPLIB,thetaG11,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:28,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2176,cvxpy_clarabel,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:57,1.5410659313201904,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2177,cvxpy_cvxopt,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:42:00,1.529308795928955,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1787,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:29,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1789,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:31,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1790,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1788,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:30,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2178,cvxpy_scs,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:42:02,1.5386550426483154,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +2175,cvxpy_sdpa,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T14:41:54,1.5419859886169434,SUBPROCESS_ERROR,,,,,,,"{""returncode"": -6, ""error_type"": ""SUBPROCESS_ERROR"", ""error_message"": ""libc++abi: terminating due to uncaught exception of type std::length_error: vector"", ""problem_class"": ""SDP""}" +1679,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:40,138.05433633333334,UNKNOWN,-348.9999945185722,-349.0000002426005,5.724028312670271e-06,1.8779632575768103e-08,0.0,39,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 138.05433633333334, ""setup_time"": [], ""iterations"": 39, ""primal_objective_value"": -348.9999945185722, ""dual_objective_value"": -349.0000002426005, ""duality_gap"": 5.724028312670271e-06, ""primal_infeasibility"": 1.8779632575768103e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:36"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1281,matlab_sedumi,unknown,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T14:41:01,300.0,TIMEOUT,,,,,,,"{""timeout_duration"": 300, ""problem_class"": ""SDP""}" +1791,scipy_linprog,scipy-1.15.3,SDPLIB,thetaG51,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""0d9be48d5161918e56908f73cddd63d9b51ecd84""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",0d9be48d5161918e56908f73cddd63d9b51ecd84,2025-07-22T14:42:33,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1318,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.00537109375,OPTIMAL,8.999996209209556,8.999996230766877,-2.1557321261411744e-08,1.8223965354693912e-08,9.58875201462206e-11,11,"{""solver_solve_time"": 0.000160999, ""problem_class"": ""SDP""}" +1319,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.027730941772460938,OPTIMAL,8.999996217101113,8.999996231565662,-1.446454866993463e-08,2.1552454348135378e-08,1.3113686044545564e-09,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1342,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1343,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1344,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1345,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1320,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.005390167236328125,OPTIMAL,9.000014086327363,9.000007538484402,6.547842961168726e-06,7.190939502213777e-07,2.017647402124318e-05,175,"{""solver_solve_time"": 0.000392291, ""problem_class"": ""SDP""}" +1321,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.013810157775878906,OPTIMAL,8.999996508066124,8.999996257439102,2.5062702135869586e-07,3.858578150973925e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1640,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:43,0.24263908333333334,OPTIMAL,8.999996513737967,8.999996285281131,2.2845683567140895e-07,2.3112684240151632e-09,0.0,9,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.24263908333333334, ""setup_time"": [], ""iterations"": 9, ""primal_objective_value"": 8.999996513737967, ""dual_objective_value"": 8.999996285281131, ""duality_gap"": 2.2845683567140895e-07, ""primal_infeasibility"": 2.3112684240151632e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:40"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1510,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:18,0.279735125,OPTIMAL,8.999996304463258,8.999996309461777,4.998518932097795e-09,2.0925600974181833e-09,0.0,13,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.279735125, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 8.999996304463258, ""dual_objective_value"": 8.999996309461777, ""duality_gap"": 4.998518932097795e-09, ""primal_infeasibility"": 2.0925600974181833e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:15"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1346,scipy_linprog,scipy-1.15.3,SDPLIB,truss1,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1322,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.028374910354614258,OPTIMAL,123.38032438780319,123.38032501198148,-6.241782983806843e-07,4.5631147473518165e-07,5.400635161301182e-09,14,"{""solver_solve_time"": 0.003692876, ""problem_class"": ""SDP""}" +1323,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:51,0.34323596954345703,OPTIMAL,123.38035632795552,123.38035633377643,-5.820908199893893e-09,2.6424809145593065e-09,3.955822371523896e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1347,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1348,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1349,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1350,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:35,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1324,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:52,0.8349161148071289,OPTIMAL,123.38606688355063,123.3860739362167,-7.052666077811409e-06,6.498518343337364e-06,0.0006916402494040062,20875,"{""solver_solve_time"": 0.810098083, ""problem_class"": ""SDP""}" +1325,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:08:53,0.07007503509521484,OPTIMAL,123.38036039934943,123.38035581736214,4.58198728381376e-06,4.557386001179585e-12,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1641,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:49,0.36276016666666666,OPTIMAL,123.38035721605554,123.38035631007274,9.059828016688698e-07,9.364706977581974e-10,0.0,13,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.36276016666666666, ""setup_time"": [], ""iterations"": 13, ""primal_objective_value"": 123.38035721605554, ""dual_objective_value"": 123.38035631007274, ""duality_gap"": 9.059828016688698e-07, ""primal_infeasibility"": 9.364706977581974e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1511,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:24,0.3927455833333333,OPTIMAL,123.38035631112416,123.38035631802163,6.897465709698736e-09,2.9604864720439395e-09,3.2852692607373415e-11,20,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.3927455833333333, ""setup_time"": [], ""iterations"": 20, ""primal_objective_value"": 123.38035631112416, ""dual_objective_value"": 123.38035631802163, ""duality_gap"": 6.897465709698736e-09, ""primal_infeasibility"": 2.9604864720439395e-09, ""dual_infeasibility"": 3.2852692607373415e-11, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:21"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1351,scipy_linprog,scipy-1.15.3,SDPLIB,truss2,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:09:36,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1415,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.008645772933959961,OPTIMAL,9.109996173192481,9.109996174546737,-1.3542553745082841e-09,4.4855110956190985e-09,3.2774392518465433e-10,12,"{""solver_solve_time"": 0.002515546, ""problem_class"": ""SDP""}" +1416,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.062148094177246094,OPTIMAL,9.10999614243476,9.109996145768458,-3.333697762286647e-09,1.0593331383658811e-08,3.349913566356823e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1419,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1420,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1421,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1422,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1417,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.5392508506774902,OPTIMAL,9.110041972462652,9.110042582572902,-6.101102503208722e-07,1.529861449889821e-06,1.7591794995023966e-05,44625,"{""solver_solve_time"": 0.533749833, ""problem_class"": ""SDP""}" +1418,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:41,0.01682901382446289,OPTIMAL,9.109996393410452,9.109996016151454,3.7725899737495183e-07,2.3142072741567036e-13,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1642,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:05:54,0.291210125,OPTIMAL,9.109996269927667,9.109996132678651,1.3724901570810744e-07,4.320402504061065e-14,0.0,12,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.291210125, ""setup_time"": [], ""iterations"": 12, ""primal_objective_value"": 9.109996269927667, ""dual_objective_value"": 9.109996132678651, ""duality_gap"": 1.3724901570810744e-07, ""primal_infeasibility"": 4.320402504061065e-14, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:51"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1512,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:29,0.2865194166666667,OPTIMAL,9.109996156256061,9.109996162091624,5.835563143818945e-09,7.261145648868141e-09,3.548770555535088e-10,15,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.2865194166666667, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 9.109996156256061, ""dual_objective_value"": 9.109996162091624, ""duality_gap"": 5.835563143818945e-09, ""primal_infeasibility"": 7.261145648868141e-09, ""dual_infeasibility"": 3.548770555535088e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1423,scipy_linprog,scipy-1.15.3,SDPLIB,truss3,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:33:48,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1440,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.005716085433959961,OPTIMAL,9.00999593358179,9.00999596605511,-3.2473320032977426e-08,4.6640533097330856e-08,2.7918005083928495e-09,10,"{""solver_solve_time"": 0.000377085, ""problem_class"": ""SDP""}" +1441,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.03877997398376465,OPTIMAL,9.009995897864977,9.009995926940062,-2.907508545035853e-08,4.360070834724522e-08,9.499477870988926e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1444,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1445,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1446,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1447,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1442,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.0063629150390625,OPTIMAL,9.009997345729218,9.00999656325741,7.82471808236096e-07,1.658167187900526e-07,6.101049682851663e-06,225,"{""solver_solve_time"": 0.001095791, ""problem_class"": ""SDP""}" +1443,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:12,0.014675140380859375,OPTIMAL,9.009996558636908,9.009996064429895,4.94207013090886e-07,5.460020736031756e-14,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1643,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:00,0.2855519166666667,OPTIMAL,9.009996446153833,9.009996290338277,1.5581555601329455e-07,3.83955719920538e-09,0.0,11,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 0.2855519166666667, ""setup_time"": [], ""iterations"": 11, ""primal_objective_value"": 9.009996446153833, ""dual_objective_value"": 9.009996290338277, ""duality_gap"": 1.5581555601329455e-07, ""primal_infeasibility"": 3.83955719920538e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:05:57"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1513,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:35,0.26377516666666667,OPTIMAL,9.00999626294251,9.009996268263059,5.320549334442148e-09,3.507575669410203e-09,2.959835844803862e-10,14,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.26377516666666667, ""setup_time"": [], ""iterations"": 14, ""primal_objective_value"": 9.00999626294251, ""dual_objective_value"": 9.009996268263059, ""duality_gap"": 5.320549334442148e-09, ""primal_infeasibility"": 3.507575669410203e-09, ""dual_infeasibility"": 2.959835844803862e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:32"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1448,scipy_linprog,scipy-1.15.3,SDPLIB,truss4,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:43:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1434,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:38,0.49745821952819824,OPTIMAL,132.63566253199446,132.6356626115363,-7.954184866321157e-08,1.2653383845157188e-07,2.366013540423536e-09,18,"{""solver_solve_time"": 0.382465791, ""problem_class"": ""SDP""}" +1435,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:34:40,1.2629749774932861,OPTIMAL,132.6356762279693,132.6356762370283,-9.058993555299821e-09,1.4424052246283952e-08,3.0183302558080747e-10,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2347,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:15,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2349,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:21,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2350,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:24,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2348,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:18,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1436,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:03,22.394976139068604,OPTIMAL,132.67027858454858,132.67028269707538,-4.112526795552185e-06,2.547895198115238e-06,0.002408958215925523,83775,"{""solver_solve_time"": 22.277485625, ""problem_class"": ""SDP""}" +1437,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:04,0.2245340347290039,OPTIMAL,132.63567945392438,132.63567502877513,4.4251492568037065e-06,2.494296172882748e-11,0.0,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1680,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:48,1.0470835833333334,OPTIMAL,132.63567802335663,132.63567787176257,1.5159406530074193e-07,1.5244236469370746e-10,0.0,15,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0470835833333334, ""setup_time"": [], ""iterations"": 15, ""primal_objective_value"": 132.63567802335663, ""dual_objective_value"": 132.63567787176257, ""duality_gap"": 1.5159406530074193e-07, ""primal_infeasibility"": 1.5244236469370746e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:44"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1547,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:22,0.5942775,OPTIMAL,132.63567716018326,132.63567716469151,4.508251549850684e-09,6.3849327558778055e-09,1.2707989194505613e-10,23,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 0.5942775, ""setup_time"": [], ""iterations"": 23, ""primal_objective_value"": 132.63567716018326, ""dual_objective_value"": 132.63567716469151, ""duality_gap"": 4.508251549850684e-09, ""primal_infeasibility"": 6.3849327558778055e-09, ""dual_infeasibility"": 1.2707989194505613e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:15:19"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2351,scipy_linprog,scipy-1.15.3,SDPLIB,truss5_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:26,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1395,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:33,0.2537209987640381,OPTIMAL,901.0002651409602,901.0002705585873,-5.41762710781768e-06,1.4882091019913554e-06,6.463946489176919e-09,25,"{""solver_solve_time"": 0.023302585, ""problem_class"": ""SDP""}" +1396,cvxpy_cvxopt,unknown,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:37,1.9965460300445557,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1399,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:05,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1400,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:07,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1401,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:08,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1402,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:10,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1397,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:53,14.329941987991333,OPTIMAL,901.0950988636213,901.0950990173255,-1.537042635391117e-07,8.45148707615466e-06,0.013751596838046476,99775,"{""solver_solve_time"": 14.097880625, ""problem_class"": ""SDP""}" +1398,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:27:56,0.29096198081970215,INFEASIBLE,,,,,,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1644,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:06,0.5691390416666666,MAX_ITER,901.0014346379526,901.0013611282227,7.3509729872967e-05,2.233921215694808e-08,0.0,24,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""max_iter"", ""solve_time"": 0.5691390416666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 901.0014346379526, ""dual_objective_value"": 901.0013611282227, ""duality_gap"": 7.3509729872967e-05, ""primal_infeasibility"": 2.233921215694808e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:03"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1514,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:42,0.98678925,NUM_ERROR,901.0013890792242,901.0013891465655,6.734137514285976e-08,1.8145947199046974e-08,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""num_error"", ""solve_time"": 0.98678925, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 901.0013890792242, ""dual_objective_value"": 901.0013891465655, ""duality_gap"": 6.734137514285976e-08, ""primal_infeasibility"": 1.8145947199046974e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:38"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1403,scipy_linprog,scipy-1.15.3,SDPLIB,truss6,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:12,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1406,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:38,0.13422012329101562,OPTIMAL,900.0010893310988,900.0010944910015,-5.159902684681583e-06,7.752164593566989e-07,0.0,22,"{""solver_solve_time"": 0.006702831, ""problem_class"": ""SDP""}" +1407,cvxpy_cvxopt,unknown,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:40,1.2562849521636963,ERROR,,,,,,,"{""error_message"": ""Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information."", ""problem_class"": ""SDP""}" +1410,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:54,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1411,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1412,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:56,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1413,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:57,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1408,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:45,3.86313796043396,OPTIMAL,900.0356340281699,900.0356340614165,-3.3246692510147113e-08,9.397384533448782e-06,0.007035153135339471,59000,"{""solver_solve_time"": 3.7472856660000002, ""problem_class"": ""SDP""}" +1409,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:46,0.33388805389404297,OPTIMAL (INACCURATE),900.0013051383315,900.0014232785333,-0.00011814020172096207,3.7841041393477322e-06,2.3476799902441506e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1645,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:06:13,0.544207125,UNKNOWN,900.001408675485,900.0013926810119,1.5994473073988047e-05,2.362075343263456e-08,0.0,22,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""unknown"", ""solve_time"": 0.544207125, ""setup_time"": [], ""iterations"": 22, ""primal_objective_value"": 900.001408675485, ""dual_objective_value"": 900.0013926810119, ""duality_gap"": 1.5994473073988047e-05, ""primal_infeasibility"": 2.362075343263456e-08, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:06:09"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1515,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T12:46:50,1.1931540833333334,OPTIMAL,900.0013983712862,900.0013984344562,6.316997769317823e-08,7.3597907002225245e-09,0.0,27,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1931540833333334, ""setup_time"": [], ""iterations"": 27, ""primal_objective_value"": 900.0013983712862, ""dual_objective_value"": 900.0013984344562, ""duality_gap"": 6.316997769317823e-08, ""primal_infeasibility"": 7.3597907002225245e-09, ""dual_infeasibility"": 0, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 21:46:46"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1414,scipy_linprog,scipy-1.15.3,SDPLIB,truss7,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:28:58,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +1438,cvxpy_clarabel,cvxpy-1.6.5-CLARABEL-0.11.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:13,8.423373937606812,OPTIMAL,133.1145235740515,133.11452372670436,-1.5265285924215277e-07,5.798818510869592e-07,1.8795571691601026e-08,20,"{""solver_solve_time"": 7.601113419, ""problem_class"": ""SDP""}" +1439,cvxpy_cvxopt,cvxpy-1.6.5-CVXOPT-1.3.2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""443b599dca6666ab5976e2cf184c9398d48cda2b""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752416768.0}",443b599dca6666ab5976e2cf184c9398d48cda2b,2025-07-18T16:35:20,5.338012933731079,OPTIMAL,133.1145887359414,133.1145887345484,1.3930048226029612e-09,4.487143094483282e-09,9.45481793646842e-11,,"{""iteration_info_limitation"": ""CVXOPT does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +2352,cvxpy_ecos,cvxpy-1.6.5-ECOS-2.0.14,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:32,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2354,cvxpy_highs,cvxpy-1.6.5-HIGHS-1.11.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:44,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2355,cvxpy_osqp,cvxpy-1.6.5-OSQP-1.0.4,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:49,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2353,cvxpy_scip,cvxpy-1.6.5-SCIP-5.5.0,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:37,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" +2278,cvxpy_scs,cvxpy-1.6.5-SCS-3.2.7.post2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:44:58,79.17252993583679,OPTIMAL,133.206451029218,133.20645457503971,-3.5458217269024317e-06,1.8067377045067828e-06,0.0026439582371736107,91025,"{""solver_solve_time"": 78.408837208, ""problem_class"": ""SDP""}" +2280,cvxpy_sdpa,cvxpy-1.6.5-SDPA-0.2.2,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-04T15:47:05,1.3373730182647705,OPTIMAL,133.114594530196,133.1145927303965,1.7997994916640891e-06,7.29630106610369e-11,2.0041498867041285e-08,,"{""iteration_info_limitation"": ""SDPA does not provide iteration count through CVXPY"", ""solver_solve_time"": null, ""problem_class"": ""SDP""}" +1681,matlab_sdpt3,SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T14:34:56,1.0130884583333333,OPTIMAL,133.11458916487112,133.11458909069876,7.417236247420078e-08,1.8201739000684703e-10,0.0,16,"{""matlab_output"": {""solver_name"": ""SDPT3"", ""status"": ""optimal"", ""solve_time"": 1.0130884583333333, ""setup_time"": [], ""iterations"": 16, ""primal_objective_value"": 133.11458916487112, ""dual_objective_value"": 133.11458909069876, ""duality_gap"": 7.417236247420078e-08, ""primal_infeasibility"": 1.8201739000684703e-10, ""dual_infeasibility"": 0, ""solver_version"": ""SDPT3-4.0-20240410"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 23:34:52"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sdpt3"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +1548,matlab_sedumi,SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)),SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""96ca043787ef8c38515cfa8d108d16b61b823e04""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1752926592.0}",96ca043787ef8c38515cfa8d108d16b61b823e04,2025-07-19T13:15:30,1.1123747916666666,OPTIMAL,133.11458828413384,133.11458828656077,2.426929768262198e-09,7.281149777057451e-09,2.2946480299761797e-10,24,"{""matlab_output"": {""solver_name"": ""SeDuMi"", ""status"": ""optimal"", ""solve_time"": 1.1123747916666666, ""setup_time"": [], ""iterations"": 24, ""primal_objective_value"": 133.11458828413384, ""dual_objective_value"": 133.11458828656077, ""duality_gap"": 2.426929768262198e-09, ""primal_infeasibility"": 7.281149777057451e-09, ""dual_infeasibility"": 2.2946480299761797e-10, ""solver_version"": ""SeDuMi-1.3.7"", ""solver_options"": {}, ""termination_reason"": """", ""error_message"": """", ""timestamp"": ""2025-07-19 22:15:26"", ""matlab_version"": ""24.1.0.2537033 (R2024a)""}, ""matlab_version"": ""24.1.0.2537033 (R2024a)"", ""solver_backend"": ""sedumi"", ""execution_environment"": ""matlab"", ""problem_class"": ""SDP""}" +2356,scipy_linprog,scipy-1.15.3,SDPLIB,truss8_sdp,SDP,"{""cpu"": {""cpu_count"": 8, ""cpu_count_physical"": 8, ""processor"": ""arm"", ""architecture"": ""64bit""}, ""memory"": {""total_gb"": 24.0}, ""os"": {""system"": ""Darwin"", ""machine"": ""arm64"", ""release"": ""23.5.0""}, ""python"": {""implementation"": ""CPython"", ""version"": ""3.12.2"", ""version_info"": ""3.12.2""}, ""git"": {""commit_hash"": ""f95b7a823790a2de8d950f0b890edf003d50e81e""}, ""timezone"": {""timezone_name"": ""UTC"", ""utc_offset_hours"": 0.0}, ""timestamp"": 1753515904.0}",f95b7a823790a2de8d950f0b890edf003d50e81e,2025-08-05T12:34:55,,UNSUPPORTED,,,,,,,"{""reason"": ""Solver does not support SDP problems"", ""problem_type"": ""SDP"", ""problem_class"": ""SDP""}" diff --git a/docs/pages/data/benchmark_results.json b/docs/pages/data/benchmark_results_latest.json similarity index 54% rename from docs/pages/data/benchmark_results.json rename to docs/pages/data/benchmark_results_latest.json index 18bb54f..602a9ca 100644 --- a/docs/pages/data/benchmark_results.json +++ b/docs/pages/data/benchmark_results_latest.json @@ -1,41 +1,42 @@ { "metadata": { - "generated_at": "2025-07-19T23:39:48.223107", - "total_results": 1026, - "export_format": "simplified_benchmark_results", - "version": "1.0" + "generated_at": "2025-08-06T01:09:44.010402", + "total_results": 1320, + "export_format": "sanitized_benchmark_results", + "version": "2.0", + "full_environment_info": false, + "data_scope": "latest" }, "summary": { - "total_results": 1026, + "total_results": 1320, "total_solvers": 11, - "total_problems": 138, - "success_rate": 0.4, - "avg_solve_time": 12.413195807016402, - "successful_results": 232, - "unsupported_results": 446, - "applicable_results": 580, + "total_problems": 120, + "success_rate": 0.48143236074270557, + "avg_solve_time": 28.630715541166914, + "successful_results": 363, + "unsupported_results": 566, + "applicable_results": 754, "problem_type_distribution": { - "UNKNOWN": 69, - "SDP": 809, - "SOCP": 148 + "SDP": 1133, + "SOCP": 187 }, "library_distribution": { - "DIMACS": 330, - "SDPLIB": 696 + "DIMACS": 374, + "SDPLIB": 946 }, "status_distribution": { - "ERROR": 145, - "NUM_ERROR": 40, - "OPTIMAL (INACCURATE)": 86, - "OPTIMAL": 232, - "UNSUPPORTED": 446, - "TIMEOUT": 3, + "SIGKILL": 22, + "TIMEOUT": 108, + "UNSUPPORTED": 566, + "OPTIMAL": 363, + "NUM_ERROR": 48, + "OPTIMAL (INACCURATE)": 92, + "ERROR": 57, + "INFEASIBLE": 9, "MAX_ITER": 10, - "INFEASIBLE": 16, - "UNKNOWN": 33, + "UNKNOWN": 32, "UNBOUNDED (INACCURATE)": 1, - "UNBOUNDED": 12, - "INFEASIBLE (INACCURATE)": 2 + "SUBPROCESS_ERROR": 12 }, "solver_names": [ "cvxpy_clarabel", @@ -55,7 +56,6 @@ "arch2", "arch4", "arch8", - "biomedP", "bm1", "control1", "control10", @@ -73,9 +73,7 @@ "equalG11", "equalG51", "fap09", - "fap36", "filter48", - "filtinf1", "gpp100", "gpp124-1", "gpp124-2", @@ -89,10 +87,8 @@ "gpp500-2", "gpp500-3", "gpp500-4", - "hamming_11_2", "hamming_7_5_6", "hamming_8_3_4", - "hamming_9_5_6", "hamming_9_8", "hinf1", "hinf10", @@ -111,16 +107,9 @@ "hinf7", "hinf8", "hinf9", - "industry2", - "infd1", - "infd2", - "infp1", - "infp2", "maxG11", "maxG32", "maxG51", - "maxG55", - "maxG60", "mcp100", "mcp124-1", "mcp124-2", @@ -140,11 +129,8 @@ "nb_L2", "nb_L2_bessel", "nql180", - "nql180old", "nql30", - "nql30old", "nql60", - "nql60old", "qap10", "qap5", "qap6", @@ -153,11 +139,8 @@ "qap9", "qpG11", "qpG51", - "qssp180old", "qssp30", - "qssp30old", "qssp60", - "qssp60old", "sched_100_100_orig", "sched_100_100_scaled", "sched_100_50_orig", @@ -193,99 +176,99 @@ }, "solver_comparison": [ { - "solver_name": "cvxpy_scip", - "problems_attempted": 81, - "problems_applicable": 3, - "problems_solved": 2, - "problems_unsupported": 78, - "success_rate": 0.6666666666666666, - "avg_solve_time": 54.10598909854889, - "min_solve_time": 50.8220100402832, - "max_solve_time": 57.389968156814575 - }, - { - "solver_name": "cvxpy_clarabel", - "problems_attempted": 79, - "problems_applicable": 79, - "problems_solved": 47, + "solver_name": "matlab_sdpt3", + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 73, "problems_unsupported": 0, - "success_rate": 0.5949367088607594, - "avg_solve_time": 8.219515762831035, - "min_solve_time": 0.00506281852722168, - "max_solve_time": 116.92459893226624 + "success_rate": 0.6083333333333333, + "avg_solve_time": 8.675550053672318, + "min_solve_time": 0.24263908333333334, + "max_solve_time": 300.0 }, { - "solver_name": "cvxpy_scs", - "problems_attempted": 62, - "problems_applicable": 62, - "problems_solved": 31, + "solver_name": "matlab_sedumi", + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 64, "problems_unsupported": 0, - "success_rate": 0.5, - "avg_solve_time": 14.027361787733485, - "min_solve_time": 0.005390167236328125, - "max_solve_time": 92.80738425254822 + "success_rate": 0.5333333333333333, + "avg_solve_time": 19.78552498128531, + "min_solve_time": 0.2549562083333333, + "max_solve_time": 300.0 }, { - "solver_name": "matlab_sdpt3", - "problems_attempted": 135, - "problems_applicable": 135, - "problems_solved": 50, + "solver_name": "cvxpy_clarabel", + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 62, "problems_unsupported": 0, - "success_rate": 0.37037037037037035, - "avg_solve_time": 8.737274696712733, - "min_solve_time": 0.24263908333333334, - "max_solve_time": 138.05433633333334 + "success_rate": 0.5166666666666667, + "avg_solve_time": 30.10744532942772, + "min_solve_time": 0.00506281852722168, + "max_solve_time": 120.0 }, { - "solver_name": "matlab_sedumi", - "problems_attempted": 138, - "problems_applicable": 138, - "problems_solved": 51, + "solver_name": "cvxpy_sdpa", + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 54, "problems_unsupported": 0, - "success_rate": 0.3695652173913043, - "avg_solve_time": 19.24742645824121, - "min_solve_time": 0.18138175, - "max_solve_time": 300.0 + "success_rate": 0.45, + "avg_solve_time": 19.111536824703215, + "min_solve_time": 0.007824182510375977, + "max_solve_time": 121.13185501098633 }, { "solver_name": "cvxpy_cvxopt", - "problems_attempted": 74, - "problems_applicable": 74, - "problems_solved": 25, + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 53, "problems_unsupported": 0, - "success_rate": 0.33783783783783783, - "avg_solve_time": 12.945587092882967, + "success_rate": 0.44166666666666665, + "avg_solve_time": 32.71225027441979, "min_solve_time": 0.027730941772460938, "max_solve_time": 228.55329608917236 }, + { + "solver_name": "cvxpy_scs", + "problems_attempted": 120, + "problems_applicable": 120, + "problems_solved": 47, + "problems_unsupported": 0, + "success_rate": 0.39166666666666666, + "avg_solve_time": 51.14134685198466, + "min_solve_time": 0.005390167236328125, + "max_solve_time": 120.0 + }, { "solver_name": "cvxpy_ecos", - "problems_attempted": 90, - "problems_applicable": 12, - "problems_solved": 4, - "problems_unsupported": 78, - "success_rate": 0.3333333333333333, - "avg_solve_time": 13.632525010542436, + "problems_attempted": 120, + "problems_applicable": 17, + "problems_solved": 6, + "problems_unsupported": 103, + "success_rate": 0.35294117647058826, + "avg_solve_time": 26.60841337372275, "min_solve_time": 0.17055892944335938, - "max_solve_time": 52.14936709403992 + "max_solve_time": 120.0 }, { - "solver_name": "cvxpy_sdpa", - "problems_attempted": 74, - "problems_applicable": 74, - "problems_solved": 22, - "problems_unsupported": 0, - "success_rate": 0.2972972972972973, - "avg_solve_time": 9.483143959959893, - "min_solve_time": 0.007824182510375977, - "max_solve_time": 104.95400619506836 + "solver_name": "cvxpy_scip", + "problems_attempted": 120, + "problems_applicable": 17, + "problems_solved": 4, + "problems_unsupported": 103, + "success_rate": 0.23529411764705882, + "avg_solve_time": 99.62219180780299, + "min_solve_time": 40.53333306312561, + "max_solve_time": 120.0 }, { "solver_name": "cvxpy_highs", - "problems_attempted": 98, - "problems_applicable": 1, + "problems_attempted": 120, + "problems_applicable": 0, "problems_solved": 0, - "problems_unsupported": 97, + "problems_unsupported": 120, "success_rate": 0.0, "avg_solve_time": 0.0, "min_solve_time": 0.0, @@ -293,10 +276,10 @@ }, { "solver_name": "cvxpy_osqp", - "problems_attempted": 98, - "problems_applicable": 1, + "problems_attempted": 120, + "problems_applicable": 0, "problems_solved": 0, - "problems_unsupported": 97, + "problems_unsupported": 120, "success_rate": 0.0, "avg_solve_time": 0.0, "min_solve_time": 0.0, @@ -304,10 +287,10 @@ }, { "solver_name": "scipy_linprog", - "problems_attempted": 97, - "problems_applicable": 1, + "problems_attempted": 120, + "problems_applicable": 0, "problems_solved": 0, - "problems_unsupported": 96, + "problems_unsupported": 120, "success_rate": 0.0, "avg_solve_time": 0.0, "min_solve_time": 0.0, @@ -316,12 +299,12 @@ ], "results": [ { - "id": 1588, - "solver_name": "matlab_sdpt3", + "id": 1896, + "solver_name": "cvxpy_clarabel", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "biomedP", - "problem_type": "UNKNOWN", + "problem_name": "bm1", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -342,30 +325,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:03", - "solve_time": null, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:20:43", + "solve_time": 30.604387998580933, + "status": "SIGKILL", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-03 23:20:13 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:20:13 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:20:13 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:20:13 - python_solver_runner - INFO - Subprocess solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - python_solver_runner - INFO - Solving bm1 with cvxpy_clarabel\n2025-08-03 23:20:13 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:20:13 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/BISECT/bm1.mat.gz\n2025-08-03 23:20:13 - mat_loader - INFO - Converted bm1: SDP problem (777924 vars, 883 constraints)\n2025-08-03 23:20:13 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='bm1', class='SDP', 777924 vars, 883 constraints)", + "problem_class": "SDP" + } }, { - "id": 1457, - "solver_name": "matlab_sedumi", + "id": 1897, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "biomedP", - "problem_type": "UNKNOWN", + "problem_name": "bm1", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -386,27 +377,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:12:08", - "solve_time": null, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:23:46", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1662, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2259, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "bm1", "problem_type": "SDP", @@ -430,27 +428,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:10:50", - "solve_time": 7.386539916666667, - "status": "NUM_ERROR", - "primal_objective_value": 23.439854216116014, - "dual_objective_value": 23.439818538353734, - "duality_gap": 3.5677762280528214e-05, - "primal_infeasibility": 8.672790954165753e-13, - "dual_infeasibility": 3.574491428937259e-12, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1456, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2261, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "bm1", "problem_type": "SDP", @@ -474,73 +480,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:12:04", - "solve_time": 54.54148845833333, - "status": "NUM_ERROR", - "primal_objective_value": 23.44598268573775, - "dual_objective_value": 24.309815518761912, - "duality_gap": 0.863832833024162, - "primal_infeasibility": 3.19198625458438e-06, - "dual_infeasibility": 3.967426777597085e-06, - "iterations": 29 - }, - { - "id": 337, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "DIMACS", - "problem_name": "copo14", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:32", - "solve_time": 0.23426198959350586, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -1.6401068919646988e-08, - "dual_objective_value": -3.033602862628601e-08, - "duality_gap": 1.3934959706639019e-08, - "primal_infeasibility": 7.24230986971135e-09, - "dual_infeasibility": 0.0, - "iterations": 14 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 338, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "id": 2262, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -562,29 +532,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:34", - "solve_time": 2.3531270027160645, - "status": "OPTIMAL", - "primal_objective_value": -2.497696811876171e-08, - "dual_objective_value": -3.94442290703259e-08, - "duality_gap": 1.4467260951564188e-08, - "primal_infeasibility": 7.720817848199098e-09, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 339, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2260, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -606,14 +584,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:08", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -621,14 +602,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 340, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1898, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -650,29 +636,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:26:26", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 341, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1720, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -694,29 +687,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:29:14", + "solve_time": 121.13185501098633, + "status": "OPTIMAL", + "primal_objective_value": 23.439818974587567, + "dual_objective_value": 23.439818435224183, + "duality_gap": 5.393633841777046e-07, + "primal_infeasibility": 1.589519974455338e-11, + "dual_infeasibility": 4.7948349842514454e-14, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 342, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1662, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -738,29 +739,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:50", + "solve_time": 7.386539916666667, + "status": "NUM_ERROR", + "primal_objective_value": 23.439854216116014, + "dual_objective_value": 23.439818538353734, + "duality_gap": 3.5677762280528214e-05, + "primal_infeasibility": 8.672790954165753e-13, + "dual_infeasibility": 3.574491428937259e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "num_error", + "solve_time": 7.386539916666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 23.439854216116014, + "dual_objective_value": 23.439818538353734, + "duality_gap": 3.5677762280528214e-05, + "primal_infeasibility": 8.672790954165753e-13, + "dual_infeasibility": 3.574491428937259e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 343, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1456, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -782,29 +810,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", - "solve_time": 0.09977483749389648, - "status": "OPTIMAL", - "primal_objective_value": 2.763797219494657e-06, - "dual_objective_value": 6.008903171780412e-07, - "duality_gap": 2.1629069023166157e-06, - "primal_infeasibility": 5.79374368893745e-07, - "dual_infeasibility": 2.176976834364473e-09, - "iterations": 275 - }, - { - "id": 344, - "solver_name": "cvxpy_sdpa", - "solver_version": "unknown", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:04", + "solve_time": 54.54148845833333, + "status": "NUM_ERROR", + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 54.54148845833333, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 23.44598268573775, + "dual_objective_value": 24.309815518761912, + "duality_gap": 0.863832833024162, + "primal_infeasibility": 3.19198625458438e-06, + "dual_infeasibility": 3.967426777597085e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2263, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "copo14", + "problem_name": "bm1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -826,27 +881,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:35", - "solve_time": 0.13973784446716309, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:09", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1590, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1900, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", "problem_name": "copo14", "problem_type": "SDP", @@ -870,27 +933,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:15", - "solve_time": 0.8339302916666667, - "status": "OPTIMAL", - "primal_objective_value": 3.052785142731995e-10, - "dual_objective_value": -8.226008756477171e-10, - "duality_gap": 1.1278793899209166e-09, - "primal_infeasibility": 8.989166660748627e-12, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:52", + "solve_time": 0.22959208488464355, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -1.6401068919646988e-08, + "dual_objective_value": -3.033602862628601e-08, + "duality_gap": 1.3934959706639019e-08, + "primal_infeasibility": 7.24230986971135e-09, "dual_infeasibility": 0.0, - "iterations": 17 + "iterations": 14, + "memo": { + "solver_solve_time": 0.18366492, + "problem_class": "SDP" + } }, { - "id": 346, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1901, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", "problem_name": "copo14", "problem_type": "SDP", @@ -914,27 +984,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:46", - "solve_time": 5.53113579750061, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:54", + "solve_time": 2.192477226257324, "status": "OPTIMAL", - "primal_objective_value": -6.648659598568196e-09, - "dual_objective_value": -6.63208127634892e-09, - "duality_gap": 1.6578322219276284e-11, - "primal_infeasibility": 1.912548723169372e-09, + "primal_objective_value": -2.497696811876171e-08, + "dual_objective_value": -3.94442290703259e-08, + "duality_gap": 1.4467260951564188e-08, + "primal_infeasibility": 7.720817848199098e-09, "dual_infeasibility": 0.0, - "iterations": 17 + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1459, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2264, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "copo14", "problem_type": "SDP", @@ -958,27 +1036,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:12:18", - "solve_time": 0.6905710833333333, - "status": "OPTIMAL", - "primal_objective_value": -6.648659598568196e-09, - "dual_objective_value": -6.63208127634892e-09, - "duality_gap": 1.6578322219276284e-11, - "primal_infeasibility": 1.912548723169372e-09, - "dual_infeasibility": 0.0, - "iterations": 17 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 347, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2266, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "copo14", "problem_type": "SDP", @@ -1002,14 +1088,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:46", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -1017,14 +1106,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 348, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2267, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1046,73 +1140,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752362240.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:10:40", - "solve_time": 4.257943153381348, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -4.4884696204575136e-08, - "dual_objective_value": -6.567172048617617e-08, - "duality_gap": 2.0787024281601034e-08, - "primal_infeasibility": 1.0638153482222468e-08, - "dual_infeasibility": 0.0, - "iterations": 16 - }, - { - "id": 349, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", - "problem_library": "DIMACS", - "problem_name": "copo23", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:43", - "solve_time": 62.819146156311035, - "status": "OPTIMAL", - "primal_objective_value": -2.4827762840420875e-08, - "dual_objective_value": -3.392721178555364e-08, - "duality_gap": 9.099448945132768e-09, - "primal_infeasibility": 4.740723896523209e-09, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 350, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2265, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1134,14 +1192,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:43", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:10", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -1149,14 +1210,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 351, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1902, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1178,29 +1244,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:55", + "solve_time": 0.1000521183013916, + "status": "OPTIMAL", + "primal_objective_value": 2.763797219494657e-06, + "dual_objective_value": 6.008903171780412e-07, + "duality_gap": 2.1629069023166157e-06, + "primal_infeasibility": 5.79374368893745e-07, + "dual_infeasibility": 2.176976834364473e-09, + "iterations": 275, + "memo": { + "solver_solve_time": 0.054842958000000004, + "problem_class": "SDP" + } }, { - "id": 352, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1899, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1222,29 +1295,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:43", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:51", + "solve_time": 0.19372987747192383, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 353, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1590, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1266,29 +1346,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:15", + "solve_time": 0.8339302916666667, + "status": "OPTIMAL", + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8339302916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 3.052785142731995e-10, + "dual_objective_value": -8.226008756477171e-10, + "duality_gap": 1.1278793899209166e-09, + "primal_infeasibility": 8.989166660748627e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 354, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1459, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1310,29 +1417,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:45", - "solve_time": 1.2642018795013428, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:18", + "solve_time": 0.6905710833333333, "status": "OPTIMAL", - "primal_objective_value": -7.956279965304347e-06, - "dual_objective_value": -3.197190700468751e-06, - "duality_gap": -4.759089264835596e-06, - "primal_infeasibility": 2.804389571931542e-06, - "dual_infeasibility": 8.648485158449915e-09, - "iterations": 300 - }, - { - "id": 355, - "solver_name": "cvxpy_sdpa", - "solver_version": "unknown", + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6905710833333333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -6.648659598568196e-09, + "dual_objective_value": -6.63208127634892e-09, + "duality_gap": 1.6578322219276284e-11, + "primal_infeasibility": 1.912548723169372e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2268, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "copo23", + "problem_name": "copo14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1354,27 +1488,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:11:48", - "solve_time": 2.2467129230499268, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:12", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1591, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1904, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", "problem_name": "copo23", "problem_type": "SDP", @@ -1398,27 +1540,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:27", - "solve_time": 6.8528615, - "status": "OPTIMAL", - "primal_objective_value": 2.1934585398009077e-10, - "dual_objective_value": -5.412207421364536e-10, - "duality_gap": 7.605665961165443e-10, - "primal_infeasibility": 4.353859708422998e-12, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:28:02", + "solve_time": 4.074679136276245, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -4.4884696204575136e-08, + "dual_objective_value": -6.567172048617617e-08, + "duality_gap": 2.0787024281601034e-08, + "primal_infeasibility": 1.0638153482222468e-08, "dual_infeasibility": 0.0, - "iterations": 20 + "iterations": 16, + "memo": { + "solver_solve_time": 3.131591457, + "problem_class": "SDP" + } }, { - "id": 357, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1905, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", "problem_name": "copo23", "problem_type": "SDP", @@ -1442,27 +1591,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:12:28", - "solve_time": 28.6621150970459, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:29:02", + "solve_time": 58.70020890235901, "status": "OPTIMAL", - "primal_objective_value": -1.8940067866499155e-08, - "dual_objective_value": -1.8927203322356983e-08, - "duality_gap": 1.2864544142172114e-11, - "primal_infeasibility": 3.257627120427927e-09, + "primal_objective_value": -2.4827762840420875e-08, + "dual_objective_value": -3.392721178555364e-08, + "duality_gap": 9.099448945132768e-09, + "primal_infeasibility": 4.740723896523209e-09, "dual_infeasibility": 0.0, - "iterations": 20 + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1460, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2269, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "copo23", "problem_type": "SDP", @@ -1486,27 +1643,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:12:46", - "solve_time": 23.723182375, - "status": "OPTIMAL", - "primal_objective_value": -1.8940067866499155e-08, - "dual_objective_value": -1.8927203322356983e-08, - "duality_gap": 1.2864544142172114e-11, - "primal_infeasibility": 3.257627120427927e-09, - "dual_infeasibility": 0.0, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 358, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2271, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "copo23", "problem_type": "SDP", @@ -1530,14 +1695,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:12:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:14", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -1545,14 +1713,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1461, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 2272, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "fap09", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1574,30 +1747,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:54:06", - "solve_time": 300.0, - "status": "TIMEOUT", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:14", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1583, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 2270, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "fap36", - "problem_type": "UNKNOWN", + "problem_name": "copo23", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -1618,29 +1799,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:47:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:13", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 369, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1906, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1662,29 +1851,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:11", - "solve_time": 1.458812952041626, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1.4161020106468114, - "dual_objective_value": 1.4161020228518586, - "duality_gap": -1.2205047195124052e-08, - "primal_infeasibility": 1.1274549784995933e-06, - "dual_infeasibility": 6.106204455194476e-09, - "iterations": 31 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:29:05", + "solve_time": 1.2210209369659424, + "status": "OPTIMAL", + "primal_objective_value": -7.956279965304347e-06, + "dual_objective_value": -3.197190700468751e-06, + "duality_gap": -4.759089264835596e-06, + "primal_infeasibility": 2.804389571931542e-06, + "dual_infeasibility": 8.648485158449915e-09, + "iterations": 300, + "memo": { + "solver_solve_time": 0.276767833, + "problem_class": "SDP" + } }, { - "id": 370, - "solver_name": "cvxpy_cvxopt", + "id": 1903, + "solver_name": "cvxpy_sdpa", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1706,29 +1902,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:18", - "solve_time": 7.210028886795044, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:27:57", + "solve_time": 1.9144980907440186, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 371, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1591, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1750,29 +1953,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:18", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:27", + "solve_time": 6.8528615, + "status": "OPTIMAL", + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.8528615, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 2.1934585398009077e-10, + "dual_objective_value": -5.412207421364536e-10, + "duality_gap": 7.605665961165443e-10, + "primal_infeasibility": 4.353859708422998e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 372, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1460, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1794,29 +2024,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:18", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 373, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:12:46", + "solve_time": 23.723182375, + "status": "OPTIMAL", + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 23.723182375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1.8940067866499155e-08, + "dual_objective_value": -1.8927203322356983e-08, + "duality_gap": 1.2864544142172114e-11, + "primal_infeasibility": 3.257627120427927e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:12:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2273, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "copo23", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1838,14 +2095,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:18", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -1853,14 +2113,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 374, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1908, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1882,29 +2147,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:18", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:32:13", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 375, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1909, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1926,29 +2198,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:48:49", - "solve_time": 31.47291898727417, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1.409073703261462, - "dual_objective_value": 1.4090806844233812, - "duality_gap": -6.981161919217271e-06, - "primal_infeasibility": 7.523837266388142e-05, - "dual_infeasibility": 3.375321326271274e-05, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:34:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 376, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1798, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -1970,29 +2249,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:49:30", - "solve_time": 40.1348659992218, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1.4161295151451585, - "dual_objective_value": 1.4161284417476618, - "duality_gap": 1.0733974966647963e-06, - "primal_infeasibility": 3.529475717602551e-07, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1592, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1736, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2014,29 +2301,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:35", - "solve_time": 3.385503375, - "status": "MAX_ITER", - "primal_objective_value": 1.4161291196982995, - "dual_objective_value": 1.416128628065133, - "duality_gap": 4.916331663995521e-07, - "primal_infeasibility": 7.938472564250578e-08, - "dual_infeasibility": 0.0, - "iterations": 42 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1466, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1737, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2058,29 +2353,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:07", - "solve_time": 0.8317842916666667, - "status": "OPTIMAL", - "primal_objective_value": 1.416129455716613, - "dual_objective_value": 1.4161294580694332, - "duality_gap": 2.3528201609224197e-09, - "primal_infeasibility": 1.2528510194570304e-09, - "dual_infeasibility": 1.5300296534754392e-08, - "iterations": 37 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 377, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1799, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "filter48", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2102,14 +2405,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:49:30", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -2117,14 +2423,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 380, - "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "id": 1910, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2146,73 +2457,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:50:48", - "solve_time": 3.722568988800049, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 381, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", - "problem_library": "DIMACS", - "problem_name": "filtinf1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:06", - "solve_time": 17.94445276260376, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 382, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:35:56", + "solve_time": 89.28411173820496, + "status": "OPTIMAL", + "primal_objective_value": 10.797895540459592, + "dual_objective_value": 10.797826537085669, + "duality_gap": 6.900337392323763e-05, + "primal_infeasibility": 6.245639123478367e-08, + "dual_infeasibility": 5.5257728472699056e-14, + "iterations": 16325, + "memo": { + "solver_solve_time": 79.354613125, + "problem_class": "SDP" + } + }, + { + "id": 1907, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2234,29 +2508,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:06", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:30:13", + "solve_time": 65.82996416091919, + "status": "INFEASIBLE", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 383, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1819, + "solver_name": "matlab_sdpt3", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2278,29 +2560,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:06", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6", + "timestamp": "2025-07-22T15:24:49", + "solve_time": 300.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } }, { - "id": 384, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1461, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2322,29 +2611,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:06", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:54:06", + "solve_time": 300.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } }, { - "id": 385, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1738, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "fap09", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2366,14 +2662,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:06", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:36:13", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -2381,14 +2680,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 386, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1912, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2410,29 +2714,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:51:44", - "solve_time": 37.567578077316284, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:39", + "solve_time": 1.3734347820281982, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 0.0, - "dual_objective_value": 1.4216967575142458e-06, - "duality_gap": -1.4216967575142458e-06, - "primal_infeasibility": 1.5207975958875546e-05, - "dual_infeasibility": 1.712357226385474e-05, - "iterations": 100000 + "primal_objective_value": 1.4161020106468114, + "dual_objective_value": 1.4161020228518586, + "duality_gap": -1.2205047195124052e-08, + "primal_infeasibility": 1.1274549784995933e-06, + "dual_infeasibility": 6.106204455194476e-09, + "iterations": 31, + "memo": { + "solver_solve_time": 1.344283376, + "problem_class": "SDP" + } }, { - "id": 387, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1913, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2454,29 +2765,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:52:18", - "solve_time": 34.271137952804565, - "status": "INFEASIBLE", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:46", + "solve_time": 6.713871002197266, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1593, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1800, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2498,29 +2816,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:43", - "solve_time": 2.7789466666666667, - "status": "INFEASIBLE", - "primal_objective_value": 0.0, - "dual_objective_value": 1.0, - "duality_gap": 1.0, - "primal_infeasibility": 1.0302233914436229e-05, - "dual_infeasibility": 0.0, - "iterations": 34 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1467, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB unknown)", + "id": 1763, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2542,29 +2868,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:13", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 388, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1764, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "filtinf1", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2586,14 +2920,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:52:18", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -2601,14 +2938,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 411, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1801, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2630,14 +2972,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:43:11", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -2645,14 +2990,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 412, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1914, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2674,29 +3024,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:43:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:17", + "solve_time": 30.740686178207397, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.409073703261462, + "dual_objective_value": 1.4090806844233812, + "duality_gap": -6.981161919217271e-06, + "primal_infeasibility": 7.523837266388142e-05, + "dual_infeasibility": 3.375321326271274e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 30.709408041, + "problem_class": "SDP" + } }, { - "id": 413, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1911, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2718,29 +3075,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:43:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:36:37", + "solve_time": 39.79374122619629, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1.4161295151451585, + "dual_objective_value": 1.4161284417476618, + "duality_gap": 1.0733974966647963e-06, + "primal_infeasibility": 3.529475717602551e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 414, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1592, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2762,29 +3127,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:43:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:35", + "solve_time": 3.385503375, + "status": "MAX_ITER", + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0.0, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 3.385503375, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 1.4161291196982995, + "dual_objective_value": 1.416128628065133, + "duality_gap": 4.916331663995521e-07, + "primal_infeasibility": 7.938472564250578e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 409, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1466, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2806,29 +3198,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:42:43", - "solve_time": 16.614455699920654, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1580, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:07", + "solve_time": 0.8317842916666667, + "status": "OPTIMAL", + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8317842916666667, + "setup_time": [], + "iterations": 37, + "primal_objective_value": 1.416129455716613, + "dual_objective_value": 1.4161294580694332, + "duality_gap": 2.3528201609224197e-09, + "primal_infeasibility": 1.2528510194570304e-09, + "dual_infeasibility": 1.5300296534754392e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1765, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "hamming_11_2", + "problem_name": "filter48", "problem_type": "SDP", "environment_info": { "cpu": { @@ -2850,58 +3269,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:36:37", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 415, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "hamming_11_2", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:43:20", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -2909,10 +3287,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 426, + "id": 1920, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", @@ -2938,25 +3321,32 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:46:05", - "solve_time": 18.875242948532104, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:39", + "solve_time": 20.023534059524536, "status": "OPTIMAL", "primal_objective_value": -42.66666667203015, "dual_objective_value": -42.66666666625962, "duality_gap": -5.770530719928502e-09, "primal_infeasibility": 1.8842178928241884e-09, "dual_infeasibility": 8.196094314750425e-14, - "iterations": 6 + "iterations": 6, + "memo": { + "solver_solve_time": 19.974756208, + "problem_class": "SDP" + } }, { - "id": 425, + "id": 1921, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", @@ -2982,22 +3372,30 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:45:38", - "solve_time": 6.381925106048584, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:46", + "solve_time": 5.853014945983887, "status": "OPTIMAL", "primal_objective_value": -42.666666408791805, "dual_objective_value": -42.66666641006614, "duality_gap": 1.2743370803036669e-09, "primal_infeasibility": 3.3836883209684965e-16, "dual_infeasibility": 4.956901572407782e-11, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 418, @@ -3026,6 +3424,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3041,7 +3442,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 419, @@ -3070,6 +3476,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3085,7 +3494,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 420, @@ -3114,6 +3528,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3129,7 +3546,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 421, @@ -3158,6 +3580,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3173,10 +3598,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 423, + "id": 1922, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", @@ -3202,25 +3632,32 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:45:18", - "solve_time": 0.3216381072998047, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:47", + "solve_time": 0.27846193313598633, "status": "OPTIMAL", "primal_objective_value": -42.66663809919346, "dual_objective_value": -42.666691827474416, "duality_gap": 5.3728280953180274e-05, "primal_infeasibility": 3.823840598620477e-07, "dual_infeasibility": 0.0, - "iterations": 150 + "iterations": 150, + "memo": { + "solver_solve_time": 0.228795458, + "problem_class": "SDP" + } }, { - "id": 424, + "id": 1919, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", @@ -3246,25 +3683,33 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:45:25", - "solve_time": 0.6072909832000732, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:19", + "solve_time": 0.5973911285400391, "status": "OPTIMAL", "primal_objective_value": -42.66666466059041, "dual_objective_value": -42.66666774012631, "duality_gap": 3.0795358938462414e-06, "primal_infeasibility": 4.494236949271214e-16, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 416, + "id": 1710, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", @@ -3290,22 +3735,49 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:44:47", - "solve_time": 6.90191912651062, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:42:19", + "solve_time": 1.0727401666666667, "status": "OPTIMAL", "primal_objective_value": -42.66666606990655, "dual_objective_value": -42.66666679075191, "duality_gap": 7.208453638440915e-07, "primal_infeasibility": 1.0369985582790911e-10, "dual_infeasibility": 0.0, - "iterations": 8 + "iterations": 8, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0727401666666667, + "setup_time": [], + "iterations": 8, + "primal_objective_value": -42.66666606990655, + "dual_objective_value": -42.66666679075191, + "duality_gap": 7.208453638440915e-07, + "primal_infeasibility": 1.0369985582790911e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:42:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1577, @@ -3334,6 +3806,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3349,7 +3824,31 @@ "duality_gap": 3.6425973348741536e-09, "primal_infeasibility": 2.7680298055873787e-09, "dual_infeasibility": 0.0, - "iterations": 17 + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 5.317319375, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -42.666666707488446, + "dual_objective_value": -42.66666670384585, + "duality_gap": 3.6425973348741536e-09, + "primal_infeasibility": 2.7680298055873787e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:22:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 422, @@ -3378,6 +3877,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3393,7 +3895,114 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1924, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:44:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1925, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "hamming_8_3_4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:46:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { "id": 428, @@ -3422,6 +4031,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3437,7 +4049,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 429, @@ -3466,6 +4083,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3481,7 +4101,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 430, @@ -3510,6 +4135,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3525,7 +4153,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 431, @@ -3554,6 +4187,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3569,10 +4205,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 433, + "id": 1926, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", @@ -3598,27 +4239,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:50:36", - "solve_time": 5.7120819091796875, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:47:01", + "solve_time": 5.457653045654297, "status": "OPTIMAL", "primal_objective_value": -25.599995287166273, "dual_objective_value": -25.599994400951143, "duality_gap": -8.862151297250875e-07, "primal_infeasibility": 8.066216926898107e-08, "dual_infeasibility": 1.0420348665432626e-09, - "iterations": 225 + "iterations": 225, + "memo": { + "solver_solve_time": 2.095184666, + "problem_class": "SDP" + } }, { - "id": 427, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1923, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "hamming_8_3_4", "problem_type": "SDP", @@ -3642,27 +4290,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:48:04", - "solve_time": 86.88486099243164, - "status": "OPTIMAL", - "primal_objective_value": -25.599999843331616, - "dual_objective_value": -25.600000096699134, - "duality_gap": 2.5336751718896267e-07, - "primal_infeasibility": 3.1121343206556096e-11, - "dual_infeasibility": 0.0, - "iterations": 9 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:42:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 432, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1711, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", "problem_name": "hamming_8_3_4", "problem_type": "SDP", @@ -3686,29 +4341,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:50:18", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 434, - "solver_name": "matlab_sdpt3", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:44:56", + "solve_time": 151.334371, + "status": "OPTIMAL", + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0.0, + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 151.334371, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -25.599999843331616, + "dual_objective_value": -25.600000096699134, + "duality_gap": 2.5336751718896267e-07, + "primal_infeasibility": 3.1121343206556096e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:44:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1927, + "solver_name": "matlab_sedumi", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "hamming_9_5_6", + "problem_name": "hamming_8_3_4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -3730,29 +4412,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:53:40", - "solve_time": 12.240286827087402, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:50:06", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1581, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 432, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "hamming_9_5_6", + "problem_name": "hamming_8_3_4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -3774,27 +4463,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:36:51", - "solve_time": 0.0, - "status": "ERROR", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-13T15:50:18", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 402, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1916, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "hamming_9_8", "problem_type": "SDP", @@ -3818,27 +4515,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:30:36", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:50", + "solve_time": 25.861373901367188, + "status": "SIGKILL", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-03 23:37:25 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-03 23:37:25 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-03 23:37:25 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-03 23:37:25 - python_solver_runner - INFO - Subprocess solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - python_solver_runner - INFO - Solving hamming_9_8 with cvxpy_clarabel\n2025-08-03 23:37:25 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-03 23:37:25 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/HAMMING/hamming_9_8.mat.gz\n2025-08-03 23:37:25 - mat_loader - INFO - Converted hamming_9_8: SDP problem (262144 vars, 2305 constraints)\n2025-08-03 23:37:25 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='hamming_9_8', class='SDP', 262144 vars, 2305 constraints)", + "problem_class": "SDP" + } }, { - "id": 403, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1917, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "hamming_9_8", "problem_type": "SDP", @@ -3862,27 +4567,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:30:36", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:39:51", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 404, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1806, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "hamming_9_8", "problem_type": "SDP", @@ -3906,14 +4618,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:30:36", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -3921,12 +4636,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 405, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 403, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "hamming_9_8", "problem_type": "SDP", @@ -3950,6 +4670,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -3965,12 +4688,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 407, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 404, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", "problem_name": "hamming_9_8", "problem_type": "SDP", @@ -3994,6 +4722,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4001,18 +4732,126 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:31:13", - "solve_time": 21.987760066986084, + "timestamp": "2025-07-13T15:30:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1807, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1918, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "hamming_9_8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:40:18", + "solve_time": 22.157066822052002, "status": "OPTIMAL", "primal_objective_value": -224.0003222026227, "dual_objective_value": -224.00037351826538, "duality_gap": 5.131564267912836e-05, "primal_infeasibility": 5.492586278581966e-07, "dual_infeasibility": 1.2811657673655026e-08, - "iterations": 325 + "iterations": 325, + "memo": { + "solver_solve_time": 21.2309355, + "problem_class": "SDP" + } }, { - "id": 408, + "id": 1915, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", @@ -4038,25 +4877,33 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:31:20", - "solve_time": 2.6725239753723145, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:37:24", + "solve_time": 2.5426599979400635, "status": "OPTIMAL", "primal_objective_value": -223.99999657347732, "dual_objective_value": -224.00000195439648, "duality_gap": 5.380919162689679e-06, "primal_infeasibility": 7.830681581889643e-16, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 400, + "id": 1714, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", @@ -4082,22 +4929,49 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:21:49", - "solve_time": 6.828199863433838, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:46:48", + "solve_time": 2.2588253333333332, "status": "OPTIMAL", "primal_objective_value": -223.99999755382208, "dual_objective_value": -224.00000119657497, "duality_gap": 3.642752886889866e-06, "primal_infeasibility": 3.435419260401472e-11, "dual_infeasibility": 0.0, - "iterations": 9 + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.2588253333333332, + "setup_time": [], + "iterations": 9, + "primal_objective_value": -223.99999755382208, + "dual_objective_value": -224.00000119657497, + "duality_gap": 3.642752886889866e-06, + "primal_infeasibility": 3.435419260401472e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:46:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1579, @@ -4126,6 +5000,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4141,7 +5018,31 @@ "duality_gap": 1.4820255955783068e-07, "primal_infeasibility": 5.2487088009421366e-09, "dual_infeasibility": 0.0, - "iterations": 25 + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 26.297596458333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -224.00000026429433, + "dual_objective_value": -224.00000011609177, + "duality_gap": 1.4820255955783068e-07, + "primal_infeasibility": 5.2487088009421366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:36:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 406, @@ -4170,6 +5071,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4185,7 +5089,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 945, @@ -4214,6 +5123,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4229,7 +5141,11 @@ "duality_gap": -1.284688880104324e-09, "primal_infeasibility": 1.639363195032902e-05, "dual_infeasibility": 0.0, - "iterations": 44 + "iterations": 44, + "memo": { + "solver_solve_time": 0.014165622, + "problem_class": "SDP" + } }, { "id": 946, @@ -4258,6 +5174,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4273,7 +5192,11 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { "id": 949, @@ -4302,6 +5225,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4317,7 +5243,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 950, @@ -4346,6 +5277,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4361,7 +5295,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 951, @@ -4390,6 +5329,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4405,7 +5347,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 952, @@ -4434,6 +5381,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4449,7 +5399,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 947, @@ -4478,6 +5433,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4493,7 +5451,11 @@ "duality_gap": -0.02725251049704369, "primal_infeasibility": 8.264335179641823e-08, "dual_infeasibility": 1.6865610824784975e-07, - "iterations": 100000 + "iterations": 100000, + "memo": { + "solver_solve_time": 1.842922833, + "problem_class": "SDP" + } }, { "id": 948, @@ -4522,6 +5484,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4537,7 +5502,12 @@ "duality_gap": -23.06577990386155, "primal_infeasibility": 0.0002664963558692289, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 1595, @@ -4566,6 +5536,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4581,7 +5554,11 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } }, { "id": 1469, @@ -4610,6 +5587,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4625,7 +5605,11 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } }, { "id": 953, @@ -4654,6 +5638,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4669,10 +5656,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 448, + "id": 1945, "solver_name": "cvxpy_clarabel", "solver_version": "unknown", "problem_library": "DIMACS", @@ -4698,25 +5690,32 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:56:50", - "solve_time": 0.01382899284362793, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:12", + "solve_time": 0.01569819450378418, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 450, + "id": 1946, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", @@ -4742,22 +5741,29 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:57:04", - "solve_time": 0.07933282852172852, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:12", + "solve_time": 0.08118486404418945, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { "id": 452, @@ -4786,6 +5792,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4801,7 +5810,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 453, @@ -4830,6 +5844,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4845,7 +5862,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 454, @@ -4874,6 +5896,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4889,7 +5914,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 455, @@ -4918,6 +5948,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -4933,10 +5966,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 447, + "id": 1947, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", @@ -4962,25 +6000,32 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:56:50", - "solve_time": 2.832101821899414, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:16", + "solve_time": 2.8234028816223145, "status": "OPTIMAL (INACCURATE)", "primal_objective_value": -30.338550211015605, "dual_objective_value": -30.33799946764806, "duality_gap": -0.0005507433675440154, "primal_infeasibility": 5.355649271250418e-06, "dual_infeasibility": 9.237317500777047e-05, - "iterations": 100000 + "iterations": 100000, + "memo": { + "solver_solve_time": 2.818600625, + "problem_class": "SDP" + } }, { - "id": 451, + "id": 1944, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", @@ -5006,22 +6051,30 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:57:04", - "solve_time": 0.011415958404541016, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:11", + "solve_time": 0.011476993560791016, "status": "INFEASIBLE", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 1596, @@ -5050,6 +6103,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -5065,10 +6121,14 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } }, { - "id": 449, + "id": 1470, "solver_name": "matlab_sedumi", "solver_version": "unknown", "problem_library": "DIMACS", @@ -5094,6 +6154,60 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:29", + "solve_time": null, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "MATLAB execution failed (code 1): Error: K.l (linear variables) must be a non-negative integer; Original error: K.l (linear variables) must be a non-negative integer", + "problem_class": "SDP" + } + }, + { + "id": 456, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "hinf13", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -5102,21 +6216,77 @@ }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", "timestamp": "2025-07-13T15:57:04", - "solve_time": 4.410099029541016, - "status": "ERROR", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1470, - "solver_name": "matlab_sedumi", + "id": 1941, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "minphase", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:51", + "solve_time": 1.4263319969177246, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.966248462567837, + "dual_objective_value": 5.966249544813763, + "duality_gap": -1.0822459266535134e-06, + "primal_infeasibility": 9.701486038460028e-07, + "dual_infeasibility": 0.0, + "iterations": 38, + "memo": { + "solver_solve_time": 1.422955625, + "problem_class": "SDP" + } + }, + { + "id": 1942, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "hinf13", + "problem_name": "minphase", "problem_type": "SDP", "environment_info": { "cpu": { @@ -5138,29 +6308,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:29", - "solve_time": null, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:52", + "solve_time": 0.5794229507446289, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 456, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1804, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "hinf13", + "problem_name": "minphase", "problem_type": "SDP", "environment_info": { "cpu": { @@ -5182,14 +6359,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T15:57:04", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -5197,15 +6377,20 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 326, - "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "id": 394, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5226,30 +6411,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 327, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 395, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5270,30 +6463,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", + "timestamp": "2025-07-13T14:53:20", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 328, - "solver_name": "cvxpy_ecos", - "solver_version": "unknown", + "id": 1805, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5314,30 +6515,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:48:52", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 329, - "solver_name": "cvxpy_highs", - "solver_version": "unknown", + "id": 1943, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5358,30 +6567,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:00:11", + "solve_time": 18.53073477745056, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.942591741517748, + "dual_objective_value": 5.94744385187505, + "duality_gap": -0.004852110357302486, + "primal_infeasibility": 1.128928529831279e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.527219582999997, + "problem_class": "SDP" + } }, { - "id": 330, - "solver_name": "cvxpy_osqp", - "solver_version": "unknown", + "id": 1940, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5402,30 +6618,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:49", + "solve_time": 0.1397390365600586, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 5.9713171314052325, + "dual_objective_value": 5.976935592929294, + "duality_gap": -0.0056184615240617575, + "primal_infeasibility": 1.08915726239491e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 331, - "solver_name": "cvxpy_scip", - "solver_version": "unknown", + "id": 1594, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5446,30 +6670,57 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:59:49", + "solve_time": 0.9657167916666667, + "status": "UNKNOWN", + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.9657167916666667, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 5.992654461591593, + "dual_objective_value": 5.981017465497352, + "duality_gap": 0.01163699609424107, + "primal_infeasibility": 2.6102968408925996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:59:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 332, - "solver_name": "cvxpy_scs", - "solver_version": "unknown", + "id": 1468, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5490,30 +6741,57 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:19", + "solve_time": 0.5304792916666666, + "status": "NUM_ERROR", + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5304792916666666, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 5.981957450464189, + "dual_objective_value": 5.982166011101507, + "duality_gap": 0.00020856063731766739, + "primal_infeasibility": 7.963841922701557e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 333, - "solver_name": "cvxpy_sdpa", - "solver_version": "unknown", + "id": 399, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "minphase", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5534,30 +6812,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:09", - "solve_time": 0.0, - "status": "ERROR", + "timestamp": "2025-07-13T14:53:39", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1589, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1929, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5578,30 +6864,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:08", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 335, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:53:45", + "solve_time": 13.879996299743652, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830916, + "dual_objective_value": -0.05070309464849496, + "duality_gap": 1.8580276206492385e-13, + "primal_infeasibility": 7.801537245867477e-11, + "dual_infeasibility": 1.057716256457834e-13, + "iterations": 21, + "memo": { + "solver_solve_time": 0.560254416, + "problem_class": "SOCP" + } + }, + { + "id": 1930, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5622,30 +6915,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:17", - "solve_time": 4.278929233551025, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1458, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:00", + "solve_time": 14.256758213043213, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309466231132, + "dual_objective_value": -0.05070309469591302, + "duality_gap": 3.360169781307931e-11, + "primal_infeasibility": 1.5016518474646274e-08, + "dual_infeasibility": 1.6949506707727528e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2239, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5666,30 +6967,89 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:12:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:15", + "solve_time": 14.232115983963013, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464830582, + "dual_objective_value": -0.050703094648322636, + "duality_gap": 1.6812939929167214e-14, + "primal_infeasibility": 2.4262814386207304e-12, + "dual_infeasibility": 5.091116743383869e-14, + "iterations": 20, + "memo": { + "solver_solve_time": 0.405828291, + "problem_class": "SOCP" + } + }, + { + "id": 2241, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "nb", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:57", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 336, - "solver_name": "scipy_linprog", - "solver_version": "unknown", + "id": 2242, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "industry2", - "problem_type": "UNKNOWN", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5710,30 +7070,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752362240.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:08:17", - "solve_time": 0.0, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:57", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 391, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2240, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5754,30 +7122,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:19", - "solve_time": 1.3531219959259033, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 5.966248462567837, - "dual_objective_value": 5.966249544813763, - "duality_gap": -1.0822459266535134e-06, - "primal_infeasibility": 9.701486038460028e-07, - "dual_infeasibility": 0.0, - "iterations": 38 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:56", + "solve_time": 41.28279995918274, + "status": "OPTIMAL", + "primal_objective_value": null, + "dual_objective_value": -0.0507029966950411, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 1.7150846669879644e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 392, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 1931, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5798,30 +7173,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:20", - "solve_time": 0.5625021457672119, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 393, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:16", + "solve_time": 15.138136148452759, + "status": "OPTIMAL", + "primal_objective_value": -0.050702584699806943, + "dual_objective_value": -0.05070061603883091, + "duality_gap": -1.9686609760358187e-06, + "primal_infeasibility": 2.472512073576291e-05, + "dual_infeasibility": 1.3696595465415478e-05, + "iterations": 5425, + "memo": { + "solver_solve_time": 1.636159833, + "problem_class": "SOCP" + } + }, + { + "id": 1928, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5842,30 +7224,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:20", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:53:31", + "solve_time": 28.02113676071167, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002033656695857644, + "dual_objective_value": -1.8772174263594055, + "duality_gap": 1.8751837696635478, + "primal_infeasibility": 0.16647016188566816, + "dual_infeasibility": 3.539291082432821e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 394, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1584, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5886,30 +7276,57 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:20", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:58:40", + "solve_time": 0.96570575, + "status": "OPTIMAL", + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.96570575, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -0.05070308578560933, + "dual_objective_value": -0.050703094832485564, + "duality_gap": 9.046876234264367e-09, + "primal_infeasibility": 1.59782982293915e-10, + "dual_infeasibility": 1.4016403840157828e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 395, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1452, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5930,30 +7347,57 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:20", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 396, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:10:47", + "solve_time": 0.5915824583333333, + "status": "OPTIMAL", + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5915824583333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -0.05070309464513528, + "dual_objective_value": -0.05070309464949991, + "duality_gap": 4.364626715602782e-12, + "primal_infeasibility": 2.6686184534778507e-11, + "dual_infeasibility": 1.8115531992636216e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 2243, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -5974,14 +7418,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:20", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:29:58", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -5989,15 +7436,20 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 397, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1933, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb_L1", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -6018,30 +7470,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:38", - "solve_time": 18.2932550907135, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 5.942591741517748, - "dual_objective_value": 5.94744385187505, - "duality_gap": -0.004852110357302486, - "primal_infeasibility": 1.128928529831279e-06, - "dual_infeasibility": 0.0, - "iterations": 100000 - }, - { - "id": 398, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:08", + "solve_time": 16.364571809768677, + "status": "OPTIMAL", + "primal_objective_value": -13.012270670036738, + "dual_objective_value": -13.012270672238593, + "duality_gap": 2.20185469856915e-09, + "primal_infeasibility": 5.357543858712498e-15, + "dual_infeasibility": 1.1266917166933884e-12, + "iterations": 17, + "memo": { + "solver_solve_time": 0.541514415, + "problem_class": "SOCP" + } + }, + { + "id": 1934, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb_L1", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -6062,30 +7521,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:39", - "solve_time": 0.13327908515930176, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 5.9713171314052325, - "dual_objective_value": 5.976935592929294, - "duality_gap": -0.0056184615240617575, - "primal_infeasibility": 1.08915726239491e-07, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1594, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:26", + "solve_time": 17.51340913772583, + "status": "OPTIMAL", + "primal_objective_value": -13.012270260650567, + "dual_objective_value": -13.012270457304474, + "duality_gap": 1.9665390738055066e-07, + "primal_infeasibility": 7.285115451032123e-13, + "dual_infeasibility": 9.002595409515661e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2244, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb_L1", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -6106,30 +7573,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:59:49", - "solve_time": 0.9657167916666667, - "status": "UNKNOWN", - "primal_objective_value": 5.992654461591593, - "dual_objective_value": 5.981017465497352, - "duality_gap": 0.01163699609424107, - "primal_infeasibility": 2.6102968408925996e-08, - "dual_infeasibility": 0.0, - "iterations": 27 - }, - { - "id": 1468, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:30:15", + "solve_time": 16.22143793106079, + "status": "OPTIMAL", + "primal_objective_value": -13.012270674838557, + "dual_objective_value": -13.012270674894536, + "duality_gap": 5.597833308002009e-11, + "primal_infeasibility": 9.914510380006027e-14, + "dual_infeasibility": 1.864666515247642e-13, + "iterations": 19, + "memo": { + "solver_solve_time": 0.486653083, + "problem_class": "SOCP" + } + }, + { + "id": 2246, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb_L1", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -6150,30 +7624,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:19", - "solve_time": 0.5304792916666666, - "status": "NUM_ERROR", - "primal_objective_value": 5.981957450464189, - "dual_objective_value": 5.982166011101507, - "duality_gap": 0.00020856063731766739, - "primal_infeasibility": 7.963841922701557e-09, - "dual_infeasibility": 0.0, - "iterations": 34 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 399, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2247, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "minphase", - "problem_type": "SDP", + "problem_name": "nb_L1", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -6194,14 +7676,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-13T14:53:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -6209,14 +7694,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1584, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2245, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "nb", + "problem_name": "nb_L1", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6238,29 +7728,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:58:40", - "solve_time": 0.96570575, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:19", + "solve_time": 63.724217653274536, "status": "OPTIMAL", - "primal_objective_value": -0.05070308578560933, - "dual_objective_value": -0.050703094832485564, - "duality_gap": 9.046876234264367e-09, - "primal_infeasibility": 1.59782982293915e-10, - "dual_infeasibility": 1.4016403840157828e-09, - "iterations": 25 + "primal_objective_value": null, + "dual_objective_value": -12.992534672909207, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 2.152895408237386e-05, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 1452, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1935, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "nb", + "problem_name": "nb_L1", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6282,22 +7779,81 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:10:47", - "solve_time": 0.5915824583333333, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:55:49", + "solve_time": 21.878592014312744, "status": "OPTIMAL", - "primal_objective_value": -0.05070309464513528, - "dual_objective_value": -0.05070309464949991, - "duality_gap": 4.364626715602782e-12, - "primal_infeasibility": 2.6686184534778507e-11, - "dual_infeasibility": 1.8115531992636216e-11, - "iterations": 20 + "primal_objective_value": -13.01223863583072, + "dual_objective_value": -13.01220020450462, + "duality_gap": -3.843132610015232e-05, + "primal_infeasibility": 7.134210269620723e-06, + "dual_infeasibility": 1.0320214770561878e-06, + "iterations": 20575, + "memo": { + "solver_solve_time": 6.393365458, + "problem_class": "SOCP" + } + }, + { + "id": 1932, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "nb_L1", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:54:51", + "solve_time": 35.24684810638428, + "status": "OPTIMAL", + "primal_objective_value": -13.012153111134214, + "dual_objective_value": -13.012153111134237, + "duality_gap": 2.3092638912203256e-14, + "primal_infeasibility": 0.09539745847209875, + "dual_infeasibility": 5.092853585115458e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { "id": 1585, @@ -6326,6 +7882,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -6341,7 +7900,31 @@ "duality_gap": 1.1415627199085066e-07, "primal_infeasibility": 5.912533758053113e-11, "dual_infeasibility": 1.1086499606208974e-11, - "iterations": 35 + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.7669237083333333, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -13.012270587360916, + "dual_objective_value": -13.012270701517188, + "duality_gap": 1.1415627199085066e-07, + "primal_infeasibility": 5.912533758053113e-11, + "dual_infeasibility": 1.1086499606208974e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { "id": 1453, @@ -6370,6 +7953,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -6385,14 +7971,38 @@ "duality_gap": 2.9749180896487815e-09, "primal_infeasibility": 1.5604221692182964e-10, "dual_infeasibility": 2.645992296428134e-10, - "iterations": 18 - }, - { - "id": 1586, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8812795416666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -13.012270029385133, + "dual_objective_value": -13.012270026410215, + "duality_gap": 2.9749180896487815e-09, + "primal_infeasibility": 1.5604221692182964e-10, + "dual_infeasibility": 2.645992296428134e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 2248, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "nb_L2", + "problem_name": "nb_L1", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6414,73 +8024,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:58:52", - "solve_time": 0.9697343333333334, - "status": "OPTIMAL", - "primal_objective_value": -1.6289719758296834, - "dual_objective_value": -1.6289719649739611, - "duality_gap": 1.0855722321068129e-08, - "primal_infeasibility": 1.2364826274510168e-10, - "dual_infeasibility": 2.3874355910020744e-10, - "iterations": 18 - }, - { - "id": 1454, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "nb_L2", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:10:58", - "solve_time": 0.602918625, - "status": "OPTIMAL", - "primal_objective_value": -1.6289719586720264, - "dual_objective_value": -1.628971958012104, - "duality_gap": 6.599223389969211e-10, - "primal_infeasibility": 3.7220915711599144e-11, - "dual_infeasibility": 1.8222941201475597e-10, - "iterations": 16 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 501, + "id": 1937, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6502,29 +8076,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:56:46", - "solve_time": 16.746599197387695, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:58:25", + "solve_time": 35.35643529891968, "status": "OPTIMAL", - "primal_objective_value": -0.10256951121188174, - "dual_objective_value": -0.10256951121204069, - "duality_gap": 1.589561815507068e-13, - "primal_infeasibility": 8.039548008470551e-16, - "dual_infeasibility": 2.720397466104802e-14, - "iterations": 14 - }, - { - "id": 502, + "primal_objective_value": -1.6289719788841075, + "dual_objective_value": -1.6289719808523724, + "duality_gap": 1.9682648844110417e-09, + "primal_infeasibility": 6.289904981982145e-12, + "dual_infeasibility": 4.939640235768386e-13, + "iterations": 12, + "memo": { + "solver_solve_time": 1.202414625, + "problem_class": "SOCP" + } + }, + { + "id": 1938, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6546,29 +8127,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:57:03", - "solve_time": 17.025321006774902, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:07", + "solve_time": 41.317997217178345, "status": "OPTIMAL", - "primal_objective_value": -0.10256950565999576, - "dual_objective_value": -0.10256951114752975, - "duality_gap": 5.487533996650917e-09, - "primal_infeasibility": 2.6441459719661748e-11, - "dual_infeasibility": 2.0332286620010367e-12, - "iterations": null - }, - { - "id": 503, + "primal_objective_value": -1.6289717401048371, + "dual_objective_value": -1.628971989187589, + "duality_gap": 2.490827517576122e-07, + "primal_infeasibility": 1.2771965700046602e-09, + "dual_infeasibility": 5.012498098520504e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 2249, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6590,29 +8179,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:57:20", - "solve_time": 16.910020112991333, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:31:55", + "solve_time": 33.70647716522217, "status": "OPTIMAL", - "primal_objective_value": -0.10256951119546298, - "dual_objective_value": -0.10256951120226779, - "duality_gap": 6.804806718108125e-12, - "primal_infeasibility": 3.092966674770312e-14, - "dual_infeasibility": 2.36811594750051e-13, - "iterations": 13 - }, - { - "id": 504, + "primal_objective_value": -1.628971980389783, + "dual_objective_value": -1.628971980444936, + "duality_gap": 5.515299328351375e-11, + "primal_infeasibility": 2.4371980356500406e-14, + "dual_infeasibility": 1.125402358419654e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.43927575, + "problem_class": "SOCP" + } + }, + { + "id": 2251, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6634,14 +8230,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:57:20", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:55", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -6649,14 +8248,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 505, + "id": 2252, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6678,14 +8282,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:57:20", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:56", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -6693,14 +8300,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 506, + "id": 2250, "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6722,29 +8334,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:58:11", - "solve_time": 50.8220100402832, - "status": "OPTIMAL", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:55", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, - "dual_objective_value": -0.1025668967864537, + "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, - "dual_infeasibility": 1.098899869826144e-07, - "iterations": null + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 507, + "id": 1939, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6766,29 +8385,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:58:59", - "solve_time": 17.142093896865845, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:59:48", + "solve_time": 40.14570212364197, "status": "OPTIMAL", - "primal_objective_value": -0.10256936649935693, - "dual_objective_value": -0.10257104661299753, - "duality_gap": 1.6801136406008332e-06, - "primal_infeasibility": 3.1910805185769294e-05, - "dual_infeasibility": 1.891547527204477e-07, - "iterations": 950 - }, - { - "id": 508, + "primal_objective_value": -1.6289712152465583, + "dual_objective_value": -1.6289817153541597, + "duality_gap": 1.0500107601396635e-05, + "primal_infeasibility": 2.121405856474299e-05, + "dual_infeasibility": 2.3664912021212606e-07, + "iterations": 775, + "memo": { + "solver_solve_time": 0.5064915409999999, + "problem_class": "SOCP" + } + }, + { + "id": 1936, "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6810,29 +8436,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:59:46", - "solve_time": 37.45549201965332, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.10256935572921497, - "dual_objective_value": -0.1025694147293237, - "duality_gap": 5.9000108729168055e-08, - "primal_infeasibility": 2.8997429768473637e-07, - "dual_infeasibility": 3.76033631227958e-09, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T14:57:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1587, + "id": 1586, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6854,6 +8487,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -6861,22 +8497,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:58:59", - "solve_time": 0.7735605, + "timestamp": "2025-07-19T13:58:52", + "solve_time": 0.9697343333333334, "status": "OPTIMAL", - "primal_objective_value": -0.10256950754836537, - "dual_objective_value": -0.10256951016133178, - "duality_gap": 2.612966412685047e-09, - "primal_infeasibility": 7.249211116524449e-12, - "dual_infeasibility": 2.492579880231683e-10, - "iterations": 19 + "primal_objective_value": -1.6289719758296834, + "dual_objective_value": -1.6289719649739611, + "duality_gap": 1.0855722321068129e-08, + "primal_infeasibility": 1.2364826274510168e-10, + "dual_infeasibility": 2.3874355910020744e-10, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9697343333333334, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -1.6289719758296834, + "dual_objective_value": -1.6289719649739611, + "duality_gap": 1.0855722321068129e-08, + "primal_infeasibility": 1.2364826274510168e-10, + "dual_infeasibility": 2.3874355910020744e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1455, + "id": 1454, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6898,6 +8558,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -6905,22 +8568,46 @@ "timestamp": 1752416768.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T11:11:04", - "solve_time": 0.6093694583333333, + "timestamp": "2025-07-19T11:10:58", + "solve_time": 0.602918625, "status": "OPTIMAL", - "primal_objective_value": -0.1025694979041563, - "dual_objective_value": -0.10256951119637202, - "duality_gap": 1.3292215716997902e-08, - "primal_infeasibility": 2.856571488970491e-11, - "dual_infeasibility": 7.56900876485523e-13, - "iterations": 16 - }, - { - "id": 509, + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.602918625, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1.6289719586720264, + "dual_objective_value": -1.628971958012104, + "duality_gap": 6.599223389969211e-10, + "primal_infeasibility": 3.7220915711599144e-11, + "dual_infeasibility": 1.8222941201475597e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:10:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 2253, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "nb_L2_bessel", + "problem_name": "nb_L2", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6942,14 +8629,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:59:58", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:33:56", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -6957,14 +8647,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 476, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1985, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "nql180", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -6986,29 +8681,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:27:33", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:46:58", + "solve_time": 16.312734842300415, + "status": "OPTIMAL", + "primal_objective_value": -0.10256951121188174, + "dual_objective_value": -0.10256951121204069, + "duality_gap": 1.589561815507068e-13, + "primal_infeasibility": 8.039548008470551e-16, + "dual_infeasibility": 2.720397466104802e-14, + "iterations": 14, + "memo": { + "solver_solve_time": 0.434549417, + "problem_class": "SOCP" + } }, { - "id": 477, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1986, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", - "problem_name": "nql180", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7030,29 +8732,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:27:34", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:47:15", + "solve_time": 16.37923502922058, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950565999576, + "dual_objective_value": -0.10256951114752975, + "duality_gap": 5.487533996650917e-09, + "primal_infeasibility": 2.6441459719661748e-11, + "dual_infeasibility": 2.0332286620010367e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 1664, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2254, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "nql180", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7074,29 +8784,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:16:46", - "solve_time": 36.740298708333334, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:34:14", + "solve_time": 16.770871877670288, "status": "OPTIMAL", - "primal_objective_value": -0.9277286131116571, - "dual_objective_value": -0.927728620913157, - "duality_gap": 7.801499890547348e-09, - "primal_infeasibility": 5.4916733095581286e-11, - "dual_infeasibility": 1.161702398637029e-12, - "iterations": 58 + "primal_objective_value": -0.10256951119546298, + "dual_objective_value": -0.10256951120226779, + "duality_gap": 6.804806718108125e-12, + "primal_infeasibility": 3.092966674770312e-14, + "dual_infeasibility": 2.36811594750051e-13, + "iterations": 13, + "memo": { + "solver_solve_time": 0.335756291, + "problem_class": "SOCP" + } }, { - "id": 1532, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2256, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "nql180", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7118,29 +8835,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:56:38", - "solve_time": 12.182909208333333, - "status": "OPTIMAL", - "primal_objective_value": -0.9277236542726338, - "dual_objective_value": -0.9277138968827718, - "duality_gap": 9.757389861975163e-06, - "primal_infeasibility": 1.0298591375138612e-09, - "dual_infeasibility": 1.071058841986682e-07, - "iterations": 16 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 478, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2257, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "nql180", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7162,14 +8887,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:27:34", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:06", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -7177,14 +8905,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 496, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2255, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "nql180old", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7206,29 +8939,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:53:35", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:05", + "solve_time": 50.646941900253296, + "status": "OPTIMAL", "primal_objective_value": null, - "dual_objective_value": null, + "dual_objective_value": -0.1025668967864537, "duality_gap": null, "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "dual_infeasibility": 1.098899869826144e-07, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 497, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1987, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "nql180old", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7250,29 +8990,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:53:35", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:47:33", + "solve_time": 17.0360369682312, + "status": "OPTIMAL", + "primal_objective_value": -0.10256936649935693, + "dual_objective_value": -0.10257104661299753, + "duality_gap": 1.6801136406008332e-06, + "primal_infeasibility": 3.1910805185769294e-05, + "dual_infeasibility": 1.891547527204477e-07, + "iterations": 950, + "memo": { + "solver_solve_time": 0.306163208, + "problem_class": "SOCP" + } }, { - "id": 1666, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1984, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "DIMACS", - "problem_name": "nql180old", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7294,29 +9041,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:18:27", - "solve_time": 84.69757616666666, - "status": "UNKNOWN", - "primal_objective_value": 0.9277651903557143, - "dual_objective_value": 0.9277285106609229, - "duality_gap": 3.6679694791375006e-05, - "primal_infeasibility": 3.9783656071692306e-07, - "dual_infeasibility": 1.2114175398334022e-10, - "iterations": 48 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:46:41", + "solve_time": 38.031092166900635, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.10256935572921497, + "dual_objective_value": -0.1025694147293237, + "duality_gap": 5.9000108729168055e-08, + "primal_infeasibility": 2.8997429768473637e-07, + "dual_infeasibility": 3.76033631227958e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 1534, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1587, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql180old", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7338,6 +9093,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7345,22 +9103,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:57:22", - "solve_time": 29.980436875, - "status": "NUM_ERROR", - "primal_objective_value": 17.05876170017952, - "dual_objective_value": 4.042820872058162, - "duality_gap": 13.015940828121359, - "primal_infeasibility": 0.0015781452807864976, - "dual_infeasibility": 1.1862633609957061e-06, - "iterations": 15 + "timestamp": "2025-07-19T13:58:59", + "solve_time": 0.7735605, + "status": "OPTIMAL", + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7735605, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -0.10256950754836537, + "dual_objective_value": -0.10256951016133178, + "duality_gap": 2.612966412685047e-09, + "primal_infeasibility": 7.249211116524449e-12, + "dual_infeasibility": 2.492579880231683e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:58:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 498, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1455, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql180old", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7382,29 +9164,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752416768.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:53:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 459, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T11:11:04", + "solve_time": 0.6093694583333333, + "status": "OPTIMAL", + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6093694583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.1025694979041563, + "dual_objective_value": -0.10256951119637202, + "duality_gap": 1.3292215716997902e-08, + "primal_infeasibility": 2.856571488970491e-11, + "dual_infeasibility": 7.56900876485523e-13, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 20:11:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 2258, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nb_L2_bessel", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7426,29 +9235,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:05:58", - "solve_time": 21.510102033615112, - "status": "OPTIMAL", - "primal_objective_value": -0.9460280973730932, - "dual_objective_value": -0.9460280998223545, - "duality_gap": 2.4492612382687184e-09, - "primal_infeasibility": 1.956251612313512e-08, - "dual_infeasibility": 1.3360942438602618e-08, - "iterations": 15 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:35:06", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 460, - "solver_name": "cvxpy_cvxopt", + "id": 1957, + "solver_name": "cvxpy_clarabel", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7470,29 +9287,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:06:20", - "solve_time": 22.299565076828003, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:11:56", + "solve_time": 39.67093467712402, + "status": "SIGKILL", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:11:17 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:17 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:17 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:17 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - python_solver_runner - INFO - Solving nql180 with cvxpy_clarabel\n2025-08-04 00:11:17 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:11:17 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:17 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:17 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } }, { - "id": 461, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1958, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7514,29 +9339,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:06:42", - "solve_time": 21.298002243041992, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.9460284749224446, - "dual_objective_value": -0.9460284748518045, - "duality_gap": -7.064004936552237e-11, - "primal_infeasibility": 3.478855069906872e-11, - "dual_infeasibility": 8.506553783847303e-09, - "iterations": 63 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:12:38", + "solve_time": 41.05316877365112, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:11:57 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:11:57 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:11:57 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:11:57 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - python_solver_runner - INFO - Solving nql180 with cvxpy_cvxopt\n2025-08-04 00:11:57 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:11:57 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:11:58 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:11:58 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } }, { - "id": 467, + "id": 2425, "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7558,29 +9391,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:10:22", - "solve_time": 21.114145040512085, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.9460284749224446, - "dual_objective_value": -0.9460284748518045, - "duality_gap": -7.064004936552237e-11, - "primal_infeasibility": 3.478855069906872e-11, - "dual_infeasibility": 8.506553783847303e-09, - "iterations": 63 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:15:08", + "solve_time": 41.56452298164368, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 22:14:26 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:14:26 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:14:26 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:14:26 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - python_solver_runner - INFO - Solving nql180 with cvxpy_ecos\n2025-08-05 22:14:26 - solver_cvxpy_ecos - INFO - Initialized CVXPY solver 'cvxpy_ecos' with backend 'ECOS'\n2025-08-05 22:14:26 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:14:27 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:14:27 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } }, { - "id": 462, + "id": 476, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7602,6 +9443,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7609,7 +9453,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:06:42", + "timestamp": "2025-07-14T13:27:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -7617,14 +9461,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 463, + "id": 477, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7646,6 +9495,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7653,7 +9505,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:06:42", + "timestamp": "2025-07-14T13:27:34", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -7661,14 +9513,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 466, + "id": 2426, "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7690,73 +9547,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:09:57", - "solve_time": 57.389968156814575, - "status": "OPTIMAL", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:15:49", + "solve_time": 40.53333306312561, + "status": "SIGKILL", "primal_objective_value": null, - "dual_objective_value": -0.9316011995967092, + "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, - "dual_infeasibility": 0.0004163234009667355, - "iterations": null + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 22:15:09 - problem_interface - INFO - Loaded 123 problems from registry\n2025-08-05 22:15:09 - problem_interface - INFO - Initialized problem interface with 123 problems\n2025-08-05 22:15:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 22:15:09 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - python_solver_runner - INFO - Solving nql180 with cvxpy_scip\n2025-08-05 22:15:09 - solver_cvxpy_scip - INFO - Initialized CVXPY solver 'cvxpy_scip' with backend 'SCIP'\n2025-08-05 22:15:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-05 22:15:09 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-05 22:15:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } }, { - "id": 464, + "id": 1959, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", - "problem_library": "DIMACS", - "problem_name": "nql30", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:08:05", - "solve_time": 20.956520080566406, - "status": "OPTIMAL", - "primal_objective_value": -0.9460027956114715, - "dual_objective_value": -0.9459981676622777, - "duality_gap": -4.627949193758418e-06, - "primal_infeasibility": 2.900046732074137e-06, - "dual_infeasibility": 1.0668505768545404e-05, - "iterations": 475 - }, - { - "id": 465, - "solver_name": "cvxpy_sdpa", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7778,29 +9599,89 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:08:54", - "solve_time": 42.34715795516968, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:13:19", + "solve_time": 40.40824317932129, + "status": "SIGKILL", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:12:39 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:12:39 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:12:39 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:12:39 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - python_solver_runner - INFO - Solving nql180 with cvxpy_scs\n2025-08-04 00:12:39 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:12:39 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:12:39 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:12:39 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } }, { - "id": 1649, + "id": 1956, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "nql180", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:11:16", + "solve_time": 55.10064911842346, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:10:21 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:10:21 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:10:21 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:10:21 - python_solver_runner - INFO - Subprocess solving nql180 with cvxpy_sdpa\n2025-08-04 00:10:21 - python_solver_runner - INFO - Solving nql180 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:10:21 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:10:21 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/NQL/nql180.mat.gz\n2025-08-04 00:10:21 - mat_loader - INFO - Converted nql180: SOCP problem (226802 vars, 130080 constraints)\n2025-08-04 00:10:21 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='nql180', class='SOCP', 226802 vars, 130080 constraints)", + "problem_class": "SOCP" + } + }, + { + "id": 1664, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7822,6 +9703,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7829,22 +9713,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:39", - "solve_time": 0.9404508333333333, + "timestamp": "2025-07-19T14:16:46", + "solve_time": 36.740298708333334, "status": "OPTIMAL", - "primal_objective_value": -0.9460284865934897, - "dual_objective_value": -0.9460284991390998, - "duality_gap": 1.2545610106329264e-08, - "primal_infeasibility": 6.250873663071201e-11, - "dual_infeasibility": 2.95124542471296e-11, - "iterations": 37 + "primal_objective_value": -0.9277286131116571, + "dual_objective_value": -0.927728620913157, + "duality_gap": 7.801499890547348e-09, + "primal_infeasibility": 5.4916733095581286e-11, + "dual_infeasibility": 1.161702398637029e-12, + "iterations": 58, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 36.740298708333334, + "setup_time": [], + "iterations": 58, + "primal_objective_value": -0.9277286131116571, + "dual_objective_value": -0.927728620913157, + "duality_gap": 7.801499890547348e-09, + "primal_infeasibility": 5.4916733095581286e-11, + "dual_infeasibility": 1.161702398637029e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:16:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1519, + "id": 1532, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7866,6 +9774,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7873,22 +9784,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:15", - "solve_time": 0.4045484166666667, + "timestamp": "2025-07-19T12:56:38", + "solve_time": 12.182909208333333, "status": "OPTIMAL", - "primal_objective_value": -0.9460278817820568, - "dual_objective_value": -0.9460275595123333, - "duality_gap": 3.2226972346283134e-07, - "primal_infeasibility": 8.718969712675225e-10, - "dual_infeasibility": 1.4556998452282358e-08, - "iterations": 15 + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 12.182909208333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -0.9277236542726338, + "dual_objective_value": -0.9277138968827718, + "duality_gap": 9.757389861975163e-06, + "primal_infeasibility": 1.0298591375138612e-09, + "dual_infeasibility": 1.071058841986682e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 468, + "id": 478, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "nql30", + "problem_name": "nql180", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7910,6 +9845,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -7917,7 +9855,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:11:21", + "timestamp": "2025-07-14T13:27:34", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -7925,14 +9863,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 481, + "id": 1949, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7954,29 +9897,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:29:25", - "solve_time": 27.350733041763306, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 0.9460382355050778, - "dual_objective_value": 0.9460271491814743, - "duality_gap": 1.1086323603470838e-05, - "primal_infeasibility": 2.314817042231236e-11, - "dual_infeasibility": 1.0819557269271837e-12, - "iterations": 14 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:31", + "solve_time": 26.76625108718872, + "status": "OPTIMAL", + "primal_objective_value": -0.9460280973730932, + "dual_objective_value": -0.9460280998223545, + "duality_gap": 2.4492612382687184e-09, + "primal_infeasibility": 1.956251612313512e-08, + "dual_infeasibility": 1.3360942438602618e-08, + "iterations": 15, + "memo": { + "solver_solve_time": 0.086608874, + "problem_class": "SOCP" + } }, { - "id": 483, + "id": 1950, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -7998,29 +9948,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:30:55", - "solve_time": 50.36664581298828, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:56", + "solve_time": 24.00167489051819, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 484, + "id": 467, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8042,6 +9999,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8049,22 +10009,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:31:24", - "solve_time": 28.646708965301514, - "status": "OPTIMAL", - "primal_objective_value": 0.946028500446202, - "dual_objective_value": 0.9460285002270158, - "duality_gap": 2.1918622472583138e-10, - "primal_infeasibility": 3.4735631884221655e-09, - "dual_infeasibility": 7.209530461618255e-12, - "iterations": 24 + "timestamp": "2025-07-14T13:10:22", + "solve_time": 21.114145040512085, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9460284749224446, + "dual_objective_value": -0.9460284748518045, + "duality_gap": -7.064004936552237e-11, + "primal_infeasibility": 3.478855069906872e-11, + "dual_infeasibility": 8.506553783847303e-09, + "iterations": 63, + "memo": { + "solver_solve_time": 0.339042, + "problem_class": "SOCP" + } }, { - "id": 485, + "id": 462, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8086,6 +10050,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8093,7 +10060,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:32:12", + "timestamp": "2025-07-14T13:06:42", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -8101,14 +10068,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 486, + "id": 463, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8130,6 +10102,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8137,7 +10112,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:32:12", + "timestamp": "2025-07-14T13:06:42", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -8145,14 +10120,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 482, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 466, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8174,6 +10154,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8181,22 +10164,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:29:59", - "solve_time": 27.0903959274292, + "timestamp": "2025-07-14T13:09:57", + "solve_time": 57.389968156814575, "status": "OPTIMAL", - "primal_objective_value": 0.9460312521164744, - "dual_objective_value": 0.9460436356396474, - "duality_gap": -1.2383523173009614e-05, - "primal_infeasibility": 2.786512581647304e-05, - "dual_infeasibility": 6.99520485413282e-08, - "iterations": 825 + "primal_objective_value": null, + "dual_objective_value": -0.9316011995967092, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": 0.0004163234009667355, + "iterations": null, + "memo": { + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 488, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1951, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8218,29 +10205,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:35:18", - "solve_time": 54.417176723480225, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 0.9907335428521524, - "dual_objective_value": 0.9380401839380942, - "duality_gap": 0.05269335891405824, - "primal_infeasibility": 0.0012100736811626372, - "dual_infeasibility": 6.018424282461236e-13, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:02:20", + "solve_time": 23.52648687362671, + "status": "OPTIMAL", + "primal_objective_value": -0.9460027956114715, + "dual_objective_value": -0.9459981676622777, + "duality_gap": -4.627949193758418e-06, + "primal_infeasibility": 2.900046732074137e-06, + "dual_infeasibility": 1.0668505768545404e-05, + "iterations": 475, + "memo": { + "solver_solve_time": 0.17467137500000002, + "problem_class": "SOCP" + } }, { - "id": 1650, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1948, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8262,29 +10256,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:44", - "solve_time": 1.1294510416666668, - "status": "OPTIMAL", - "primal_objective_value": 0.946028902216332, - "dual_objective_value": 0.9460285387023679, - "duality_gap": 3.635139640412177e-07, - "primal_infeasibility": 5.926389416882168e-09, - "dual_infeasibility": 1.586082168340738e-12, - "iterations": 32 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:01:04", + "solve_time": 47.52529978752136, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 1520, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1649, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8306,6 +10307,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8313,22 +10317,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:21", - "solve_time": 0.74426875, - "status": "NUM_ERROR", - "primal_objective_value": 0.9460480468399066, - "dual_objective_value": 0.9460480594878439, - "duality_gap": 1.2647937253085217e-08, - "primal_infeasibility": 9.017976824979982e-10, - "dual_infeasibility": 8.604152486509772e-10, - "iterations": 18 + "timestamp": "2025-07-19T14:06:39", + "solve_time": 0.9404508333333333, + "status": "OPTIMAL", + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9404508333333333, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -0.9460284865934897, + "dual_objective_value": -0.9460284991390998, + "duality_gap": 1.2545610106329264e-08, + "primal_infeasibility": 6.250873663071201e-11, + "dual_infeasibility": 2.95124542471296e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 487, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1519, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "nql30old", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8350,73 +10378,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:32:12", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 471, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "nql60", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:16:42", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:15", + "solve_time": 0.4045484166666667, + "status": "OPTIMAL", + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.4045484166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -0.9460278817820568, + "dual_objective_value": -0.9460275595123333, + "duality_gap": 3.2226972346283134e-07, + "primal_infeasibility": 8.718969712675225e-10, + "dual_infeasibility": 1.4556998452282358e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 472, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 468, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "nql60", + "problem_name": "nql30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8438,6 +10449,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8445,7 +10459,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:16:42", + "timestamp": "2025-07-14T13:11:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -8453,12 +10467,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1663, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1953, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "nql60", "problem_type": "SOCP", @@ -8482,27 +10501,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:16:03", - "solve_time": 4.5348270416666665, - "status": "OPTIMAL", - "primal_objective_value": -0.9350529216589623, - "dual_objective_value": -0.9350529430516714, - "duality_gap": 2.1392709159684387e-08, - "primal_infeasibility": 4.568144423812863e-11, - "dual_infeasibility": 3.3090660555122834e-11, - "iterations": 42 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:06:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1531, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1954, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "nql60", "problem_type": "SOCP", @@ -8526,27 +10552,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:56:19", - "solve_time": 0.9663814166666667, - "status": "OPTIMAL", - "primal_objective_value": -0.9350511855008967, - "dual_objective_value": -0.9350485012990968, - "duality_gap": 2.6842017999406664e-06, - "primal_infeasibility": 5.844691781034275e-10, - "dual_infeasibility": 4.421947097574071e-08, - "iterations": 14 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:08:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 473, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2435, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "nql60", "problem_type": "SOCP", @@ -8570,29 +10603,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:16:42", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:53:06", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 491, + "id": 471, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "nql60old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8614,6 +10654,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8621,7 +10664,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:46:47", + "timestamp": "2025-07-14T13:16:42", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -8629,14 +10672,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 492, + "id": 472, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "nql60old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8658,6 +10706,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8665,7 +10716,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:46:47", + "timestamp": "2025-07-14T13:16:42", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -8673,14 +10724,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1665, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2422, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql60old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8702,29 +10758,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:16:57", - "solve_time": 5.327186625, - "status": "UNKNOWN", - "primal_objective_value": 0.9350535110272538, - "dual_objective_value": 0.9350529967198318, - "duality_gap": 5.143074219837729e-07, - "primal_infeasibility": 3.4371420929272295e-08, - "dual_infeasibility": 2.2199866386490102e-10, - "iterations": 43 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:59:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1533, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1955, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql60old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8746,29 +10809,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:56:46", - "solve_time": 3.4914655416666665, - "status": "NUM_ERROR", - "primal_objective_value": 0.9351615094429845, - "dual_objective_value": 0.9351615256331347, - "duality_gap": 1.619015022047421e-08, - "primal_infeasibility": 2.8510043458144155e-10, - "dual_infeasibility": 5.812870407153625e-10, - "iterations": 22 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:10:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 493, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1952, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "nql60old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8790,29 +10860,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T13:46:47", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:04:20", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1537, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1663, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp180old", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8834,6 +10911,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8841,22 +10921,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:00:13", - "solve_time": 84.51620933333334, - "status": "NUM_ERROR", - "primal_objective_value": 316.29259734036873, - "dual_objective_value": 3.956046550735532, - "duality_gap": 312.3365507896332, - "primal_infeasibility": 0.007689956779755849, - "dual_infeasibility": 3.5432720318939364e-06, - "iterations": 5 + "timestamp": "2025-07-19T14:16:03", + "solve_time": 4.5348270416666665, + "status": "OPTIMAL", + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 4.5348270416666665, + "setup_time": [], + "iterations": 42, + "primal_objective_value": -0.9350529216589623, + "dual_objective_value": -0.9350529430516714, + "duality_gap": 2.1392709159684387e-08, + "primal_infeasibility": 4.568144423812863e-11, + "dual_infeasibility": 3.3090660555122834e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:15:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 512, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1531, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp30", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8878,29 +10982,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:04:07", - "solve_time": 52.38844394683838, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:56:19", + "solve_time": 0.9663814166666667, "status": "OPTIMAL", - "primal_objective_value": -6.496675072773684, - "dual_objective_value": -6.496675072817704, - "duality_gap": 4.4019898837177607e-11, - "primal_infeasibility": 8.612756727893201e-10, - "dual_infeasibility": 3.714323041760762e-09, - "iterations": 19 + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.9663814166666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -0.9350511855008967, + "dual_objective_value": -0.9350485012990968, + "duality_gap": 2.6842017999406664e-06, + "primal_infeasibility": 5.844691781034275e-10, + "dual_infeasibility": 4.421947097574071e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 513, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "id": 473, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "qssp30", + "problem_name": "nql60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -8922,6 +11053,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -8929,20 +11063,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:05:37", - "solve_time": 77.06227493286133, - "status": "OPTIMAL", - "primal_objective_value": -6.496674199067025, - "dual_objective_value": -6.496674193174276, - "duality_gap": -5.892748511371337e-09, - "primal_infeasibility": 2.237809310520621e-09, - "dual_infeasibility": 8.622386895665068e-09, - "iterations": null + "timestamp": "2025-07-14T13:16:42", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 514, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1989, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -8966,27 +11105,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:07:31", - "solve_time": 52.14936709403992, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:50:11", + "solve_time": 52.129913091659546, "status": "OPTIMAL", - "primal_objective_value": -6.496675716987453, - "dual_objective_value": -6.496675716971549, - "duality_gap": -1.5903722783150442e-11, - "primal_infeasibility": 7.350808444749379e-13, - "dual_infeasibility": 7.798431676338478e-10, - "iterations": 17 + "primal_objective_value": -6.496675072773684, + "dual_objective_value": -6.496675072817704, + "duality_gap": 4.4019898837177607e-11, + "primal_infeasibility": 8.612756727893201e-10, + "dual_infeasibility": 3.714323041760762e-09, + "iterations": 19, + "memo": { + "solver_solve_time": 0.124407211, + "problem_class": "SOCP" + } }, { - "id": 515, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1990, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9010,71 +11156,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:07:41", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 516, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "qssp30", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:07:41", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:51:34", + "solve_time": 82.56687808036804, + "status": "OPTIMAL", + "primal_objective_value": -6.496674199067025, + "dual_objective_value": -6.496674193174276, + "duality_gap": -5.892748511371337e-09, + "primal_infeasibility": 2.237809310520621e-09, + "dual_infeasibility": 8.622386895665068e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } }, { - "id": 517, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 514, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9098,6 +11208,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9105,20 +11218,24 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:12:59", - "solve_time": 57.17706084251404, + "timestamp": "2025-07-14T14:07:31", + "solve_time": 52.14936709403992, "status": "OPTIMAL", - "primal_objective_value": -6.496662894119256, - "dual_objective_value": -6.496659451196209, - "duality_gap": -3.4429230471033634e-06, - "primal_infeasibility": 8.634202940522347e-08, - "dual_infeasibility": 5.405298460172423e-06, - "iterations": 14375 + "primal_objective_value": -6.496675716987453, + "dual_objective_value": -6.496675716971549, + "duality_gap": -1.5903722783150442e-11, + "primal_infeasibility": 7.350808444749379e-13, + "dual_infeasibility": 7.798431676338478e-10, + "iterations": 17, + "memo": { + "solver_solve_time": 0.17480625, + "problem_class": "SOCP" + } }, { - "id": 518, - "solver_name": "cvxpy_sdpa", - "solver_version": "unknown", + "id": 515, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9142,6 +11259,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9149,20 +11269,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:14:57", - "solve_time": 104.95400619506836, - "status": "ERROR", + "timestamp": "2025-07-14T14:07:41", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1651, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 516, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9186,27 +11311,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:50", - "solve_time": 0.7027917083333334, - "status": "UNKNOWN", - "primal_objective_value": -6.4966770139444625, - "dual_objective_value": -6.496675726860695, - "duality_gap": 1.2870837675649227e-06, - "primal_infeasibility": 7.454748459602961e-09, - "dual_infeasibility": 2.2293203875515626e-08, - "iterations": 21 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:07:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1521, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2423, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9230,27 +11363,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:27", - "solve_time": 0.49142, - "status": "OPTIMAL", - "primal_objective_value": -6.49666909788267, - "dual_objective_value": -6.496669087168537, - "duality_gap": 1.0714132692157818e-08, - "primal_infeasibility": 7.182734585341389e-10, - "dual_infeasibility": 3.7263864829751396e-08, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:01:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 519, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1991, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", "problem_name": "qssp30", "problem_type": "SOCP", @@ -9274,29 +11414,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:14:57", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:52:33", + "solve_time": 58.04234218597412, + "status": "OPTIMAL", + "primal_objective_value": -6.496662894119256, + "dual_objective_value": -6.496659451196209, + "duality_gap": -3.4429230471033634e-06, + "primal_infeasibility": 8.634202940522347e-08, + "dual_infeasibility": 5.405298460172423e-06, + "iterations": 14375, + "memo": { + "solver_solve_time": 5.14132375, + "problem_class": "SOCP" + } }, { - "id": 527, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1988, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9318,29 +11465,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:48:52", - "solve_time": 116.92459893226624, - "status": "OPTIMAL", - "primal_objective_value": 6.496675741887391, - "dual_objective_value": 6.496675728515107, - "duality_gap": 1.337228461295581e-08, - "primal_infeasibility": 3.4585014036593365e-13, - "dual_infeasibility": 8.7286515921533e-14, - "iterations": 19 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:49:18", + "solve_time": 105.0474328994751, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'SDPA' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 528, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1651, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9362,29 +11516,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:51:17", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:50", + "solve_time": 0.7027917083333334, + "status": "UNKNOWN", + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.7027917083333334, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -6.4966770139444625, + "dual_objective_value": -6.496675726860695, + "duality_gap": 1.2870837675649227e-06, + "primal_infeasibility": 7.454748459602961e-09, + "dual_infeasibility": 2.2293203875515626e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 529, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1521, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9406,29 +11587,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:51:17", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:27", + "solve_time": 0.49142, + "status": "OPTIMAL", + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.49142, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -6.49666909788267, + "dual_objective_value": -6.496669087168537, + "duality_gap": 1.0714132692157818e-08, + "primal_infeasibility": 7.182734585341389e-10, + "dual_infeasibility": 3.7263864829751396e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1652, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 519, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp30", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9450,29 +11658,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:07:00", - "solve_time": 3.2442655, - "status": "OPTIMAL", - "primal_objective_value": 6.496675733335, - "dual_objective_value": 6.496675735596058, - "duality_gap": 2.2610580074911013e-09, - "primal_infeasibility": 2.3627269301134866e-09, - "dual_infeasibility": 1.504430985491302e-13, - "iterations": 24 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:14:57", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1522, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1961, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9494,29 +11710,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:34", - "solve_time": 1.9425030833333334, - "status": "NUM_ERROR", - "primal_objective_value": 6.5243642635798516, - "dual_objective_value": 6.46817461734069, - "duality_gap": 0.05618964623916156, - "primal_infeasibility": 0.003983434699960677, - "dual_infeasibility": 1.3527917598178691e-09, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:17:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 530, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1962, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "qssp30old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9538,27 +11761,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:51:17", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:19:19", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 522, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2436, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "qssp60", "problem_type": "SOCP", @@ -9582,27 +11812,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:24:38", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:06", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 523, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 522, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "qssp60", "problem_type": "SOCP", @@ -9626,6 +11863,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9641,12 +11881,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1667, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 523, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", "problem_name": "qssp60", "problem_type": "SOCP", @@ -9670,27 +11915,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:18:35", - "solve_time": 2.3680329166666665, - "status": "UNKNOWN", - "primal_objective_value": -6.562707043774328, - "dual_objective_value": -6.562705418128809, - "duality_gap": 1.625645518643637e-06, - "primal_infeasibility": 1.0393547981901797e-09, - "dual_infeasibility": 6.418055339037683e-08, - "iterations": 24 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T14:24:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1535, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2424, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "qssp60", "problem_type": "SOCP", @@ -9714,73 +11967,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:57:30", - "solve_time": 1.614889625, - "status": "OPTIMAL", - "primal_objective_value": -6.562697214789513, - "dual_objective_value": -6.562697203156434, - "duality_gap": 1.1633079388673195e-08, - "primal_infeasibility": 2.9305640450404797e-10, - "dual_infeasibility": 2.5921160736720044e-08, - "iterations": 27 - }, - { - "id": 524, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "qssp60", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T14:24:38", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:03:31", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 533, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1963, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "qssp60old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9802,29 +12018,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:21:35", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:21:19", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 534, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1960, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "qssp60old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9846,29 +12069,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:21:35", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:15:19", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1668, + "id": 1667, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp60old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9890,6 +12120,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9897,22 +12130,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:20:24", - "solve_time": 32.271511125, - "status": "OPTIMAL", - "primal_objective_value": 6.562706671676455, - "dual_objective_value": 6.562706473310207, - "duality_gap": 1.983662478721726e-07, - "primal_infeasibility": 4.309175953686868e-09, - "dual_infeasibility": 1.7146378799536045e-13, - "iterations": 27 + "timestamp": "2025-07-19T14:18:35", + "solve_time": 2.3680329166666665, + "status": "UNKNOWN", + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.3680329166666665, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -6.562707043774328, + "dual_objective_value": -6.562705418128809, + "duality_gap": 1.625645518643637e-06, + "primal_infeasibility": 1.0393547981901797e-09, + "dual_infeasibility": 6.418055339037683e-08, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:18:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1536, + "id": 1535, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "qssp60old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9934,6 +12191,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9941,22 +12201,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:58:42", - "solve_time": 7.342658208333333, - "status": "NUM_ERROR", - "primal_objective_value": 8.254139436812483, - "dual_objective_value": 5.743425993571323, - "duality_gap": 2.51071344324116, - "primal_infeasibility": 0.0063922785461142115, - "dual_infeasibility": 2.0163573594309586e-05, - "iterations": 13 + "timestamp": "2025-07-19T12:57:30", + "solve_time": 1.614889625, + "status": "OPTIMAL", + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.614889625, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -6.562697214789513, + "dual_objective_value": -6.562697203156434, + "duality_gap": 1.1633079388673195e-08, + "primal_infeasibility": 2.9305640450404797e-10, + "dual_infeasibility": 2.5921160736720044e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:57:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 535, + "id": 524, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "qssp60old", + "problem_name": "qssp60", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -9978,6 +12262,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -9985,7 +12272,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:21:35", + "timestamp": "2025-07-14T14:24:38", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -9993,10 +12280,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 558, + "id": 2001, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", @@ -10022,22 +12314,80 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T22:24:34", - "solve_time": 1.0301058292388916, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:00:16", + "solve_time": 0.9231948852539062, "status": "OPTIMAL (INACCURATE)", "primal_objective_value": 717367.9694302354, "dual_objective_value": 717367.9693405145, "duality_gap": 8.972093928605318e-05, "primal_infeasibility": 0.4553377125041338, "dual_infeasibility": 1.7972121515951058e-07, - "iterations": 29 + "iterations": 29, + "memo": { + "solver_solve_time": 0.389974875, + "problem_class": "SOCP" + } + }, + { + "id": 2002, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:02:16", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { "id": 559, @@ -10066,6 +12416,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10081,7 +12434,11 @@ "duality_gap": -0.0004581352695822716, "primal_infeasibility": 0.010368232231233494, "dual_infeasibility": 0.0016076899929897248, - "iterations": 70 + "iterations": 70, + "memo": { + "solver_solve_time": 0.888042958, + "problem_class": "SOCP" + } }, { "id": 560, @@ -10110,6 +12467,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10125,7 +12485,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { "id": 561, @@ -10154,6 +12519,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10169,10 +12537,66 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2429, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:22:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 563, + "id": 2003, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", @@ -10198,22 +12622,80 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T22:28:41", - "solve_time": 69.69011402130127, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:03:26", + "solve_time": 69.41161584854126, "status": "OPTIMAL (INACCURATE)", "primal_objective_value": 1426694.15480458, "dual_objective_value": 1426060.9124832153, "duality_gap": 633.2423213645816, "primal_infeasibility": 4.495169240132521, "dual_infeasibility": 668608.3395679782, - "iterations": 100000 + "iterations": 100000, + "memo": { + "solver_solve_time": 68.767482125, + "problem_class": "SOCP" + } + }, + { + "id": 2000, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_100_100_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:00:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { "id": 1669, @@ -10242,6 +12724,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10257,7 +12742,31 @@ "duality_gap": 320.84656565915793, "primal_infeasibility": 1.4635089779954944e-05, "dual_infeasibility": 0.0, - "iterations": 30 + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.528989458333333, + "setup_time": [], + "iterations": 30, + "primal_objective_value": 717664.7819529852, + "dual_objective_value": 717343.935387326, + "duality_gap": 320.84656565915793, + "primal_infeasibility": 1.4635089779954944e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { "id": 1538, @@ -10286,6 +12795,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10301,7 +12813,31 @@ "duality_gap": 0.0001499423524364829, "primal_infeasibility": 3.2577166049237135e-05, "dual_infeasibility": 3.822526277112251e-09, - "iterations": 101 + "iterations": 101, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.3865474583333333, + "setup_time": [], + "iterations": 101, + "primal_objective_value": 717367.7873780461, + "dual_objective_value": 717367.7875279884, + "duality_gap": 0.0001499423524364829, + "primal_infeasibility": 3.2577166049237135e-05, + "dual_infeasibility": 3.822526277112251e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { "id": 562, @@ -10330,6 +12866,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10345,12 +12884,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 594, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1965, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", @@ -10374,27 +12918,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:33:21", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 595, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:23:21", + "solve_time": 0.8148598670959473, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 27.33078559493936, + "dual_objective_value": 27.33078559493853, + "duality_gap": 8.313350008393172e-13, + "primal_infeasibility": 1.5053374900925652e-05, + "dual_infeasibility": 8.190909865691049e-11, + "iterations": 27, + "memo": { + "solver_solve_time": 0.414034665, + "problem_class": "SOCP" + } + }, + { + "id": 1966, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", @@ -10418,27 +12969,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:33:21", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:25:21", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1671, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2437, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", @@ -10462,27 +13020,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1754399488.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:25:52", - "solve_time": 1.908151625, - "status": "UNKNOWN", - "primal_objective_value": 27.33080258413944, - "dual_objective_value": 27.33078486456531, - "duality_gap": 1.7719574131547233e-05, - "primal_infeasibility": 9.835491261168821e-09, - "dual_infeasibility": 0.0, - "iterations": 25 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:08", + "solve_time": 1.6577939987182617, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 1540, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 594, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", @@ -10506,27 +13071,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:00:45", - "solve_time": 1.767578, - "status": "OPTIMAL", - "primal_objective_value": 27.33078560261699, - "dual_objective_value": 27.330794117006498, - "duality_gap": 8.5143895063311e-06, - "primal_infeasibility": 2.148011155839875e-08, - "dual_infeasibility": 7.094423477282984e-11, - "iterations": 60 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:33:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 596, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 595, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", @@ -10550,6 +13123,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10565,14 +13141,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 549, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2433, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10594,29 +13175,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:50:18", - "solve_time": 0.3952810764312744, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 181889.9302235155, - "dual_objective_value": 181889.93017808485, - "duality_gap": 4.543064278550446e-05, - "primal_infeasibility": 0.20507020561906186, - "dual_infeasibility": 1.6535033732446265e-07, - "iterations": 30 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:49:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 550, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 1967, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10638,29 +13226,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:52:07", - "solve_time": 108.75608777999878, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 551, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:26:33", + "solve_time": 70.47928071022034, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 27.432528450175983, + "dual_objective_value": 27.432503791282166, + "duality_gap": 2.4658893817530725e-05, + "primal_infeasibility": 0.00020653158969344076, + "dual_infeasibility": 0.019105119199777195, + "iterations": 100000, + "memo": { + "solver_solve_time": 70.04146987499999, + "problem_class": "SOCP" + } + }, + { + "id": 1964, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10682,29 +13277,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:52:08", - "solve_time": 0.4621720314025879, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 181889.9476437784, - "dual_objective_value": 181889.94765594476, - "duality_gap": -1.216636155731976e-05, - "primal_infeasibility": 0.3529266178870372, - "dual_infeasibility": 2.339171186358583e-05, - "iterations": 40 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:23:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 552, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1671, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10726,29 +13328,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:52:20", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:25:52", + "solve_time": 1.908151625, + "status": "UNKNOWN", + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.908151625, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 27.33080258413944, + "dual_objective_value": 27.33078486456531, + "duality_gap": 1.7719574131547233e-05, + "primal_infeasibility": 9.835491261168821e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 553, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1540, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10770,29 +13399,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:52:20", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:00:45", + "solve_time": 1.767578, + "status": "OPTIMAL", + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "iterations": 60, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.767578, + "setup_time": [], + "iterations": 60, + "primal_objective_value": 27.33078560261699, + "dual_objective_value": 27.330794117006498, + "duality_gap": 8.5143895063311e-06, + "primal_infeasibility": 2.148011155839875e-08, + "dual_infeasibility": 7.094423477282984e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 554, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 596, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "sched_100_50_orig", + "problem_name": "sched_100_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10814,6 +13470,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10821,20 +13480,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:52:59", - "solve_time": 38.64277791976929, - "status": "UNBOUNDED (INACCURATE)", + "timestamp": "2025-07-16T09:33:21", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 100000 + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1656, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1997, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", "problem_name": "sched_100_50_orig", "problem_type": "SOCP", @@ -10858,27 +13522,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:09:49", - "solve_time": 1.319889125, - "status": "MAX_ITER", - "primal_objective_value": 181893.5416873559, - "dual_objective_value": 181889.2138017401, - "duality_gap": 4.3278856158140115, - "primal_infeasibility": 0.0001842777716910772, - "dual_infeasibility": 0.0, - "iterations": 34 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:55:55", + "solve_time": 0.3930230140686035, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 181889.9302235155, + "dual_objective_value": 181889.93017808485, + "duality_gap": 4.543064278550446e-05, + "primal_infeasibility": 0.20507020561906186, + "dual_infeasibility": 1.6535033732446265e-07, + "iterations": 30, + "memo": { + "solver_solve_time": 0.211994998, + "problem_class": "SOCP" + } }, { - "id": 1525, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1998, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", "problem_name": "sched_100_50_orig", "problem_type": "SOCP", @@ -10902,27 +13573,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:53:16", - "solve_time": 1.1841420833333334, - "status": "OPTIMAL", - "primal_objective_value": 181889.9393690289, - "dual_objective_value": 181889.93942920535, - "duality_gap": 6.017644773237407e-05, - "primal_infeasibility": 6.474335930554726e-08, - "dual_infeasibility": 1.9271716253657946e-10, - "iterations": 41 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:57:36", + "solve_time": 99.64534091949463, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 555, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 551, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", "problem_name": "sched_100_50_orig", "problem_type": "SOCP", @@ -10946,6 +13624,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10953,22 +13634,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:59:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-14T15:52:08", + "solve_time": 0.4621720314025879, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 181889.9476437784, + "dual_objective_value": 181889.94765594476, + "duality_gap": -1.216636155731976e-05, + "primal_infeasibility": 0.3529266178870372, + "dual_infeasibility": 2.339171186358583e-05, + "iterations": 40, + "memo": { + "solver_solve_time": 0.267833375, + "problem_class": "SOCP" + } }, { - "id": 586, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 552, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -10990,6 +13675,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -10997,22 +13685,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:27:58", - "solve_time": 0.3410778045654297, - "status": "OPTIMAL", - "primal_objective_value": 67.16503110771706, - "dual_objective_value": 67.16503110770685, - "duality_gap": 1.0203393685515039e-11, - "primal_infeasibility": 1.3166341677133402e-05, - "dual_infeasibility": 3.192143596063497e-10, - "iterations": 28 + "timestamp": "2025-07-14T15:52:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 587, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 553, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11034,6 +13727,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11041,22 +13737,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:29:28", - "solve_time": 89.21416902542114, - "status": "ERROR", + "timestamp": "2025-07-14T15:52:20", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 588, - "solver_name": "cvxpy_ecos", + "id": 2428, + "solver_name": "cvxpy_scip", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11078,29 +13779,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:29:28", - "solve_time": 0.8036279678344727, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:20:38", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 589, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1999, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11122,29 +13830,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:30:07", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:58:14", + "solve_time": 37.75173091888428, + "status": "UNBOUNDED (INACCURATE)", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": 100000, + "memo": { + "solver_solve_time": 37.5636215, + "problem_class": "SOCP" + } }, { - "id": 590, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1996, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11166,29 +13881,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:30:07", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:55:54", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1658, + "id": 1656, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11210,6 +13932,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11217,22 +13942,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:10:01", - "solve_time": 1.1798084166666667, - "status": "UNKNOWN", - "primal_objective_value": 67.16504386757731, - "dual_objective_value": 67.1650296736913, - "duality_gap": 1.4193886016755641e-05, - "primal_infeasibility": 8.372561524043076e-08, + "timestamp": "2025-07-19T14:09:49", + "solve_time": 1.319889125, + "status": "MAX_ITER", + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, "dual_infeasibility": 0.0, - "iterations": 29 + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 1.319889125, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 181893.5416873559, + "dual_objective_value": 181889.2138017401, + "duality_gap": 4.3278856158140115, + "primal_infeasibility": 0.0001842777716910772, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1527, + "id": 1525, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11254,6 +14003,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11261,22 +14013,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:53:27", - "solve_time": 1.0436247916666668, + "timestamp": "2025-07-19T12:53:16", + "solve_time": 1.1841420833333334, "status": "OPTIMAL", - "primal_objective_value": 67.16503131825516, - "dual_objective_value": 67.16504436552164, - "duality_gap": 1.3047266477883568e-05, - "primal_infeasibility": 1.5621088165689924e-09, - "dual_infeasibility": 1.652497306472603e-10, - "iterations": 42 + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "iterations": 41, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1841420833333334, + "setup_time": [], + "iterations": 41, + "primal_objective_value": 181889.9393690289, + "dual_objective_value": 181889.93942920535, + "duality_gap": 6.017644773237407e-05, + "primal_infeasibility": 6.474335930554726e-08, + "dual_infeasibility": 1.9271716253657946e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 591, + "id": 555, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "sched_100_50_scaled", + "problem_name": "sched_100_50_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11298,6 +14074,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11305,7 +14084,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:30:07", + "timestamp": "2025-07-14T15:59:19", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -11313,14 +14092,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 568, + "id": 2013, "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_100_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:13:46", + "solve_time": 0.39348578453063965, + "status": "OPTIMAL", + "primal_objective_value": 67.16503110771706, + "dual_objective_value": 67.16503110770685, + "duality_gap": 1.0203393685515039e-11, + "primal_infeasibility": 1.3166341677133402e-05, + "dual_infeasibility": 3.192143596063497e-10, + "iterations": 28, + "memo": { + "solver_solve_time": 0.238405125, + "problem_class": "SOCP" + } + }, + { + "id": 2014, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11342,29 +14177,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:49:21", - "solve_time": 4.700660943984985, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:15:46", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 567, + "id": 588, "solver_name": "cvxpy_ecos", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11386,6 +14228,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11393,22 +14238,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:47:08", - "solve_time": 6.631985902786255, + "timestamp": "2025-07-16T09:29:28", + "solve_time": 0.8036279678344727, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 569, + "id": 589, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11430,6 +14279,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11437,7 +14289,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:52:52", + "timestamp": "2025-07-16T09:30:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -11445,14 +14297,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 570, + "id": 590, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11474,6 +14331,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11481,7 +14341,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:52:52", + "timestamp": "2025-07-16T09:30:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -11489,14 +14349,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 1670, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2432, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11518,29 +14383,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1754399488.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:25:45", - "solve_time": 6.322234541666667, - "status": "MAX_ITER", - "primal_objective_value": 141398.6133370716, - "dual_objective_value": 141352.75901112944, - "duality_gap": 45.85432594217127, - "primal_infeasibility": 2.270219537981104e-05, - "dual_infeasibility": 0.0, - "iterations": 39 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:47:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1539, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2015, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11562,29 +14434,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:00:38", - "solve_time": 9.316090291666667, - "status": "INFEASIBLE", - "primal_objective_value": 421.94187307827224, - "dual_objective_value": 0.9999999999999997, - "duality_gap": 420.94187307827224, - "primal_infeasibility": 1.3616549626114933, - "dual_infeasibility": 6.062796780357364e-09, - "iterations": 150 - }, - { - "id": 571, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:16:27", + "solve_time": 39.494370222091675, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 67.19515680638824, + "dual_objective_value": 67.19509878640596, + "duality_gap": 5.80199822763916e-05, + "primal_infeasibility": 9.115696547595488e-06, + "dual_infeasibility": 0.013741283267092997, + "iterations": 100000, + "memo": { + "solver_solve_time": 39.319873583, + "problem_class": "SOCP" + } + }, + { + "id": 2012, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_200_100_orig", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11606,29 +14485,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:52:52", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:13:45", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 599, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1658, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_200_100_scaled", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11650,29 +14536,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:34:32", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:10:01", + "solve_time": 1.1798084166666667, + "status": "UNKNOWN", + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.1798084166666667, + "setup_time": [], + "iterations": 29, + "primal_objective_value": 67.16504386757731, + "dual_objective_value": 67.1650296736913, + "duality_gap": 1.4193886016755641e-05, + "primal_infeasibility": 8.372561524043076e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 600, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1527, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_200_100_scaled", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11694,29 +14607,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:34:32", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:27", + "solve_time": 1.0436247916666668, + "status": "OPTIMAL", + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "iterations": 42, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.0436247916666668, + "setup_time": [], + "iterations": 42, + "primal_objective_value": 67.16503131825516, + "dual_objective_value": 67.16504436552164, + "duality_gap": 1.3047266477883568e-05, + "primal_infeasibility": 1.5621088165689924e-09, + "dual_infeasibility": 1.652497306472603e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1672, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 591, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "sched_200_100_scaled", + "problem_name": "sched_100_50_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11738,73 +14678,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:26:03", - "solve_time": 5.2030821666666665, - "status": "UNKNOWN", - "primal_objective_value": 51.81198120718885, - "dual_objective_value": 51.811960258992684, - "duality_gap": 2.0948196166159505e-05, - "primal_infeasibility": 9.305294462873729e-08, - "dual_infeasibility": 0.0, - "iterations": 34 - }, - { - "id": 1541, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "sched_200_100_scaled", - "problem_type": "SOCP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:00:56", - "solve_time": 5.779061583333333, - "status": "OPTIMAL", - "primal_objective_value": 51.811964255303366, - "dual_objective_value": 51.81205548787007, - "duality_gap": 9.123256670307e-05, - "primal_infeasibility": 2.1438553479259163e-08, - "dual_infeasibility": 4.496836433724744e-09, - "iterations": 79 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T09:30:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 601, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2005, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_200_100_scaled", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11826,29 +14730,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:34:32", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:05:31", + "solve_time": 3.713930130004883, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 539, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2006, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11870,29 +14781,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:41:56", - "solve_time": 0.15216612815856934, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 26673.000976502055, - "dual_objective_value": 26673.000976503732, - "duality_gap": -1.6771082300692797e-09, - "primal_infeasibility": 6.4391229604616e-06, - "dual_infeasibility": 1.2221958605691128e-11, - "iterations": 29 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:07:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 540, - "solver_name": "cvxpy_cvxopt", + "id": 567, + "solver_name": "cvxpy_ecos", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11914,6 +14832,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11921,22 +14842,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:42:19", - "solve_time": 23.28376317024231, + "timestamp": "2025-07-16T05:47:08", + "solve_time": 6.631985902786255, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } }, { - "id": 541, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 569, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -11958,6 +14883,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -11965,22 +14893,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:42:19", - "solve_time": 0.17055892944335938, - "status": "OPTIMAL", - "primal_objective_value": 26673.000987463758, - "dual_objective_value": 26673.000988293505, - "duality_gap": -8.297465683426708e-07, - "primal_infeasibility": 0.0008211845592554915, - "dual_infeasibility": 3.175354988442067e-09, - "iterations": 30 + "timestamp": "2025-07-16T05:52:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 542, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 570, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12002,6 +14935,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12009,7 +14945,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:42:19", + "timestamp": "2025-07-16T05:52:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12017,14 +14953,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 543, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2430, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12046,29 +14987,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:42:19", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:24:39", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 544, + "id": 2007, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12090,29 +15038,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:46:34", - "solve_time": 18.283209800720215, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 35809.49201866682, - "dual_objective_value": 36069.131423950195, - "duality_gap": -259.63940528337844, - "primal_infeasibility": 0.6278642052360084, - "dual_infeasibility": 2013643.3276811917, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:09:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 545, + "id": 2004, "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12134,29 +15089,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:47:26", - "solve_time": 36.98214912414551, - "status": "INFEASIBLE", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:05:27", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1655, + "id": 1670, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12178,6 +15140,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12185,22 +15150,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:09:41", - "solve_time": 0.7064037083333333, + "timestamp": "2025-07-19T14:25:45", + "solve_time": 6.322234541666667, "status": "MAX_ITER", - "primal_objective_value": 26673.095548738904, - "dual_objective_value": 26672.99721972217, - "duality_gap": 0.09832901673507877, - "primal_infeasibility": 3.15909062818255e-07, + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, "dual_infeasibility": 0.0, - "iterations": 27 + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 6.322234541666667, + "setup_time": [], + "iterations": 39, + "primal_objective_value": 141398.6133370716, + "dual_objective_value": 141352.75901112944, + "duality_gap": 45.85432594217127, + "primal_infeasibility": 2.270219537981104e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:25:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1524, + "id": 1539, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12222,6 +15211,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12229,22 +15221,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:53:09", - "solve_time": 0.7506059583333333, - "status": "OPTIMAL", - "primal_objective_value": 26673.000976938325, - "dual_objective_value": 26673.000978030293, - "duality_gap": 1.0919684427790344e-06, - "primal_infeasibility": 1.0054272660303507e-09, - "dual_infeasibility": 3.565461396342987e-11, - "iterations": 44 + "timestamp": "2025-07-19T13:00:38", + "solve_time": 9.316090291666667, + "status": "INFEASIBLE", + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "iterations": 150, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "infeasible", + "solve_time": 9.316090291666667, + "setup_time": [], + "iterations": 150, + "primal_objective_value": 421.94187307827224, + "dual_objective_value": 0.9999999999999997, + "duality_gap": 420.94187307827224, + "primal_infeasibility": 1.3616549626114933, + "dual_infeasibility": 6.062796780357364e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 546, + "id": 571, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "sched_50_50_orig", + "problem_name": "sched_200_100_orig", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12266,6 +15282,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12273,7 +15292,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-14T15:47:37", + "timestamp": "2025-07-16T05:52:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12281,14 +15300,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 574, + "id": 2017, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12310,29 +15334,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:57:19", - "solve_time": 0.1251518726348877, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:18:32", + "solve_time": 3.063275098800659, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 7.852038439863746, - "dual_objective_value": 7.852038439863737, - "duality_gap": 8.881784197001252e-15, - "primal_infeasibility": 5.942633532349437e-09, - "dual_infeasibility": 3.1698625599395943e-13, - "iterations": 26 - }, - { - "id": 575, + "primal_objective_value": 51.81196102828225, + "dual_objective_value": 51.81196102828078, + "duality_gap": 1.4708234630234074e-12, + "primal_infeasibility": 4.858747047888998e-06, + "dual_infeasibility": 2.8373054115952637e-11, + "iterations": 27, + "memo": { + "solver_solve_time": 1.077499788, + "problem_class": "SOCP" + } + }, + { + "id": 2018, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12354,29 +15385,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:57:38", - "solve_time": 18.378044843673706, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:20:32", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 576, + "id": 2438, "solver_name": "cvxpy_ecos", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12398,29 +15436,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1754399488.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:57:38", - "solve_time": 0.31072497367858887, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:55:15", + "solve_time": 5.086763620376587, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 93.815155585729, + "dual_objective_value": 93.8151556507703, + "duality_gap": -6.504129146378546e-08, + "primal_infeasibility": 3.347342476175021e-07, + "dual_infeasibility": 3.756812771549544, + "iterations": 60, + "memo": { + "solver_solve_time": 2.264175291, + "problem_class": "SOCP" + } }, { - "id": 578, + "id": 599, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12442,6 +15487,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12449,7 +15497,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:58:08", + "timestamp": "2025-07-16T09:34:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12457,14 +15505,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 579, + "id": 600, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12486,6 +15539,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12493,7 +15549,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:58:08", + "timestamp": "2025-07-16T09:34:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12501,14 +15557,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2434, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_200_100_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:51:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 577, + "id": 2019, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12530,29 +15642,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T05:57:57", - "solve_time": 18.66447901725769, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 7.852068168748205, - "dual_objective_value": 7.852068714033491, - "duality_gap": -5.452852862575241e-07, - "primal_infeasibility": 1.3471978048109906e-08, - "dual_infeasibility": 0.00038825804604077893, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:22:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 581, + "id": 2016, "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "solver_version": "unknown", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12574,29 +15693,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T06:05:24", - "solve_time": 78.08418297767639, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 7.852038526235663, - "dual_objective_value": 7.852043972235164, - "duality_gap": -5.445999500253151e-06, - "primal_infeasibility": 1.669993096788863e-08, - "dual_infeasibility": 4.0060306334744484e-07, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:18:27", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } }, { - "id": 1657, + "id": 1672, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12618,6 +15744,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12625,22 +15754,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:09:55", - "solve_time": 0.7289274583333333, - "status": "OPTIMAL", - "primal_objective_value": 7.852038477343999, - "dual_objective_value": 7.85203843733003, - "duality_gap": 4.0013969027086205e-08, - "primal_infeasibility": 5.643670372617149e-10, - "dual_infeasibility": 8.132293889752614e-13, - "iterations": 27 + "timestamp": "2025-07-19T14:26:03", + "solve_time": 5.2030821666666665, + "status": "UNKNOWN", + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.2030821666666665, + "setup_time": [], + "iterations": 34, + "primal_objective_value": 51.81198120718885, + "dual_objective_value": 51.811960258992684, + "duality_gap": 2.0948196166159505e-05, + "primal_infeasibility": 9.305294462873729e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:26:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 1526, + "id": 1541, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12662,6 +15815,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12669,22 +15825,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:53:21", - "solve_time": 0.514955, + "timestamp": "2025-07-19T13:00:56", + "solve_time": 5.779061583333333, "status": "OPTIMAL", - "primal_objective_value": 7.8520384401152645, - "dual_objective_value": 7.852038442629353, - "duality_gap": 2.514088492944211e-09, - "primal_infeasibility": 1.8727965760166163e-11, - "dual_infeasibility": 1.9350277378313464e-10, - "iterations": 31 + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "iterations": 79, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 5.779061583333333, + "setup_time": [], + "iterations": 79, + "primal_objective_value": 51.811964255303366, + "dual_objective_value": 51.81205548787007, + "duality_gap": 9.123256670307e-05, + "primal_infeasibility": 2.1438553479259163e-08, + "dual_infeasibility": 4.496836433724744e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:00:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } }, { - "id": 580, + "id": 601, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "DIMACS", - "problem_name": "sched_50_50_scaled", + "problem_name": "sched_200_100_scaled", "problem_type": "SOCP", "environment_info": { "cpu": { @@ -12706,6 +15886,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12713,7 +15896,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T06:03:59", + "timestamp": "2025-07-16T09:34:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12721,15 +15904,122 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 623, + "id": 1993, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:12", + "solve_time": 0.14995408058166504, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 26673.000976502055, + "dual_objective_value": 26673.000976503732, + "duality_gap": -1.6771082300692797e-09, + "primal_infeasibility": 6.4391229604616e-06, + "dual_infeasibility": 1.2221958605691128e-11, + "iterations": 29, + "memo": { + "solver_solve_time": 0.094789584, + "problem_class": "SOCP" + } + }, + { + "id": 1994, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:35", + "solve_time": 22.904015064239502, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 541, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "DIMACS", - "problem_name": "torusg3-15", - "problem_type": "SDP", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", "environment_info": { "cpu": { "cpu_count": 8, @@ -12750,6 +16040,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -12757,7 +16050,58 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:09:21", + "timestamp": "2025-07-14T15:42:19", + "solve_time": 0.17055892944335938, + "status": "OPTIMAL", + "primal_objective_value": 26673.000987463758, + "dual_objective_value": 26673.000988293505, + "duality_gap": -8.297465683426708e-07, + "primal_infeasibility": 0.0008211845592554915, + "dual_infeasibility": 3.175354988442067e-09, + "iterations": 30, + "memo": { + "solver_solve_time": 0.114245291, + "problem_class": "SOCP" + } + }, + { + "id": 542, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12765,14 +16109,15375 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } }, { - "id": 624, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 543, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "DIMACS", - "problem_name": "torusg3-15", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:42:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2427, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:18:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 1995, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:54", + "solve_time": 17.85116195678711, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 35809.49201866682, + "dual_objective_value": 36069.131423950195, + "duality_gap": -259.63940528337844, + "primal_infeasibility": 0.6278642052360084, + "dual_infeasibility": 2013643.3276811917, + "iterations": 100000, + "memo": { + "solver_solve_time": 17.790207541, + "problem_class": "SOCP" + } + }, + { + "id": 1992, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T11:53:11", + "solve_time": 37.08626198768616, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1655, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:41", + "solve_time": 0.7064037083333333, + "status": "MAX_ITER", + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.7064037083333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 26673.095548738904, + "dual_objective_value": 26672.99721972217, + "duality_gap": 0.09832901673507877, + "primal_infeasibility": 3.15909062818255e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1524, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:09", + "solve_time": 0.7506059583333333, + "status": "OPTIMAL", + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "iterations": 44, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.7506059583333333, + "setup_time": [], + "iterations": 44, + "primal_objective_value": 26673.000976938325, + "dual_objective_value": 26673.000978030293, + "duality_gap": 1.0919684427790344e-06, + "primal_infeasibility": 1.0054272660303507e-09, + "dual_infeasibility": 3.565461396342987e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 546, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_orig", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-14T15:47:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2009, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:10:58", + "solve_time": 0.14790773391723633, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038439863746, + "dual_objective_value": 7.852038439863737, + "duality_gap": 8.881784197001252e-15, + "primal_infeasibility": 5.942633532349437e-09, + "dual_infeasibility": 3.1698625599395943e-13, + "iterations": 26, + "memo": { + "solver_solve_time": 0.096584246, + "problem_class": "SOCP" + } + }, + { + "id": 2010, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:11:26", + "solve_time": 27.336299896240234, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 576, + "solver_name": "cvxpy_ecos", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:57:38", + "solve_time": 0.31072497367858887, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'ECOS' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SOCP" + } + }, + { + "id": 578, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:58:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 579, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T05:58:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 2431, + "solver_name": "cvxpy_scip", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1754399488.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T13:45:05", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SOCP" + } + }, + { + "id": 2011, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:11:45", + "solve_time": 18.689378023147583, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852068168748205, + "dual_objective_value": 7.852068714033491, + "duality_gap": -5.452852862575241e-07, + "primal_infeasibility": 1.3471978048109906e-08, + "dual_infeasibility": 0.00038825804604077893, + "iterations": 100000, + "memo": { + "solver_solve_time": 18.631857583000002, + "problem_class": "SOCP" + } + }, + { + "id": 2008, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:10:57", + "solve_time": 84.66230511665344, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.852038526235663, + "dual_objective_value": 7.852043972235164, + "duality_gap": -5.445999500253151e-06, + "primal_infeasibility": 1.669993096788863e-08, + "dual_infeasibility": 4.0060306334744484e-07, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SOCP" + } + }, + { + "id": 1657, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:09:55", + "solve_time": 0.7289274583333333, + "status": "OPTIMAL", + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7289274583333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 7.852038477343999, + "dual_objective_value": 7.85203843733003, + "duality_gap": 4.0013969027086205e-08, + "primal_infeasibility": 5.643670372617149e-10, + "dual_infeasibility": 8.132293889752614e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 1526, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:53:21", + "solve_time": 0.514955, + "status": "OPTIMAL", + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.514955, + "setup_time": [], + "iterations": 31, + "primal_objective_value": 7.8520384401152645, + "dual_objective_value": 7.852038442629353, + "duality_gap": 2.514088492944211e-09, + "primal_infeasibility": 1.8727965760166163e-11, + "dual_infeasibility": 1.9350277378313464e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SOCP" + } + }, + { + "id": 580, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "sched_50_50_scaled", + "problem_type": "SOCP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T06:03:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SOCP problems", + "problem_type": "SOCP", + "problem_class": "SOCP" + } + }, + { + "id": 1981, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:46", + "solve_time": 18.888890981674194, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:28 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:28 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:28 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:28 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_clarabel\n2025-08-04 00:35:28 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:35:28 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:28 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:28 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1982, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:36:05", + "solve_time": 18.98634123802185, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:47 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:47 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:47 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:47 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_cvxopt\n2025-08-04 00:35:47 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:35:47 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:47 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:47 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 623, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 624, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 625, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 626, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1983, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:36:24", + "solve_time": 19.028573036193848, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:36:06 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:36:06 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:36:06 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:36:06 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_scs\n2025-08-04 00:36:06 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:36:06 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:36:06 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:36:06 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1980, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:27", + "solve_time": 18.80346393585205, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:35:09 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:35:09 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:35:09 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:35:09 - python_solver_runner - INFO - Subprocess solving torusg3-15 with cvxpy_sdpa\n2025-08-04 00:35:09 - python_solver_runner - INFO - Solving torusg3-15 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:35:09 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:35:09 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/torusg3-15.mat.gz\n2025-08-04 00:35:09 - mat_loader - INFO - Converted torusg3-15: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:35:09 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='torusg3-15', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1677, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:29:50", + "solve_time": 96.853589375, + "status": "OPTIMAL", + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 96.853589375, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -318810925.66454315, + "dual_objective_value": -318810927.37935495, + "duality_gap": 1.7148118019104004, + "primal_infeasibility": 3.472238775909382e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:29:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2022, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:36:14", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 627, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "torusg3-15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:09:21", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1977, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:34:51", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1978, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:07", + "solve_time": 15.618396282196045, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 617, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 618, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 619, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 620, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1979, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:35:08", + "solve_time": 0.3025782108306885, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": 0, + "memo": { + "solver_solve_time": 0.098356375, + "problem_class": "SDP" + } + }, + { + "id": 1976, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:50", + "solve_time": 0.8717789649963379, + "status": "OPTIMAL", + "primal_objective_value": -48340945.427833095, + "dual_objective_value": -48340945.95630214, + "duality_gap": 0.5284690484404564, + "primal_infeasibility": 1.604926322373818e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1676, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:28:05", + "solve_time": 1.9698861666666667, + "status": "OPTIMAL", + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.9698861666666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -48340945.86330335, + "dual_objective_value": -48340945.949232884, + "duality_gap": 0.08592953532934189, + "primal_infeasibility": 3.430228268358133e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:28:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1545, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:03:39", + "solve_time": 8.568708083333334, + "status": "OPTIMAL", + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 8.568708083333334, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -48340945.69408667, + "dual_objective_value": -48340945.69332005, + "duality_gap": 0.0007666200399398804, + "primal_infeasibility": 1.6106946788226167e-09, + "dual_infeasibility": 3.269120548119365e-16, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:03:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 621, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "torusg3-8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:06:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1973, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:10", + "solve_time": 19.003982067108154, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:31:51 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:51 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:51 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:51 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_clarabel\n2025-08-04 00:31:51 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 00:31:51 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:51 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:51 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1974, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:29", + "solve_time": 19.038095712661743, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:32:10 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:10 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:10 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:10 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_cvxopt\n2025-08-04 00:32:10 - solver_cvxpy_cvxopt - INFO - Initialized CVXPY solver 'cvxpy_cvxopt' with backend 'CVXOPT'\n2025-08-04 00:32:10 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:10 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:10 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 610, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 611, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 612, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 613, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1975, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:32:48", + "solve_time": 19.10547423362732, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:32:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:32:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:32:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:32:29 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_scs\n2025-08-04 00:32:29 - solver_cvxpy_scs - INFO - Initialized CVXPY solver 'cvxpy_scs' with backend 'SCS'\n2025-08-04 00:32:29 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:32:29 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:32:29 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1972, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:31:50", + "solve_time": 18.875687837600708, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 00:31:32 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 00:31:32 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 00:31:32 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 00:31:32 - python_solver_runner - INFO - Subprocess solving toruspm3-15-50 with cvxpy_sdpa\n2025-08-04 00:31:32 - python_solver_runner - INFO - Solving toruspm3-15-50 with cvxpy_sdpa\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/cvxpy/problems/problem.py:1504: UserWarning: Solution may be inaccurate. Try another solver, adjusting the solver settings, or solve with verbose=True for more information.\n warnings.warn(\n/Users/naoki/PycharmProjects/optimization-solver-benchmark/venv/lib/python3.12/site-packages/sdpap/sdpaputils.py:114: RuntimeWarning: k >= N - 1 for N * N square matrix. Attempting to use scipy.linalg.eig instead.\n eig = eigs(mat.toarray(), k=1, which='SM',\n2025-08-04 00:31:32 - solver_cvxpy_sdpa - INFO - Initialized CVXPY solver 'cvxpy_sdpa' with backend 'SDPA'\n2025-08-04 00:31:32 - mat_loader - INFO - Loading SeDuMi MAT file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/DIMACS/data/TORUS/toruspm3-15-50.mat.gz\n2025-08-04 00:31:32 - mat_loader - INFO - Converted toruspm3-15-50: SDP problem (11390625 vars, 3375 constraints)\n2025-08-04 00:31:32 - mat_loader - INFO - Successfully loaded MAT problem: ProblemData(name='toruspm3-15-50', class='SDP', 11390625 vars, 3375 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 1718, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:48:56", + "solve_time": 82.76187025, + "status": "OPTIMAL", + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 82.76187025, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -3474.794059052365, + "dual_objective_value": -3474.7940824213174, + "duality_gap": 2.336895249754889e-05, + "primal_infeasibility": 2.319714150200321e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:48:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2021, + "solver_name": "matlab_sedumi", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:33:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 614, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "toruspm3-15-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:05:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1969, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:28:35", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1970, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:29:31", + "solve_time": 54.69461226463318, + "status": "OPTIMAL", + "primal_objective_value": -527.8086363538721, + "dual_objective_value": -527.8086363269429, + "duality_gap": -2.6929228624794632e-08, + "primal_infeasibility": 6.74571396637511e-15, + "dual_infeasibility": 3.631236069352535e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 604, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 605, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 606, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 607, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1971, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:31:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1968, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-03T15:26:35", + "solve_time": 0.644899845123291, + "status": "OPTIMAL", + "primal_objective_value": -527.8086347494122, + "dual_objective_value": -527.8086640471479, + "duality_gap": 2.9297735636646394e-05, + "primal_infeasibility": 4.731821784136668e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1717, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:47:24", + "solve_time": 2.0340817083333333, + "status": "OPTIMAL", + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.0340817083333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -527.808660710369, + "dual_objective_value": -527.8086632131733, + "duality_gap": 2.502804250070767e-06, + "primal_infeasibility": 1.4509650835086007e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:47:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1582, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:37:03", + "solve_time": 7.601006166666667, + "status": "OPTIMAL", + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 7.601006166666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -527.8086592434917, + "dual_objective_value": -527.8086592306726, + "duality_gap": 1.281910044781398e-08, + "primal_infeasibility": 2.098791477322716e-09, + "dual_infeasibility": 5.187620354134206e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:37:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 608, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "toruspm3-8-50", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:02:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2076, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:57", + "solve_time": 0.4208559989929199, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 132.63530797336855, + "dual_objective_value": 132.6353098328787, + "duality_gap": -1.8595101494156552e-06, + "primal_infeasibility": 2.976961436986348e-06, + "dual_infeasibility": 6.742415211712427e-08, + "iterations": 19, + "memo": { + "solver_solve_time": 0.380134749, + "problem_class": "SDP" + } + }, + { + "id": 2077, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:59", + "solve_time": 1.182116985321045, + "status": "OPTIMAL", + "primal_objective_value": 132.63567622801477, + "dual_objective_value": 132.63567623702812, + "duality_gap": -9.013348289954592e-09, + "primal_infeasibility": 1.4353448618618097e-08, + "dual_infeasibility": 3.018302548232494e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 632, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 633, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 634, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 635, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:12:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2078, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:22", + "solve_time": 22.059240341186523, + "status": "OPTIMAL", + "primal_objective_value": 132.67032214278458, + "dual_objective_value": 132.67032627913713, + "duality_gap": -4.136352544037436e-06, + "primal_infeasibility": 2.4188989473182798e-06, + "dual_infeasibility": 0.0024103317967444286, + "iterations": 83675, + "memo": { + "solver_solve_time": 22.017944333, + "problem_class": "SDP" + } + }, + { + "id": 2075, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:48:56", + "solve_time": 0.14781689643859863, + "status": "OPTIMAL", + "primal_objective_value": 132.6356794538592, + "dual_objective_value": 132.63567502877504, + "duality_gap": 4.425084171089111e-06, + "primal_infeasibility": 6.293316373095602e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1818, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "86bfae9b39861dd3a3303c878d8ee30e9a970bb6", + "timestamp": "2025-07-22T15:17:54", + "solve_time": 0.6745402916666666, + "status": "OPTIMAL", + "primal_objective_value": 132.63567801876036, + "dual_objective_value": 132.63567787176189, + "duality_gap": 1.4699847383781162e-07, + "primal_infeasibility": 1.5205458807246513e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.6745402916666666, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 132.63567801876036, + "dual_objective_value": 132.63567787176189, + "duality_gap": 1.4699847383781162e-07, + "primal_infeasibility": 1.5205458807246513e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:17:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1821, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:32:38", + "solve_time": 0.6298311666666667, + "status": "OPTIMAL", + "primal_objective_value": 132.6356771601937, + "dual_objective_value": 132.63567716470257, + "duality_gap": 4.5088768274581525e-09, + "primal_infeasibility": 6.3772698840920634e-09, + "dual_infeasibility": 1.2707963027328625e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.6298311666666667, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 132.6356771601937, + "dual_objective_value": 132.63567716470257, + "duality_gap": 4.5088768274581525e-09, + "primal_infeasibility": 6.3772698840920634e-09, + "dual_infeasibility": 1.2707963027328625e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:32:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 638, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "truss5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:13:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2080, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:30", + "solve_time": 7.1672890186309814, + "status": "OPTIMAL", + "primal_objective_value": 133.11452300392386, + "dual_objective_value": 133.1145231602386, + "duality_gap": -1.5631474070687545e-07, + "primal_infeasibility": 5.880442946566506e-07, + "dual_infeasibility": 2.416827226267145e-08, + "iterations": 20, + "memo": { + "solver_solve_time": 7.025535836, + "problem_class": "SDP" + } + }, + { + "id": 2081, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:35", + "solve_time": 4.457964658737183, + "status": "OPTIMAL", + "primal_objective_value": 133.11458873614384, + "dual_objective_value": 133.11458873454836, + "duality_gap": 1.5954810805851594e-09, + "primal_infeasibility": 5.1857958079351704e-09, + "dual_infeasibility": 9.454734908598581e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 643, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 644, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 645, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 646, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:14:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2082, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:50:55", + "solve_time": 78.73915386199951, + "status": "OPTIMAL", + "primal_objective_value": 133.206421971091, + "dual_objective_value": 133.2064255039062, + "duality_gap": -3.532815185280924e-06, + "primal_infeasibility": 1.809776268177368e-06, + "dual_infeasibility": 0.0026429235860219477, + "iterations": 90650, + "memo": { + "solver_solve_time": 78.591124291, + "problem_class": "SDP" + } + }, + { + "id": 2079, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:49:23", + "solve_time": 0.6237318515777588, + "status": "OPTIMAL", + "primal_objective_value": 133.11459453047246, + "dual_objective_value": 133.11459273039674, + "duality_gap": 1.8000757222580432e-06, + "primal_infeasibility": 1.4560143550748557e-10, + "dual_infeasibility": 2.0041502554605766e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1820, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:31:53", + "solve_time": 0.8213070833333334, + "status": "OPTIMAL", + "primal_objective_value": 133.11458915883577, + "dual_objective_value": 133.1145890906361, + "duality_gap": 6.819968234594853e-08, + "primal_infeasibility": 2.2496379323625403e-10, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8213070833333334, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 133.11458915883577, + "dual_objective_value": 133.1145890906361, + "duality_gap": 6.819968234594853e-08, + "primal_infeasibility": 2.2496379323625403e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:31:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1822, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:32:44", + "solve_time": 1.0171705, + "status": "OPTIMAL", + "primal_objective_value": 133.11458828405543, + "dual_objective_value": 133.11458828648352, + "duality_gap": 2.4280950583488448e-09, + "primal_infeasibility": 7.429302853954885e-09, + "dual_infeasibility": 2.294303437965876e-10, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.0171705, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 133.11458828405543, + "dual_objective_value": 133.11458828648352, + "duality_gap": 2.4280950583488448e-09, + "primal_infeasibility": 7.429302853954885e-09, + "dual_infeasibility": 2.294303437965876e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:32:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 649, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "DIMACS", + "problem_name": "truss8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:15:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2084, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:17", + "solve_time": 8.200895071029663, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172821147114, + "dual_objective_value": -0.5665172817725594, + "duality_gap": -3.421519734203571e-10, + "primal_infeasibility": 1.022967781834959e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 5.049194498, + "problem_class": "SDP" + } + }, + { + "id": 2085, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:27", + "solve_time": 9.065042972564697, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172762101253, + "dual_objective_value": -0.5665172760832871, + "duality_gap": -1.2683820660441825e-10, + "primal_infeasibility": 2.9533438966925347e-08, + "dual_infeasibility": 4.1854682344393564e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 654, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 655, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 656, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 657, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:17:22", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2086, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:27", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2083, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:54:08", + "solve_time": 3.568632125854492, + "status": "OPTIMAL", + "primal_objective_value": -0.566517267707974, + "dual_objective_value": -0.5665172734748258, + "duality_gap": 5.766851884914104e-09, + "primal_infeasibility": 6.702895394246997e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1891, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T16:08:58", + "solve_time": 1.693596375, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.693596375, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -0.5665172706450547, + "dual_objective_value": -0.5665172738234687, + "duality_gap": 3.1784139764567954e-09, + "primal_infeasibility": 3.331523558890798e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 01:08:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1462, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:38", + "solve_time": 2.2475020833333335, + "status": "OPTIMAL", + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.2475020833333335, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -0.5665172725671985, + "dual_objective_value": -0.5665172736468338, + "duality_gap": 1.0796352700737089e-09, + "primal_infeasibility": 8.490926777938654e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 659, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch0", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:21:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2088, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:37", + "solve_time": 5.3541259765625, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154099679571, + "dual_objective_value": -0.6715154097625702, + "duality_gap": -2.0538692968585792e-10, + "primal_infeasibility": 3.512925202723288e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.193572249, + "problem_class": "SDP" + } + }, + { + "id": 2089, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:46", + "solve_time": 7.850555181503296, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154087273556, + "dual_objective_value": -0.6715154086542251, + "duality_gap": -7.313050165436152e-11, + "primal_infeasibility": 1.1755370688932572e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 665, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 666, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 667, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 668, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2090, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:46", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2087, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:56:31", + "solve_time": 3.9591081142425537, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.6715149919393316, + "dual_objective_value": -0.6715154519149769, + "duality_gap": 4.599756452394743e-07, + "primal_infeasibility": 9.880028136196605e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1598, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:13", + "solve_time": 1.86828275, + "status": "OPTIMAL", + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.86828275, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -0.6715154042243952, + "dual_objective_value": -0.6715154083287945, + "duality_gap": 4.104399375925993e-09, + "primal_infeasibility": 3.403005752654008e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1463, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:45", + "solve_time": 1.7373145833333334, + "status": "OPTIMAL", + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.7373145833333334, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -0.6715153908899425, + "dual_objective_value": -0.6715153884008259, + "duality_gap": 2.4891165795182246e-09, + "primal_infeasibility": 2.8865480120764807e-09, + "dual_infeasibility": 6.157079870441952e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 669, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:23:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2092, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:56", + "solve_time": 4.968804836273193, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274329610303, + "dual_objective_value": -0.9726274322104886, + "duality_gap": -7.505416288466904e-10, + "primal_infeasibility": 1.1813692812382962e-07, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "solver_solve_time": 1.834995457, + "problem_class": "SDP" + } + }, + { + "id": 2093, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:59:04", + "solve_time": 7.285048723220825, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274304903915, + "dual_objective_value": -0.9726274299150273, + "duality_gap": -5.753642007277904e-10, + "primal_infeasibility": 7.421682204955683e-08, + "dual_infeasibility": 2.5603242314031326e-13, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 674, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 675, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 676, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 677, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2094, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:04", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2091, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:58:50", + "solve_time": 3.6847190856933594, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.9726272676562057, + "dual_objective_value": -0.9726274431143305, + "duality_gap": 1.7545812480701528e-07, + "primal_infeasibility": 6.41651460356969e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1599, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:20", + "solve_time": 1.705317875, + "status": "OPTIMAL", + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.705317875, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -0.97262741117333, + "dual_objective_value": -0.972627418748867, + "duality_gap": 7.57553708652381e-09, + "primal_infeasibility": 8.514427642381836e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1464, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:37:52", + "solve_time": 1.874344125, + "status": "OPTIMAL", + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.874344125, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.9726274178595536, + "dual_objective_value": -0.9726274178395272, + "duality_gap": 2.00264249627935e-11, + "primal_infeasibility": 2.8576206940232703e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 679, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:26:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2096, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:14", + "solve_time": 5.1614251136779785, + "status": "OPTIMAL", + "primal_objective_value": -7.056985719383242, + "dual_objective_value": -7.0569856944182865, + "duality_gap": -2.4964955436246328e-08, + "primal_infeasibility": 2.7109763353502106e-06, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "solver_solve_time": 2.099254042, + "problem_class": "SDP" + } + }, + { + "id": 2097, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:23", + "solve_time": 8.174963235855103, + "status": "OPTIMAL", + "primal_objective_value": -7.056980177129674, + "dual_objective_value": -7.056980175019456, + "duality_gap": -2.1102177782950093e-09, + "primal_infeasibility": 8.034408651651353e-08, + "dual_infeasibility": 1.259191489724154e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 685, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 686, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 687, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 688, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2098, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:23", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2095, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:01:08", + "solve_time": 3.7701759338378906, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -7.056979925817409, + "dual_objective_value": -7.056980053305484, + "duality_gap": 1.2748807520779337e-07, + "primal_infeasibility": 1.428558638956882e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1600, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:00:27", + "solve_time": 1.4575445, + "status": "UNKNOWN", + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.4575445, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -7.056980018798058, + "dual_objective_value": -7.056980042117708, + "duality_gap": 2.331965021085125e-08, + "primal_infeasibility": 1.4104717965201591e-08, + "dual_infeasibility": 3.5687676151979556e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1465, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:01", + "solve_time": 3.12848525, + "status": "OPTIMAL", + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 3.12848525, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -7.056980043548424, + "dual_objective_value": -7.056980043508659, + "duality_gap": 3.976463602839431e-11, + "primal_infeasibility": 3.648550476043381e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:37:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 689, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "arch8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:28:28", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2100, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:24", + "solve_time": 0.014528989791870117, + "status": "OPTIMAL", + "primal_objective_value": -18.057693540129556, + "dual_objective_value": -18.05769338831607, + "duality_gap": -1.5181348445025833e-07, + "primal_infeasibility": 0.02414985830941088, + "dual_infeasibility": 0.0, + "iterations": 56, + "memo": { + "solver_solve_time": 0.011800501, + "problem_class": "SDP" + } + }, + { + "id": 2101, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:24", + "solve_time": 0.16407227516174316, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 695, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 696, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 697, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 698, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2102, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:26", + "solve_time": 0.9191200733184814, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002878232961825694, + "dual_objective_value": -20.48065620588266, + "duality_gap": 20.477777972920833, + "primal_infeasibility": 0.27819661314555105, + "dual_infeasibility": 546368.1134344704, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.915902708, + "problem_class": "SDP" + } + }, + { + "id": 2099, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:23", + "solve_time": 0.011425018310546875, + "status": "OPTIMAL", + "primal_objective_value": -17.78462618700244, + "dual_objective_value": -17.784627142638215, + "duality_gap": 9.556357731810294e-07, + "primal_infeasibility": 1.9992999166489883e-09, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1629, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:57", + "solve_time": 0.29932166666666665, + "status": "OPTIMAL", + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.29932166666666665, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -17.78462660868152, + "dual_objective_value": -17.784626742725198, + "duality_gap": 1.3404367749103585e-07, + "primal_infeasibility": 6.1483802884653124e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1499, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:52", + "solve_time": 0.30866791666666665, + "status": "OPTIMAL", + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0.0, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.30866791666666665, + "setup_time": [], + "iterations": 30, + "primal_objective_value": -17.784626802847523, + "dual_objective_value": -17.784626793465566, + "duality_gap": 9.38195654498486e-09, + "primal_infeasibility": 5.28282960426234e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 700, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:30:40", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2212, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:58:53", + "solve_time": 58.74322485923767, + "status": "OPTIMAL", + "primal_objective_value": -38.53310978438966, + "dual_objective_value": -38.53310974843417, + "duality_gap": -3.5955487476257986e-08, + "primal_infeasibility": 1.3387459817271676e-06, + "dual_infeasibility": 3.600325513296991e-11, + "iterations": 44, + "memo": { + "solver_solve_time": 58.39190925, + "problem_class": "SDP" + } + }, + { + "id": 2213, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:59:27", + "solve_time": 31.417057037353516, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 810, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 811, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 812, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:14", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 813, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2214, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:01:28", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2211, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:57:53", + "solve_time": 11.582292795181274, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -38.532875373216974, + "dual_objective_value": -38.53307092893413, + "duality_gap": 0.00019555571715557107, + "primal_infeasibility": 2.813485631313094e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1638, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:17", + "solve_time": 8.544497708333333, + "status": "UNKNOWN", + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 8.544497708333333, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -38.53290115712743, + "dual_objective_value": -38.53305732276117, + "duality_gap": 0.00015616563374010184, + "primal_infeasibility": 1.0306253214751266e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1508, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:45:31", + "solve_time": 17.53509725, + "status": "NUM_ERROR", + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0.0, + "iterations": 43, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 17.53509725, + "setup_time": [], + "iterations": 43, + "primal_objective_value": -38.533100875331215, + "dual_objective_value": -38.53309670441624, + "duality_gap": 4.1709149769530995e-06, + "primal_infeasibility": 1.1942347138694803e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:45:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 814, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control10", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:14:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2216, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:03:49", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2217, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:04:35", + "solve_time": 43.228622913360596, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 819, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:24", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 820, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 821, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 822, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2218, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:06:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2215, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:01:48", + "solve_time": 17.948111295700073, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -31.95851149383577, + "dual_objective_value": -31.95870615260608, + "duality_gap": 0.000194658770311662, + "primal_infeasibility": 1.7090596773415e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1639, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:38", + "solve_time": 11.558988291666667, + "status": "UNKNOWN", + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 11.558988291666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -31.958623305615316, + "dual_objective_value": -31.958686698445707, + "duality_gap": 6.339283039125121e-05, + "primal_infeasibility": 7.853573037958292e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1509, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:12", + "solve_time": 30.733073958333332, + "status": "NUM_ERROR", + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0.0, + "iterations": 47, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 30.733073958333332, + "setup_time": [], + "iterations": 47, + "primal_objective_value": -31.958699244576298, + "dual_objective_value": -31.958695423512797, + "duality_gap": 3.821063501163735e-06, + "primal_infeasibility": 5.312516350920055e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 823, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:19:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2180, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:51", + "solve_time": 0.050559043884277344, + "status": "OPTIMAL", + "primal_objective_value": -8.30000052797604, + "dual_objective_value": -8.300000490399094, + "duality_gap": -3.7576945999262534e-08, + "primal_infeasibility": 1.0799058809794016e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "solver_solve_time": 0.046177288, + "problem_class": "SDP" + } + }, + { + "id": 2181, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:52", + "solve_time": 0.16975116729736328, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 706, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 707, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 708, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 709, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2182, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:57", + "solve_time": 4.875208854675293, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.0019666666133589523, + "dual_objective_value": -1.6631072323702496, + "duality_gap": 1.6611405657568907, + "primal_infeasibility": 0.166111590183817, + "dual_infeasibility": 16899.147636217396, + "iterations": 100000, + "memo": { + "solver_solve_time": 4.870198625, + "problem_class": "SDP" + } + }, + { + "id": 2179, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:51", + "solve_time": 0.03551793098449707, + "status": "OPTIMAL", + "primal_objective_value": -8.299999482545115, + "dual_objective_value": -8.300000044307849, + "duality_gap": 5.617627341081288e-07, + "primal_infeasibility": 1.6670044255637843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1630, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:03", + "solve_time": 0.41014416666666664, + "status": "MAX_ITER", + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.41014416666666664, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -8.299999963979975, + "dual_objective_value": -8.300000195440187, + "duality_gap": 2.3146021277398177e-07, + "primal_infeasibility": 4.880420109459047e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1500, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:58", + "solve_time": 0.3295910833333333, + "status": "OPTIMAL", + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0.0, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3295910833333333, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -8.300000061550637, + "dual_objective_value": -8.300000053303892, + "duality_gap": 8.24674550869986e-09, + "primal_infeasibility": 8.92637846485658e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 711, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:32:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2184, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:59", + "solve_time": 0.23012804985046387, + "status": "OPTIMAL", + "primal_objective_value": -13.633267734899809, + "dual_objective_value": -13.633267702679126, + "duality_gap": -3.2220683010564244e-08, + "primal_infeasibility": 2.693486524788012e-07, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "solver_solve_time": 0.221856126, + "problem_class": "SDP" + } + }, + { + "id": 2185, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:00", + "solve_time": 0.34781694412231445, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 717, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 718, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 719, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 720, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2186, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:14", + "solve_time": 14.100239038467407, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.037735833422812004, + "dual_objective_value": -0.27289208768706114, + "duality_gap": 0.23515625426424913, + "primal_infeasibility": 0.13917932877951675, + "dual_infeasibility": 1893.5597441188274, + "iterations": 100000, + "memo": { + "solver_solve_time": 14.090095958, + "problem_class": "SDP" + } + }, + { + "id": 2183, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:45:58", + "solve_time": 0.16129589080810547, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -13.633263748445593, + "dual_objective_value": -13.633266893655158, + "duality_gap": 3.1452095647921396e-06, + "primal_infeasibility": 6.364345948755367e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1631, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:09", + "solve_time": 0.5669687916666667, + "status": "MAX_ITER", + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.5669687916666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -13.633263261632482, + "dual_objective_value": -13.633267476768832, + "duality_gap": 4.215136350183002e-06, + "primal_infeasibility": 8.350276043868962e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1501, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:04", + "solve_time": 0.5063703333333334, + "status": "NUM_ERROR", + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0.0, + "iterations": 34, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5063703333333334, + "setup_time": [], + "iterations": 34, + "primal_objective_value": -13.633266745169918, + "dual_objective_value": -13.633266709049082, + "duality_gap": 3.612083609993988e-08, + "primal_infeasibility": 2.9250113210155247e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 722, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:33:20", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2188, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:17", + "solve_time": 0.8590762615203857, + "status": "OPTIMAL", + "primal_objective_value": -19.79423318506499, + "dual_objective_value": -19.79423315316147, + "duality_gap": -3.190351804960301e-08, + "primal_infeasibility": 5.103843191955561e-07, + "dual_infeasibility": 5.641713395479458e-08, + "iterations": 32, + "memo": { + "solver_solve_time": 0.841925412, + "problem_class": "SDP" + } + }, + { + "id": 2189, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:19", + "solve_time": 1.2682511806488037, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 728, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 729, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 730, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 731, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2190, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:48", + "solve_time": 28.04506778717041, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.002563905576329976, + "dual_objective_value": -2.112935527155603, + "duality_gap": 2.110371621579273, + "primal_infeasibility": 0.11510210278659297, + "dual_infeasibility": 14854.924304999919, + "iterations": 100000, + "memo": { + "solver_solve_time": 28.022136791, + "problem_class": "SDP" + } + }, + { + "id": 2187, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:15", + "solve_time": 0.33644914627075195, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -19.79422577234397, + "dual_objective_value": -19.7942315506204, + "duality_gap": 5.778276428003437e-06, + "primal_infeasibility": 1.3327565863841907e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1632, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:14", + "solve_time": 0.9797094583333333, + "status": "UNKNOWN", + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.9797094583333333, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -19.794231903242835, + "dual_objective_value": -19.794231015288197, + "duality_gap": 8.879546378182113e-07, + "primal_infeasibility": 2.2336441257685175e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1502, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:10", + "solve_time": 0.619574875, + "status": "NUM_ERROR", + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.619574875, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -19.79423223668097, + "dual_objective_value": -19.79423226601071, + "duality_gap": 2.932974041414127e-08, + "primal_infeasibility": 7.34021862743097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 733, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2192, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:52", + "solve_time": 2.263176918029785, + "status": "OPTIMAL", + "primal_objective_value": -16.88364881340114, + "dual_objective_value": -16.883648809313648, + "duality_gap": -4.087493010729304e-09, + "primal_infeasibility": 5.620802961416378e-07, + "dual_infeasibility": 5.697256261448682e-09, + "iterations": 35, + "memo": { + "solver_solve_time": 2.230729789, + "problem_class": "SDP" + } + }, + { + "id": 2193, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:55", + "solve_time": 2.0964319705963135, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 739, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 740, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 741, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 742, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2194, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:49", + "solve_time": 53.70480513572693, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.17807903005516243, + "dual_objective_value": -0.23275478696713833, + "duality_gap": 0.054675756911975903, + "primal_infeasibility": 0.09362750982167806, + "dual_infeasibility": 369.6736319443367, + "iterations": 100000, + "memo": { + "solver_solve_time": 53.657073791, + "problem_class": "SDP" + } + }, + { + "id": 2191, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:46:49", + "solve_time": 0.6715381145477295, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -16.883575406676048, + "dual_objective_value": -16.883604992850316, + "duality_gap": 2.9586174267848264e-05, + "primal_infeasibility": 2.7521358841549283e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1633, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:21", + "solve_time": 2.211192083333333, + "status": "UNKNOWN", + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0.0, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.211192083333333, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -16.883596414614832, + "dual_objective_value": -16.88360083689795, + "duality_gap": 4.422283119254189e-06, + "primal_infeasibility": 2.75357458891001e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1503, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:16", + "solve_time": 1.1899270833333333, + "status": "NUM_ERROR", + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.1899270833333333, + "setup_time": [], + "iterations": 35, + "primal_objective_value": -16.88360792645761, + "dual_objective_value": -16.88360752271663, + "duality_gap": 4.037409802037928e-07, + "primal_infeasibility": 4.1151459934863073e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:14", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 744, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:36:39", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2196, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:58", + "solve_time": 5.672824859619141, + "status": "OPTIMAL", + "primal_objective_value": -37.3044718247362, + "dual_objective_value": -37.30447181818093, + "duality_gap": -6.5552683281566715e-09, + "primal_infeasibility": 1.4634649666883939e-06, + "dual_infeasibility": 3.059050321188013e-06, + "iterations": 42, + "memo": { + "solver_solve_time": 5.614913959, + "problem_class": "SDP" + } + }, + { + "id": 2197, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:48:03", + "solve_time": 4.2641379833221436, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 750, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 751, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 752, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 753, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T10:50:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2198, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:36", + "solve_time": 91.90722298622131, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -0.5214729254574336, + "dual_objective_value": -1.0154678495708611, + "duality_gap": 0.4939949241134275, + "primal_infeasibility": 0.08196294538901851, + "dual_infeasibility": 3266.178827189497, + "iterations": 100000, + "memo": { + "solver_solve_time": 91.81093475, + "problem_class": "SDP" + } + }, + { + "id": 2195, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:47:51", + "solve_time": 1.3168079853057861, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -37.30434823321163, + "dual_objective_value": -37.30443772697064, + "duality_gap": 8.94937590132372e-05, + "primal_infeasibility": 2.9293219588294305e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1634, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:28", + "solve_time": 1.4893847916666667, + "status": "UNKNOWN", + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.4893847916666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -37.3043782593074, + "dual_objective_value": -37.30442450422718, + "duality_gap": 4.624491977978096e-05, + "primal_infeasibility": 6.229389742583387e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1504, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:24", + "solve_time": 2.2992367083333334, + "status": "NUM_ERROR", + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.2992367083333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -37.304475715902306, + "dual_objective_value": -37.30447323765376, + "duality_gap": 2.478248546822215e-06, + "primal_infeasibility": 1.310139383095129e-06, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1766, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control6", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:40:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2200, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:51", + "solve_time": 10.41468095779419, + "status": "OPTIMAL", + "primal_objective_value": -20.625077113896168, + "dual_objective_value": -20.625077105250966, + "duality_gap": -8.64520188770257e-09, + "primal_infeasibility": 6.579981870625703e-07, + "dual_infeasibility": 2.3499840470621547e-07, + "iterations": 39, + "memo": { + "solver_solve_time": 10.31394521, + "problem_class": "SDP" + } + }, + { + "id": 2201, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:50:00", + "solve_time": 8.096139907836914, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 781, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 782, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 783, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 784, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2202, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:00", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2199, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:49:40", + "solve_time": 2.504279851913452, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.625054215291936, + "dual_objective_value": -20.625079174008114, + "duality_gap": 2.4958716178247187e-05, + "primal_infeasibility": 7.626469959925607e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1635, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:37", + "solve_time": 2.1745322916666665, + "status": "UNKNOWN", + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.1745322916666665, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.62505846427079, + "dual_objective_value": -20.62507774002214, + "duality_gap": 1.9275751348857284e-05, + "primal_infeasibility": 5.828261469963749e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1505, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:34", + "solve_time": 3.7043799583333334, + "status": "NUM_ERROR", + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.7043799583333334, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.625087691567924, + "dual_objective_value": -20.625088042230974, + "duality_gap": 3.506630505967223e-07, + "primal_infeasibility": 4.0114303820059954e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 785, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:04:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2204, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:26", + "solve_time": 19.301553964614868, + "status": "OPTIMAL", + "primal_objective_value": -20.2863714283772, + "dual_objective_value": -20.286371308207375, + "duality_gap": -1.201698260899775e-07, + "primal_infeasibility": 5.539607872665644e-07, + "dual_infeasibility": 1.4511474711248118e-07, + "iterations": 40, + "memo": { + "solver_solve_time": 19.143677041, + "problem_class": "SDP" + } + }, + { + "id": 2205, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:40", + "solve_time": 11.985829830169678, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 790, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 791, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 792, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 793, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:03", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2206, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:54:40", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2203, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:52:06", + "solve_time": 4.015629053115845, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -20.286315458750884, + "dual_objective_value": -20.286372440169522, + "duality_gap": 5.698141863774708e-05, + "primal_infeasibility": 2.99146677629299e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1636, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:47", + "solve_time": 3.2315104166666666, + "status": "UNKNOWN", + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 3.2315104166666666, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -20.286339185828837, + "dual_objective_value": -20.286370196182016, + "duality_gap": 3.101035317953915e-05, + "primal_infeasibility": 6.98131306134552e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1506, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:44:48", + "solve_time": 6.0665873333333336, + "status": "NUM_ERROR", + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.0665873333333336, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -20.286375865662162, + "dual_objective_value": -20.286374249545677, + "duality_gap": 1.6161164850814203e-06, + "primal_infeasibility": 4.233911977499572e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:44:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 794, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:06:04", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2208, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:55:19", + "solve_time": 29.263099193572998, + "status": "OPTIMAL", + "primal_objective_value": -14.675430563285023, + "dual_objective_value": -14.675430500128785, + "duality_gap": -6.315623757302546e-08, + "primal_infeasibility": 1.0734959395341116e-06, + "dual_infeasibility": 0.0, + "iterations": 35, + "memo": { + "solver_solve_time": 29.023103417, + "problem_class": "SDP" + } + }, + { + "id": 2209, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:55:39", + "solve_time": 18.054994821548462, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 800, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:50", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 801, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 802, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 803, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2210, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:57:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2207, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:54:48", + "solve_time": 6.55282998085022, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -14.67540228481323, + "dual_objective_value": -14.675431392929916, + "duality_gap": 2.910811668499491e-05, + "primal_infeasibility": 1.4589427065347405e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1637, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:04:59", + "solve_time": 5.164574291666667, + "status": "UNKNOWN", + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 5.164574291666667, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -14.675411161814361, + "dual_objective_value": -14.675428193598599, + "duality_gap": 1.7031784237175884e-05, + "primal_infeasibility": 3.695427597785709e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:04:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1507, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:45:05", + "solve_time": 10.212919458333333, + "status": "NUM_ERROR", + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0.0, + "iterations": 40, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 10.212919458333333, + "setup_time": [], + "iterations": 40, + "primal_objective_value": -14.6754285362703, + "dual_objective_value": -14.675428798508477, + "duality_gap": 2.622381778394356e-07, + "primal_infeasibility": 1.582313837708998e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:45:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 804, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "control9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:10:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2220, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:08:01", + "solve_time": 32.29365611076355, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 00:07:29 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:07:29 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:07:29 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:07:29 - python_solver_runner - INFO - Subprocess solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - python_solver_runner - INFO - Solving equalG11 with cvxpy_clarabel\n2025-08-05 00:07:29 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:07:29 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG11.dat-s\n2025-08-05 00:07:29 - dat_loader - INFO - Converted equalG11: SDP problem (641601 vars, 801 constraints)\n2025-08-05 00:07:29 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG11', class='SDP', 641601 vars, 801 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2221, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:10:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 1388, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:51", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1389, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:52", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1390, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1391, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:53", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2222, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:12:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2219, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:07:28", + "solve_time": 50.860018253326416, + "status": "OPTIMAL", + "primal_objective_value": -629.1552658005733, + "dual_objective_value": -629.1552929633996, + "duality_gap": 2.716282631354261e-05, + "primal_infeasibility": 2.369371882908525e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1612, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:56", + "solve_time": 5.390393125, + "status": "OPTIMAL", + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.390393125, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -629.1552924715518, + "dual_objective_value": -629.155292824143, + "duality_gap": 3.52591200680763e-07, + "primal_infeasibility": 1.783924970601402e-12, + "dual_infeasibility": 6.427897648455087e-18, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1497, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:41:57", + "solve_time": 40.736246875, + "status": "NUM_ERROR", + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 40.736246875, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -629.1548520668078, + "dual_objective_value": -629.147034816694, + "duality_gap": 0.007817250113816954, + "primal_infeasibility": 2.5361087944180886e-08, + "dual_infeasibility": 4.2544376286179536e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:41:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1392, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "equalG11", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:17:54", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2224, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:14:20", + "solve_time": 36.03781485557556, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-05 00:13:43 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-05 00:13:43 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-05 00:13:43 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-05 00:13:43 - python_solver_runner - INFO - Subprocess solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - python_solver_runner - INFO - Solving equalG51 with cvxpy_clarabel\n2025-08-05 00:13:43 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-05 00:13:43 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/equalG51.dat-s\n2025-08-05 00:13:44 - dat_loader - INFO - Converted equalG51: SDP problem (1002001 vars, 1001 constraints)\n2025-08-05 00:13:44 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='equalG51', class='SDP', 1002001 vars, 1001 constraints)", + "problem_class": "SDP" + } + }, + { + "id": 2225, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:16:20", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 835, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:09", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 836, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 837, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 838, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:11", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2226, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2223, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:13:43", + "solve_time": 98.00020503997803, + "status": "OPTIMAL", + "primal_objective_value": -4005.6011905473815, + "dual_objective_value": -4005.6013169406397, + "duality_gap": 0.00012639325814234326, + "primal_infeasibility": 7.832639830764701e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1613, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:02:29", + "solve_time": 8.547652125, + "status": "OPTIMAL", + "primal_objective_value": -4005.601288017268, + "dual_objective_value": -4005.601316366677, + "duality_gap": 2.834940914908657e-05, + "primal_infeasibility": 5.789644333861485e-11, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 8.547652125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -4005.601288017268, + "dual_objective_value": -4005.601316366677, + "duality_gap": 2.834940914908657e-05, + "primal_infeasibility": 5.789644333861485e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1498, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:43:46", + "solve_time": 84.32632358333333, + "status": "NUM_ERROR", + "primal_objective_value": -4005.599767044349, + "dual_objective_value": -4005.599767799965, + "duality_gap": 7.556159289379138e-07, + "primal_infeasibility": 8.95433741624491e-09, + "dual_infeasibility": 5.676034290944519e-12, + "iterations": 30, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 84.32632358333333, + "setup_time": [], + "iterations": 30, + "primal_objective_value": -4005.599767044349, + "dual_objective_value": -4005.599767799965, + "duality_gap": 7.556159289379138e-07, + "primal_infeasibility": 8.95433741624491e-09, + "dual_infeasibility": 5.676034290944519e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:43:42", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 839, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "equalG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:33:12", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2024, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:10", + "solve_time": 24.420432090759277, + "status": "OPTIMAL", + "primal_objective_value": 44.94352143580459, + "dual_objective_value": 44.943521202203435, + "duality_gap": 2.3360115619652788e-07, + "primal_infeasibility": 2.5595494078020857e-08, + "dual_infeasibility": 1.5712483353179885e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 24.409408122, + "problem_class": "SDP" + } + }, + { + "id": 2025, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:12", + "solve_time": 1.319443941116333, + "status": "OPTIMAL", + "primal_objective_value": 44.943516455354754, + "dual_objective_value": 44.94351577687856, + "duality_gap": 6.784761907852044e-07, + "primal_infeasibility": 6.165359139962672e-08, + "dual_infeasibility": 2.922917563468684e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2282, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:30:58", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2284, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:00", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2285, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:01", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2283, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:30:59", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2026, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:33", + "solve_time": 20.59488797187805, + "status": "OPTIMAL", + "primal_objective_value": 44.943699547453214, + "dual_objective_value": 44.94369974548657, + "duality_gap": -1.9803335504775532e-07, + "primal_infeasibility": 8.108289283382372e-07, + "dual_infeasibility": 1.6016297568809636e-06, + "iterations": 19450, + "memo": { + "solver_solve_time": 20.583261750000002, + "problem_class": "SDP" + } + }, + { + "id": 2023, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp100", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:39:45", + "solve_time": 0.4165680408477783, + "status": "OPTIMAL", + "primal_objective_value": 44.94355314399055, + "dual_objective_value": 44.943550479204376, + "duality_gap": 2.6647861730566547e-06, + "primal_infeasibility": 2.1521573192501864e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1878, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -12794,29 +31499,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:09:21", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 625, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "torusg3-15", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:51:34", + "solve_time": 0.44436095833333333, + "status": "OPTIMAL", + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.44436095833333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 44.94354787139288, + "dual_objective_value": 44.943548863521535, + "duality_gap": 9.921286547864838e-07, + "primal_infeasibility": 2.734211981964889e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:51:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1865, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -12838,29 +31570,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:09:21", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 626, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "torusg3-15", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:53", + "solve_time": 0.7721935, + "status": "NUM_ERROR", + "primal_objective_value": 44.94351945079613, + "dual_objective_value": 44.943668273606576, + "duality_gap": 0.0001488228104449263, + "primal_infeasibility": 3.6371368159315026e-07, + "dual_infeasibility": 1.8043086007717958e-08, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.7721935, + "setup_time": [], + "iterations": 21, + "primal_objective_value": 44.94351945079613, + "dual_objective_value": 44.943668273606576, + "duality_gap": 0.0001488228104449263, + "primal_infeasibility": 3.6371368159315026e-07, + "dual_infeasibility": 1.8043086007717958e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:50", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2286, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -12882,14 +31641,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:09:21", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:31:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -12897,14 +31659,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1677, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "torusg3-15", + "id": 2028, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -12926,29 +31693,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:29:50", - "solve_time": 96.853589375, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:41:48", + "solve_time": 73.53240489959717, "status": "OPTIMAL", - "primal_objective_value": -318810925.66454315, - "dual_objective_value": -318810927.37935495, - "duality_gap": 1.7148118019104004, - "primal_infeasibility": 3.472238775909382e-13, - "dual_infeasibility": 0.0, - "iterations": 16 - }, - { - "id": 627, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "torusg3-15", + "primal_objective_value": 7.343057048260827, + "dual_objective_value": 7.343056996265297, + "duality_gap": 5.199553054779926e-08, + "primal_infeasibility": 1.2959915647658356e-08, + "dual_infeasibility": 2.9534277759680858e-09, + "iterations": 30, + "memo": { + "solver_solve_time": 73.514996203, + "problem_class": "SDP" + } + }, + { + "id": 2029, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -12970,29 +31744,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:09:21", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 617, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:41:52", + "solve_time": 2.941185235977173, + "status": "OPTIMAL", + "primal_objective_value": 7.343069474100868, + "dual_objective_value": 7.343069487135349, + "duality_gap": -1.3034481050056002e-08, + "primal_infeasibility": 5.133479828232705e-09, + "dual_infeasibility": 7.610058312761891e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2287, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13014,14 +31796,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:06:36", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:08", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13029,14 +31814,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 618, + "id": 2289, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13058,14 +31848,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:06:36", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:10", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13073,14 +31866,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 619, + "id": 2290, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13102,14 +31900,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:06:36", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13117,14 +31918,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 620, + "id": 2288, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13146,14 +31952,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:06:36", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:09", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13161,14 +31970,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1676, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "id": 2030, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13190,29 +32004,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:28:05", - "solve_time": 1.9698861666666667, - "status": "OPTIMAL", - "primal_objective_value": -48340945.86330335, - "dual_objective_value": -48340945.949232884, - "duality_gap": 0.08592953532934189, - "primal_infeasibility": 3.430228268358133e-11, - "dual_infeasibility": 0.0, - "iterations": 15 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:43:52", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1545, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "id": 2027, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13234,29 +32055,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:03:39", - "solve_time": 8.568708083333334, - "status": "OPTIMAL", - "primal_objective_value": -48340945.69408667, - "dual_objective_value": -48340945.69332005, - "duality_gap": 0.0007666200399398804, - "primal_infeasibility": 1.6106946788226167e-09, - "dual_infeasibility": 3.269120548119365e-16, - "iterations": 19 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:40:34", + "solve_time": 0.6313779354095459, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 7.343079595579098, + "dual_objective_value": 7.343076185089177, + "duality_gap": 3.4104899215847695e-06, + "primal_infeasibility": 2.927273492503322e-06, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 621, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "torusg3-8", + "id": 1840, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13278,29 +32107,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:06:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 610, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:10", + "solve_time": 0.5800415, + "status": "OPTIMAL", + "primal_objective_value": 7.343075216995572, + "dual_objective_value": 7.343075708069313, + "duality_gap": 4.910737407826105e-07, + "primal_infeasibility": 3.445685296414346e-11, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5800415, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 7.343075216995572, + "dual_objective_value": 7.343075708069313, + "duality_gap": 4.910737407826105e-07, + "primal_infeasibility": 3.445685296414346e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1866, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13322,29 +32178,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:05:30", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 611, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:59", + "solve_time": 1.011289, + "status": "NUM_ERROR", + "primal_objective_value": 7.343040041853136, + "dual_objective_value": 7.343323197544134, + "duality_gap": 0.00028315569099746085, + "primal_infeasibility": 4.6273048261564336e-07, + "dual_infeasibility": 6.076241571456934e-08, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.011289, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 7.343040041853136, + "dual_objective_value": 7.343323197544134, + "duality_gap": 0.00028315569099746085, + "primal_infeasibility": 4.6273048261564336e-07, + "dual_infeasibility": 6.076241571456934e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:56", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2291, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "gpp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13366,14 +32249,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:05:30", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:12", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13381,14 +32267,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 612, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "id": 2032, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13410,29 +32301,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:05:30", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 613, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:45:03", + "solve_time": 69.69699668884277, + "status": "OPTIMAL", + "primal_objective_value": 46.862264832079795, + "dual_objective_value": 46.86226449534972, + "duality_gap": 3.3673007493462137e-07, + "primal_infeasibility": 2.5135826306059297e-08, + "dual_infeasibility": 8.998138869898386e-10, + "iterations": 28, + "memo": { + "solver_solve_time": 69.679521045, + "problem_class": "SDP" + } + }, + { + "id": 2033, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13454,29 +32352,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:05:31", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 609, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:45:06", + "solve_time": 2.4338388442993164, + "status": "OPTIMAL", + "primal_objective_value": 46.86227168740106, + "dual_objective_value": 46.86227113257759, + "duality_gap": 5.548234724983558e-07, + "primal_infeasibility": 4.6663936113070845e-08, + "dual_infeasibility": 2.3688111053568684e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2292, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13498,29 +32404,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:04:34", - "solve_time": 75.3174741268158, - "status": "OPTIMAL", - "primal_objective_value": -3474.794059052365, - "dual_objective_value": -3474.7940824213174, - "duality_gap": 2.336895249754889e-05, - "primal_infeasibility": 2.319714150200321e-12, - "dual_infeasibility": 0.0, - "iterations": 15 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 614, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "toruspm3-15-50", + "id": 2294, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13542,14 +32456,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:05:31", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13557,14 +32474,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 604, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "id": 2295, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13586,14 +32508,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:02:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13601,14 +32526,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 605, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "id": 2293, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13630,14 +32560,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:02:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:14", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13645,14 +32578,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 606, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "id": 2034, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13674,29 +32612,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:02:28", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:47:06", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 607, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "id": 2031, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13718,29 +32663,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:02:28", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:43:53", + "solve_time": 0.614959716796875, + "status": "OPTIMAL", + "primal_objective_value": 46.8622983506127, + "dual_objective_value": 46.862295004806455, + "duality_gap": 3.345806241839e-06, + "primal_infeasibility": 1.373933037186379e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 602, + "id": 1841, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13762,29 +32715,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T09:59:50", - "solve_time": 6.541438102722168, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:15", + "solve_time": 0.5533539166666667, "status": "OPTIMAL", - "primal_objective_value": -527.808660710369, - "dual_objective_value": -527.8086632131733, - "duality_gap": 2.502804250070767e-06, - "primal_infeasibility": 1.4509650835086007e-11, + "primal_objective_value": 46.86229340823787, + "dual_objective_value": 46.86229387971365, + "duality_gap": 4.7147577930672924e-07, + "primal_infeasibility": 1.2319438807287507e-10, "dual_infeasibility": 0.0, - "iterations": 14 - }, - { - "id": 1582, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5533539166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 46.86229340823787, + "dual_objective_value": 46.86229387971365, + "duality_gap": 4.7147577930672924e-07, + "primal_infeasibility": 1.2319438807287507e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1867, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13806,29 +32786,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:37:03", - "solve_time": 7.601006166666667, - "status": "OPTIMAL", - "primal_objective_value": -527.8086592434917, - "dual_objective_value": -527.8086592306726, - "duality_gap": 1.281910044781398e-08, - "primal_infeasibility": 2.098791477322716e-09, - "dual_infeasibility": 5.187620354134206e-11, - "iterations": 18 - }, - { - "id": 608, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:05", + "solve_time": 1.067351625, + "status": "NUM_ERROR", + "primal_objective_value": 46.8623007758379, + "dual_objective_value": 46.862310357065084, + "duality_gap": 9.581227182309249e-06, + "primal_infeasibility": 2.602493957176677e-07, + "dual_infeasibility": 4.4461266039776315e-09, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.067351625, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 46.8623007758379, + "dual_objective_value": 46.862310357065084, + "duality_gap": 9.581227182309249e-06, + "primal_infeasibility": 2.602493957176677e-07, + "dual_infeasibility": 4.4461266039776315e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:02", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2296, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "toruspm3-8-50", + "problem_library": "SDPLIB", + "problem_name": "gpp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13850,14 +32857,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:02:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:16", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -13865,14 +32875,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 630, + "id": 2036, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13894,29 +32909,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:32", - "solve_time": 0.4248371124267578, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 132.63530797336855, - "dual_objective_value": 132.6353098328787, - "duality_gap": -1.8595101494156552e-06, - "primal_infeasibility": 2.976961436986348e-06, - "dual_infeasibility": 6.742415211712427e-08, - "iterations": 19 - }, - { - "id": 631, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:48:14", + "solve_time": 66.16559410095215, + "status": "OPTIMAL", + "primal_objective_value": 153.01408663697256, + "dual_objective_value": 153.01408542136193, + "duality_gap": 1.2156106379279663e-06, + "primal_infeasibility": 5.2151548589389365e-08, + "dual_infeasibility": 8.00066489003644e-10, + "iterations": 27, + "memo": { + "solver_solve_time": 66.147987458, + "problem_class": "SDP" + } + }, + { + "id": 2037, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -13938,73 +32960,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:43", - "solve_time": 1.2074768543243408, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:48:17", + "solve_time": 2.3794949054718018, "status": "OPTIMAL", - "primal_objective_value": 132.63567622801477, - "dual_objective_value": 132.63567623702812, - "duality_gap": -9.013348289954592e-09, - "primal_infeasibility": 1.4353448618618097e-08, - "dual_infeasibility": 3.018302548232494e-10, - "iterations": null - }, - { - "id": 632, + "primal_objective_value": 153.01408360362933, + "dual_objective_value": 153.01408174526287, + "duality_gap": 1.8583664598281757e-06, + "primal_infeasibility": 6.848434744436384e-08, + "dual_infeasibility": 1.717152917121848e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2297, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "DIMACS", - "problem_name": "truss5", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 633, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14026,14 +33012,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:43", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:17", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14041,14 +33030,71 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 634, + "id": 2299, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:19", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2300, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14070,14 +33116,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:43", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14085,14 +33134,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 635, + "id": 2298, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14114,14 +33168,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:12:43", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14129,14 +33186,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 636, + "id": 2038, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", - "problem_library": "DIMACS", - "problem_name": "truss5", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14158,29 +33220,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:13:05", - "solve_time": 21.932883977890015, - "status": "OPTIMAL", - "primal_objective_value": 132.67032214278458, - "dual_objective_value": 132.67032627913713, - "duality_gap": -4.136352544037436e-06, - "primal_infeasibility": 2.4188989473182798e-06, - "dual_infeasibility": 0.0024103317967444286, - "iterations": 83675 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:50:17", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 637, + "id": 2035, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14202,29 +33271,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:13:05", - "solve_time": 0.15076208114624023, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:47:08", + "solve_time": 0.6218161582946777, "status": "OPTIMAL", - "primal_objective_value": 132.6356794538592, - "dual_objective_value": 132.63567502877504, - "duality_gap": 4.425084171089111e-06, - "primal_infeasibility": 6.293316373095602e-11, + "primal_objective_value": 153.01412733964798, + "dual_objective_value": 153.01412720660855, + "duality_gap": 1.33039435468163e-07, + "primal_infeasibility": 8.311483119261992e-09, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1708, + "id": 1842, "solver_name": "matlab_sdpt3", - "solver_version": "unknown", - "problem_library": "DIMACS", - "problem_name": "truss5", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14246,29 +33323,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:37:09", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1575, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:21", + "solve_time": 0.522561625, + "status": "OPTIMAL", + "primal_objective_value": 153.014122916332, + "dual_objective_value": 153.01412446660885, + "duality_gap": 1.550276834905162e-06, + "primal_infeasibility": 4.152400563581602e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.522561625, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 153.014122916332, + "dual_objective_value": 153.01412446660885, + "duality_gap": 1.550276834905162e-06, + "primal_infeasibility": 4.152400563581602e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:18", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1868, "solver_name": "matlab_sedumi", - "solver_version": "unknown", - "problem_library": "DIMACS", - "problem_name": "truss5", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14290,29 +33394,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:42", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 638, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:12", + "solve_time": 1.3415220833333332, + "status": "NUM_ERROR", + "primal_objective_value": 153.01413111066205, + "dual_objective_value": 153.0141433591371, + "duality_gap": 1.2248475059095654e-05, + "primal_infeasibility": 3.772924496141658e-07, + "dual_infeasibility": 1.4242436509417165e-09, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.3415220833333332, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 153.01413111066205, + "dual_objective_value": 153.0141433591371, + "duality_gap": 1.2248475059095654e-05, + "primal_infeasibility": 3.772924496141658e-07, + "dual_infeasibility": 1.4242436509417165e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2301, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "truss5", + "problem_library": "SDPLIB", + "problem_name": "gpp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14334,14 +33465,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:13:05", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14349,14 +33483,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 641, + "id": 2040, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14378,29 +33517,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:25", - "solve_time": 7.333973407745361, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:51:54", + "solve_time": 95.07492804527283, "status": "OPTIMAL", - "primal_objective_value": 133.11452300392386, - "dual_objective_value": 133.1145231602386, - "duality_gap": -1.5631474070687545e-07, - "primal_infeasibility": 5.880442946566506e-07, - "dual_infeasibility": 2.416827226267145e-08, - "iterations": 20 - }, - { - "id": 642, + "primal_objective_value": 418.9875424590275, + "dual_objective_value": 418.9875415105999, + "duality_gap": 9.484276120019786e-07, + "primal_infeasibility": 4.418241810753433e-08, + "dual_infeasibility": 1.0871892833263688e-09, + "iterations": 32, + "memo": { + "solver_solve_time": 95.058631418, + "problem_class": "SDP" + } + }, + { + "id": 2041, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14422,29 +33568,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:30", - "solve_time": 4.541913032531738, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:51:58", + "solve_time": 2.832003116607666, "status": "OPTIMAL", - "primal_objective_value": 133.11458873614384, - "dual_objective_value": 133.11458873454836, - "duality_gap": 1.5954810805851594e-09, - "primal_infeasibility": 5.1857958079351704e-09, - "dual_infeasibility": 9.454734908598581e-11, - "iterations": null + "primal_objective_value": 418.98746606964215, + "dual_objective_value": 418.98746467361104, + "duality_gap": 1.3960311093796918e-06, + "primal_infeasibility": 3.372914105987499e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 643, + "id": 2302, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14466,14 +33620,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:30", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14481,14 +33638,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 644, + "id": 2304, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14510,14 +33672,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:30", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:24", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14525,14 +33690,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 645, + "id": 2305, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14554,14 +33724,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:30", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14569,14 +33742,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 646, + "id": 2303, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14598,14 +33776,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:14:30", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14613,14 +33794,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 647, + "id": 2042, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", - "problem_library": "DIMACS", - "problem_name": "truss8", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14642,29 +33828,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:15:48", - "solve_time": 78.31024694442749, - "status": "OPTIMAL", - "primal_objective_value": 133.206421971091, - "dual_objective_value": 133.2064255039062, - "duality_gap": -3.532815185280924e-06, - "primal_infeasibility": 1.809776268177368e-06, - "dual_infeasibility": 0.0026429235860219477, - "iterations": 90650 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:53:58", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 648, + "id": 2039, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14686,29 +33879,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:15:49", - "solve_time": 0.618751049041748, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:50:18", + "solve_time": 0.6177799701690674, "status": "OPTIMAL", - "primal_objective_value": 133.11459453047246, - "dual_objective_value": 133.11459273039674, - "duality_gap": 1.8000757222580432e-06, - "primal_infeasibility": 1.4560143550748557e-10, - "dual_infeasibility": 2.0041502554605766e-08, - "iterations": null + "primal_objective_value": 418.9876329576085, + "dual_objective_value": 418.987623002338, + "duality_gap": 9.955270513728465e-06, + "primal_infeasibility": 1.1983390832123164e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1709, + "id": 1843, "solver_name": "matlab_sdpt3", - "solver_version": "unknown", - "problem_library": "DIMACS", - "problem_name": "truss8", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14730,29 +33931,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:37:13", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1576, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:27", + "solve_time": 0.7190450416666667, + "status": "OPTIMAL", + "primal_objective_value": 418.98759463635133, + "dual_objective_value": 418.98760998623175, + "duality_gap": 1.534988041385077e-05, + "primal_infeasibility": 5.62265250487158e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7190450416666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 418.98759463635133, + "dual_objective_value": 418.98760998623175, + "duality_gap": 1.534988041385077e-05, + "primal_infeasibility": 5.62265250487158e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1869, "solver_name": "matlab_sedumi", - "solver_version": "unknown", - "problem_library": "DIMACS", - "problem_name": "truss8", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14774,29 +34002,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:47", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 649, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:19", + "solve_time": 1.2991055833333334, + "status": "NUM_ERROR", + "primal_objective_value": 418.9877644444689, + "dual_objective_value": 418.9878255927038, + "duality_gap": 6.114823491998322e-05, + "primal_infeasibility": 4.115301077190911e-07, + "dual_infeasibility": 3.607218879110399e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.2991055833333334, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 418.9877644444689, + "dual_objective_value": 418.9878255927038, + "duality_gap": 6.114823491998322e-05, + "primal_infeasibility": 4.115301077190911e-07, + "dual_infeasibility": 3.607218879110399e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2306, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", - "problem_library": "DIMACS", - "problem_name": "truss8", + "problem_library": "SDPLIB", + "problem_name": "gpp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14818,14 +34073,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:15:49", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -14833,14 +34091,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1384, + "id": 2044, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14862,29 +34125,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:12:17", - "solve_time": 8.206942081451416, - "status": "OPTIMAL", - "primal_objective_value": -0.5665172821147114, - "dual_objective_value": -0.5665172817725594, - "duality_gap": -3.421519734203571e-10, - "primal_infeasibility": 1.022967781834959e-07, - "dual_infeasibility": 0.0, - "iterations": 22 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:56:02", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 653, + "id": 2045, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14906,29 +34176,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:17:22", - "solve_time": 8.43869686126709, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:56:18", + "solve_time": 14.727091073989868, "status": "OPTIMAL", - "primal_objective_value": -0.5665172762101253, - "dual_objective_value": -0.5665172760832871, - "duality_gap": -1.2683820660441825e-10, - "primal_infeasibility": 2.9533438966925347e-08, - "dual_infeasibility": 4.1854682344393564e-13, - "iterations": null - }, - { - "id": 1385, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "primal_objective_value": 15.444900580063722, + "dual_objective_value": 15.444900197302442, + "duality_gap": 3.827612804485625e-07, + "primal_infeasibility": 3.879457797449652e-08, + "dual_infeasibility": 3.257714081782618e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2307, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14950,29 +34228,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:12:25", - "solve_time": 8.386672973632812, - "status": "OPTIMAL", - "primal_objective_value": -0.5665172762101253, - "dual_objective_value": -0.5665172760832871, - "duality_gap": -1.2683820660441825e-10, - "primal_infeasibility": 2.9533438966925347e-08, - "dual_infeasibility": 4.1854682344393564e-13, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:27", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 654, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2309, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -14994,14 +34280,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:17:22", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:29", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15009,14 +34298,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 655, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2310, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15038,14 +34332,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:17:22", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:30", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15053,14 +34350,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 656, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2308, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15082,14 +34384,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:17:22", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:28", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15097,14 +34402,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 657, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2046, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:58:18", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2043, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15126,29 +34487,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:17:22", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:54:01", + "solve_time": 2.738187074661255, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 15.446607847213254, + "dual_objective_value": 15.44490872745331, + "duality_gap": 0.001699119759944523, + "primal_infeasibility": 2.093336410893669e-07, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 658, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1844, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15170,29 +34539,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:21:23", - "solve_time": 3.5877089500427246, - "status": "OPTIMAL", - "primal_objective_value": -0.566517267707974, - "dual_objective_value": -0.5665172734748258, - "duality_gap": 5.766851884914104e-09, - "primal_infeasibility": 6.702895394246997e-09, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1597, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:33", + "solve_time": 1.305260125, + "status": "UNKNOWN", + "primal_objective_value": 15.444916745668474, + "dual_objective_value": 15.444916791369133, + "duality_gap": 4.5700659256908693e-08, + "primal_infeasibility": 8.619595094369608e-12, + "dual_infeasibility": 1.5998195761311495e-13, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 1.305260125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": 15.444916745668474, + "dual_objective_value": 15.444916791369133, + "duality_gap": 4.5700659256908693e-08, + "primal_infeasibility": 8.619595094369608e-12, + "dual_infeasibility": 1.5998195761311495e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1870, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15214,29 +34610,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:06", - "solve_time": 1.89119475, - "status": "OPTIMAL", - "primal_objective_value": -0.5665172706450547, - "dual_objective_value": -0.5665172738234687, - "duality_gap": 3.1784139764567954e-09, - "primal_infeasibility": 3.331523558890798e-09, - "dual_infeasibility": 0.0, - "iterations": 26 - }, - { - "id": 1462, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:27", + "solve_time": 3.5781583333333336, + "status": "NUM_ERROR", + "primal_objective_value": 15.444884449808155, + "dual_objective_value": 15.4450291912657, + "duality_gap": 0.00014474145754483914, + "primal_infeasibility": 7.773040500979703e-07, + "dual_infeasibility": 9.678959317803167e-09, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.5781583333333336, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 15.444884449808155, + "dual_objective_value": 15.4450291912657, + "duality_gap": 0.00014474145754483914, + "primal_infeasibility": 7.773040500979703e-07, + "dual_infeasibility": 9.678959317803167e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:25", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2311, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15258,29 +34681,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:37:38", - "solve_time": 2.2475020833333335, - "status": "OPTIMAL", - "primal_objective_value": -0.5665172725671985, - "dual_objective_value": -0.5665172736468338, - "duality_gap": 1.0796352700737089e-09, - "primal_infeasibility": 8.490926777938654e-10, - "dual_infeasibility": 0.0, - "iterations": 31 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 659, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2048, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch0", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15302,29 +34733,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:21:38", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:00:23", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 662, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2049, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15346,29 +34784,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:22:51", - "solve_time": 5.150921821594238, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:00:39", + "solve_time": 15.732684135437012, "status": "OPTIMAL", - "primal_objective_value": -0.6715154099679571, - "dual_objective_value": -0.6715154097625702, - "duality_gap": -2.0538692968585792e-10, - "primal_infeasibility": 3.512925202723288e-08, - "dual_infeasibility": 0.0, - "iterations": 24 - }, - { - "id": 663, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "primal_objective_value": 81.86892758846523, + "dual_objective_value": 81.86892640326104, + "duality_gap": 1.1852041836846183e-06, + "primal_infeasibility": 6.319784139238923e-08, + "dual_infeasibility": 2.534971057205083e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2312, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15390,29 +34836,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:22:59", - "solve_time": 7.646672964096069, - "status": "OPTIMAL", - "primal_objective_value": -0.6715154087273556, - "dual_objective_value": -0.6715154086542251, - "duality_gap": -7.313050165436152e-11, - "primal_infeasibility": 1.1755370688932572e-08, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 665, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2314, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15434,14 +34888,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:34", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15449,14 +34906,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 666, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2315, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15478,14 +34940,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:35", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15493,14 +34958,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 667, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2313, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15522,14 +34992,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15537,14 +35010,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 668, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2050, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15566,29 +35044,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:13", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:02:39", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 664, + "id": 2047, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15610,29 +35095,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:03", - "solve_time": 3.7065846920013428, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.6715149919393316, - "dual_objective_value": -0.6715154519149769, - "duality_gap": 4.599756452394743e-07, - "primal_infeasibility": 9.880028136196605e-10, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T12:58:21", + "solve_time": 2.771937131881714, + "status": "OPTIMAL", + "primal_objective_value": 81.86896145123242, + "dual_objective_value": 81.86895868580729, + "duality_gap": 2.765425136885824e-06, + "primal_infeasibility": 4.495223038672261e-13, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1598, + "id": 1845, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15654,29 +35147,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:13", - "solve_time": 1.86828275, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:41", + "solve_time": 1.0700413333333334, "status": "OPTIMAL", - "primal_objective_value": -0.6715154042243952, - "dual_objective_value": -0.6715154083287945, - "duality_gap": 4.104399375925993e-09, - "primal_infeasibility": 3.403005752654008e-10, - "dual_infeasibility": 0.0, - "iterations": 24 - }, - { - "id": 1463, + "primal_objective_value": 81.86895604876402, + "dual_objective_value": 81.86895743427542, + "duality_gap": 1.385511396279071e-06, + "primal_infeasibility": 1.2930217037292772e-10, + "dual_infeasibility": 1.5507764493660058e-14, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0700413333333334, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 81.86895604876402, + "dual_objective_value": 81.86895743427542, + "duality_gap": 1.385511396279071e-06, + "primal_infeasibility": 1.2930217037292772e-10, + "dual_infeasibility": 1.5507764493660058e-14, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1871, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15698,29 +35218,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:37:45", - "solve_time": 1.7373145833333334, - "status": "OPTIMAL", - "primal_objective_value": -0.6715153908899425, - "dual_objective_value": -0.6715153884008259, - "duality_gap": 2.4891165795182246e-09, - "primal_infeasibility": 2.8865480120764807e-09, - "dual_infeasibility": 6.157079870441952e-11, - "iterations": 27 - }, - { - "id": 669, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:36", + "solve_time": 3.7947375416666667, + "status": "NUM_ERROR", + "primal_objective_value": 81.86902025037489, + "dual_objective_value": 81.86944910336783, + "duality_gap": 0.00042885299293971, + "primal_infeasibility": 4.94138352678929e-07, + "dual_infeasibility": 1.1701289111328567e-08, + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.7947375416666667, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 81.86902025037489, + "dual_objective_value": 81.86944910336783, + "duality_gap": 0.00042885299293971, + "primal_infeasibility": 4.94138352678929e-07, + "dual_infeasibility": 1.1701289111328567e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2316, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "arch2", + "problem_name": "gpp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15742,14 +35289,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:23:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:36", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15757,14 +35307,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 672, + "id": 2052, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15786,29 +35341,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:32", - "solve_time": 4.8658952713012695, - "status": "OPTIMAL", - "primal_objective_value": -0.9726274329610303, - "dual_objective_value": -0.9726274322104886, - "duality_gap": -7.505416288466904e-10, - "primal_infeasibility": 1.1813692812382962e-07, - "dual_infeasibility": 0.0, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:04:44", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 673, + "id": 2053, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15830,29 +35392,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:40", - "solve_time": 7.340211868286133, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:04:59", + "solve_time": 14.465261220932007, "status": "OPTIMAL", - "primal_objective_value": -0.9726274304903915, - "dual_objective_value": -0.9726274299150273, - "duality_gap": -5.753642007277904e-10, - "primal_infeasibility": 7.421682204955683e-08, - "dual_infeasibility": 2.5603242314031326e-13, - "iterations": null - }, - { - "id": 674, + "primal_objective_value": 303.5392513049725, + "dual_objective_value": 303.53924845771263, + "duality_gap": 2.8472598501139146e-06, + "primal_infeasibility": 7.080286602904634e-08, + "dual_infeasibility": 8.487394573341143e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2317, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15874,14 +35444,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15889,14 +35462,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 675, + "id": 2319, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15918,14 +35496,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:39", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15933,14 +35514,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 676, + "id": 2320, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -15962,14 +35548,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:40", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -15977,14 +35566,122 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 677, + "id": 2318, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:38", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2054, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:06:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2051, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "problem_library": "SDPLIB", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16006,29 +35703,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:40", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:02:43", + "solve_time": 2.7531580924987793, + "status": "OPTIMAL", + "primal_objective_value": 303.5393343673693, + "dual_objective_value": 303.5393239344627, + "duality_gap": 1.0432906606183678e-05, + "primal_infeasibility": 3.293294155188434e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 678, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1846, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16050,29 +35755,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:44", - "solve_time": 3.6738202571868896, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.9726272676562057, - "dual_objective_value": -0.9726274431143305, - "duality_gap": 1.7545812480701528e-07, - "primal_infeasibility": 6.41651460356969e-10, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:48", + "solve_time": 1.0686595833333334, + "status": "OPTIMAL", + "primal_objective_value": 303.5393167017354, + "dual_objective_value": 303.5393198675198, + "duality_gap": 3.1657843919674633e-06, + "primal_infeasibility": 3.327821459253514e-10, "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1599, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0686595833333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 303.5393167017354, + "dual_objective_value": 303.5393198675198, + "duality_gap": 3.1657843919674633e-06, + "primal_infeasibility": 3.327821459253514e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:45", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1872, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16094,29 +35826,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:20", - "solve_time": 1.705317875, - "status": "OPTIMAL", - "primal_objective_value": -0.97262741117333, - "dual_objective_value": -0.972627418748867, - "duality_gap": 7.57553708652381e-09, - "primal_infeasibility": 8.514427642381836e-10, - "dual_infeasibility": 0.0, - "iterations": 22 - }, - { - "id": 1464, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:46", + "solve_time": 4.021484041666667, + "status": "NUM_ERROR", + "primal_objective_value": 303.53929877505766, + "dual_objective_value": 303.540211904581, + "duality_gap": 0.0009131295233260062, + "primal_infeasibility": 5.409184861944874e-07, + "dual_infeasibility": 5.977453961703577e-09, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 4.021484041666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 303.53929877505766, + "dual_objective_value": 303.540211904581, + "duality_gap": 0.0009131295233260062, + "primal_infeasibility": 5.409184861944874e-07, + "dual_infeasibility": 5.977453961703577e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2321, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16138,29 +35897,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:37:52", - "solve_time": 1.874344125, - "status": "OPTIMAL", - "primal_objective_value": -0.9726274178595536, - "dual_objective_value": -0.9726274178395272, - "duality_gap": 2.00264249627935e-11, - "primal_infeasibility": 2.8576206940232703e-09, - "dual_infeasibility": 0.0, - "iterations": 29 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 679, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2056, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch4", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16182,29 +35949,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:26:44", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:09:04", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 682, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2057, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16226,29 +36000,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:09", - "solve_time": 5.211400032043457, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:09:20", + "solve_time": 14.835282802581787, "status": "OPTIMAL", - "primal_objective_value": -7.056985719383242, - "dual_objective_value": -7.0569856944182865, - "duality_gap": -2.4964955436246328e-08, - "primal_infeasibility": 2.7109763353502106e-06, - "dual_infeasibility": 0.0, - "iterations": 24 - }, - { - "id": 683, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "primal_objective_value": 747.328215683326, + "dual_objective_value": 747.3282126610573, + "duality_gap": 3.022268742824963e-06, + "primal_infeasibility": 4.0097982702259803e-08, + "dual_infeasibility": 1.144431183059174e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2322, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16270,29 +36052,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:17", - "solve_time": 8.097594976425171, - "status": "OPTIMAL", - "primal_objective_value": -7.056980177129674, - "dual_objective_value": -7.056980175019456, - "duality_gap": -2.1102177782950093e-09, - "primal_infeasibility": 8.034408651651353e-08, - "dual_infeasibility": 1.259191489724154e-12, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:43", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 685, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2324, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16314,14 +36104,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:45", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16329,14 +36122,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 686, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2325, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16358,14 +36156,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:46", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16373,14 +36174,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 687, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2323, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16402,14 +36208,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:44", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16417,14 +36226,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 688, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2058, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16446,29 +36260,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:28", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:11:20", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 684, + "id": 2055, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16490,29 +36311,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:21", - "solve_time": 3.7246809005737305, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -7.056979925817409, - "dual_objective_value": -7.056980053305484, - "duality_gap": 1.2748807520779337e-07, - "primal_infeasibility": 1.428558638956882e-08, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:07:03", + "solve_time": 2.731801986694336, + "status": "OPTIMAL", + "primal_objective_value": 747.3283200675708, + "dual_objective_value": 747.3283086121074, + "duality_gap": 1.1455463322818105e-05, + "primal_infeasibility": 2.765810017928616e-11, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1600, + "id": 1847, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16534,29 +36363,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:27", - "solve_time": 1.4575445, - "status": "UNKNOWN", - "primal_objective_value": -7.056980018798058, - "dual_objective_value": -7.056980042117708, - "duality_gap": 2.331965021085125e-08, - "primal_infeasibility": 1.4104717965201591e-08, - "dual_infeasibility": 3.5687676151979556e-13, - "iterations": 25 - }, - { - "id": 1465, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:41:54", + "solve_time": 0.9967734583333333, + "status": "OPTIMAL", + "primal_objective_value": 747.3283058391797, + "dual_objective_value": 747.3283049708084, + "duality_gap": 8.683713303980767e-07, + "primal_infeasibility": 2.2452130375841572e-10, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9967734583333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 747.3283058391797, + "dual_objective_value": 747.3283049708084, + "duality_gap": 8.683713303980767e-07, + "primal_infeasibility": 2.2452130375841572e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:41:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1873, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16578,29 +36434,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:01", - "solve_time": 3.12848525, - "status": "OPTIMAL", - "primal_objective_value": -7.056980043548424, - "dual_objective_value": -7.056980043508659, - "duality_gap": 3.976463602839431e-11, - "primal_infeasibility": 3.648550476043381e-09, - "dual_infeasibility": 0.0, - "iterations": 34 - }, - { - "id": 689, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:45:55", + "solve_time": 3.3964448333333332, + "status": "NUM_ERROR", + "primal_objective_value": 747.328611326081, + "dual_objective_value": 747.3286056221518, + "duality_gap": 5.703929218725534e-06, + "primal_infeasibility": 1.5891172434487362e-06, + "dual_infeasibility": 1.0336478520663563e-09, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 3.3964448333333332, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 747.328611326081, + "dual_objective_value": 747.3286056221518, + "duality_gap": 5.703929218725534e-06, + "primal_infeasibility": 1.5891172434487362e-06, + "dual_infeasibility": 1.0336478520663563e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:45:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2326, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "arch8", + "problem_name": "gpp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16622,14 +36505,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:28:28", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:47", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16637,14 +36523,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 692, + "id": 2060, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16666,29 +36557,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:38", - "solve_time": 0.014431953430175781, - "status": "OPTIMAL", - "primal_objective_value": -18.057693540129556, - "dual_objective_value": -18.05769338831607, - "duality_gap": -1.5181348445025833e-07, - "primal_infeasibility": 0.02414985830941088, - "dual_infeasibility": 0.0, - "iterations": 56 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:12:04", + "solve_time": 28.537490129470825, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:11:36 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:11:36 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:11:36 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:11:36 - python_solver_runner - INFO - Subprocess solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - python_solver_runner - INFO - Solving gpp500-1 with cvxpy_clarabel\n2025-08-04 22:11:36 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:11:36 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-1.dat-s\n2025-08-04 22:11:36 - dat_loader - INFO - Converted gpp500-1: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:11:36 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-1', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } }, { - "id": 694, + "id": 2061, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16710,29 +36609,89 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", - "solve_time": 0.16951608657836914, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:14:04", + "solve_time": 117.96824312210083, + "status": "OPTIMAL", + "primal_objective_value": 25.320526674810647, + "dual_objective_value": 25.32052637938557, + "duality_gap": 2.954250781783685e-07, + "primal_infeasibility": 2.1919175642173723e-08, + "dual_infeasibility": 8.274734152904314e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2327, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "gpp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:48", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 695, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2329, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16754,14 +36713,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16769,14 +36731,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 696, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2330, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16798,14 +36765,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16813,14 +36783,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 697, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2328, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16842,14 +36817,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -16857,14 +36835,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 698, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2062, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16886,29 +36869,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:04", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 693, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 2059, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16930,29 +36920,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:39", - "solve_time": 0.9244139194488525, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.002878232961825694, - "dual_objective_value": -20.48065620588266, - "duality_gap": 20.477777972920833, - "primal_infeasibility": 0.27819661314555105, - "dual_infeasibility": 546368.1134344704, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:11:36", + "solve_time": 14.758704900741577, + "status": "OPTIMAL", + "primal_objective_value": 25.32054457240321, + "dual_objective_value": 25.320543492733886, + "duality_gap": 1.079669324610677e-06, + "primal_infeasibility": 1.3074092923281278e-11, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 699, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1848, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -16974,29 +36972,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", - "solve_time": 0.011685848236083984, - "status": "OPTIMAL", - "primal_objective_value": -17.78462618700244, - "dual_objective_value": -17.784627142638215, - "duality_gap": 9.556357731810294e-07, - "primal_infeasibility": 1.9992999166489883e-09, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1629, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:04", + "solve_time": 2.947858166666667, + "status": "NUM_ERROR", + "primal_objective_value": 25.320546265113887, + "dual_objective_value": 25.320543834359203, + "duality_gap": 2.430754683757641e-06, + "primal_infeasibility": 3.084055027579803e-14, + "dual_infeasibility": 1.140507524262097e-12, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "num_error", + "solve_time": 2.947858166666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 25.320546265113887, + "dual_objective_value": 25.320543834359203, + "duality_gap": 2.430754683757641e-06, + "primal_infeasibility": 3.084055027579803e-14, + "dual_infeasibility": 1.140507524262097e-12, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:01", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1874, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17018,29 +37043,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:57", - "solve_time": 0.29932166666666665, - "status": "OPTIMAL", - "primal_objective_value": -17.78462660868152, - "dual_objective_value": -17.784626742725198, - "duality_gap": 1.3404367749103585e-07, - "primal_infeasibility": 6.1483802884653124e-09, - "dual_infeasibility": 0.0, - "iterations": 17 - }, - { - "id": 1499, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:46:18", + "solve_time": 15.377118958333334, + "status": "NUM_ERROR", + "primal_objective_value": 25.320632841703226, + "dual_objective_value": 25.322930361468835, + "duality_gap": 0.0022975197656087687, + "primal_infeasibility": 1.1452090235982779e-06, + "dual_infeasibility": 3.397050009105795e-08, + "iterations": 28, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.377118958333334, + "setup_time": [], + "iterations": 28, + "primal_objective_value": 25.320632841703226, + "dual_objective_value": 25.322930361468835, + "duality_gap": 0.0022975197656087687, + "primal_infeasibility": 1.1452090235982779e-06, + "dual_infeasibility": 3.397050009105795e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:46:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2331, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17062,29 +37114,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:43:52", - "solve_time": 0.30866791666666665, - "status": "OPTIMAL", - "primal_objective_value": -17.784626802847523, - "dual_objective_value": -17.784626793465566, - "duality_gap": 9.38195654498486e-09, - "primal_infeasibility": 5.28282960426234e-09, - "dual_infeasibility": 0.0, - "iterations": 30 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 700, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2064, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control1", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17106,29 +37166,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:30:40", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:49", + "solve_time": 28.745557069778442, + "status": "SIGKILL", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:16:20 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:16:20 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:16:20 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:16:20 - python_solver_runner - INFO - Subprocess solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - python_solver_runner - INFO - Solving gpp500-2 with cvxpy_clarabel\n2025-08-04 22:16:20 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:16:20 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-2.dat-s\n2025-08-04 22:16:20 - dat_loader - INFO - Converted gpp500-2: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:16:20 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-2', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } }, { - "id": 808, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2065, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17150,29 +37218,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:13:49", - "solve_time": 56.15797710418701, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:18:44", + "solve_time": 114.04924011230469, "status": "OPTIMAL", - "primal_objective_value": -38.53310978438966, - "dual_objective_value": -38.53310974843417, - "duality_gap": -3.5955487476257986e-08, - "primal_infeasibility": 1.3387459817271676e-06, - "dual_infeasibility": 3.600325513296991e-11, - "iterations": 44 - }, - { - "id": 815, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "primal_objective_value": 156.06035666172633, + "dual_objective_value": 156.06035552858836, + "duality_gap": 1.133137971010001e-06, + "primal_infeasibility": 4.103628736945596e-08, + "dual_infeasibility": 8.100882058962239e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2332, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17194,29 +37270,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:51", - "solve_time": 27.150655031204224, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:56", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 810, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 2334, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17238,14 +37322,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:12", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:59", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17253,14 +37340,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 811, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2335, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17282,14 +37374,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:13", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:01", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17297,14 +37392,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 812, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2333, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17326,14 +37426,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:14", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:32:58", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17341,14 +37444,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 813, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2066, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17370,29 +37478,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:15", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:20:44", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 809, + "id": 2063, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17414,29 +37529,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:01", - "solve_time": 11.48241901397705, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:16:20", + "solve_time": 14.896263122558594, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -38.532875373216974, - "dual_objective_value": -38.53307092893413, - "duality_gap": 0.00019555571715557107, - "primal_infeasibility": 2.813485631313094e-07, + "primal_objective_value": 156.06044168820128, + "dual_objective_value": 156.06038737307432, + "duality_gap": 5.431512695963647e-05, + "primal_infeasibility": 9.95614195158524e-08, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1638, + "id": 1849, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17458,29 +37581,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:05:17", - "solve_time": 8.544497708333333, - "status": "UNKNOWN", - "primal_objective_value": -38.53290115712743, - "dual_objective_value": -38.53305732276117, - "duality_gap": 0.00015616563374010184, - "primal_infeasibility": 1.0306253214751266e-06, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:15", + "solve_time": 2.782814, + "status": "OPTIMAL", + "primal_objective_value": 156.06039007012993, + "dual_objective_value": 156.06038734464326, + "duality_gap": 2.725486666577126e-06, + "primal_infeasibility": 1.5107253167137408e-11, "dual_infeasibility": 0.0, - "iterations": 26 - }, - { - "id": 1508, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.782814, + "setup_time": [], + "iterations": 18, + "primal_objective_value": 156.06039007012993, + "dual_objective_value": 156.06038734464326, + "duality_gap": 2.725486666577126e-06, + "primal_infeasibility": 1.5107253167137408e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1875, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17502,29 +37652,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:45:31", - "solve_time": 17.53509725, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:46:41", + "solve_time": 15.842044375, "status": "NUM_ERROR", - "primal_objective_value": -38.533100875331215, - "dual_objective_value": -38.53309670441624, - "duality_gap": 4.1709149769530995e-06, - "primal_infeasibility": 1.1942347138694803e-06, - "dual_infeasibility": 0.0, - "iterations": 43 - }, - { - "id": 814, + "primal_objective_value": 156.06069685644727, + "dual_objective_value": 156.0654106456209, + "duality_gap": 0.004713789173621308, + "primal_infeasibility": 5.653736676264694e-07, + "dual_infeasibility": 2.731499527461661e-08, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.842044375, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 156.06069685644727, + "dual_objective_value": 156.0654106456209, + "duality_gap": 0.004713789173621308, + "primal_infeasibility": 5.653736676264694e-07, + "dual_infeasibility": 2.731499527461661e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:46:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2336, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control10", + "problem_name": "gpp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17546,14 +37723,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:14:15", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17561,14 +37741,71 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2068, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:21:32", + "solve_time": 30.809092044830322, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:21:01 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:21:01 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:21:01 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:21:01 - python_solver_runner - INFO - Subprocess solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - python_solver_runner - INFO - Solving gpp500-3 with cvxpy_clarabel\n2025-08-04 22:21:01 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:21:01 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-3.dat-s\n2025-08-04 22:21:01 - dat_loader - INFO - Converted gpp500-3: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:21:01 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-3', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } }, { - "id": 824, + "id": 2069, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17590,29 +37827,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:20:14", - "solve_time": 38.3471896648407, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:23:32", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 819, + "id": 2337, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17634,14 +37878,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:24", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17649,14 +37896,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 820, + "id": 2339, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17678,14 +37930,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17693,14 +37948,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 821, + "id": 2340, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17722,14 +37982,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:26", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:09", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17737,14 +38000,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 822, + "id": 2338, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17766,14 +38034,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:27", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:06", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17781,14 +38052,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2070, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "gpp500-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:25:32", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 818, + "id": 2067, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17810,29 +38137,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:11", - "solve_time": 17.384504079818726, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -31.95851149383577, - "dual_objective_value": -31.95870615260608, - "duality_gap": 0.000194658770311662, - "primal_infeasibility": 1.7090596773415e-07, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:21:00", + "solve_time": 14.947671175003052, + "status": "OPTIMAL", + "primal_objective_value": 513.0176116916346, + "dual_objective_value": 513.0176020214957, + "duality_gap": 9.670138865658373e-06, + "primal_infeasibility": 1.7217391148694617e-12, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1639, + "id": 1850, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17854,29 +38189,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:05:38", - "solve_time": 11.558988291666667, - "status": "UNKNOWN", - "primal_objective_value": -31.958623305615316, - "dual_objective_value": -31.958686698445707, - "duality_gap": 6.339283039125121e-05, - "primal_infeasibility": 7.853573037958292e-07, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:26", + "solve_time": 2.2795346666666667, + "status": "OPTIMAL", + "primal_objective_value": 513.0176090027193, + "dual_objective_value": 513.0176019918591, + "duality_gap": 7.010860144873732e-06, + "primal_infeasibility": 4.510660770051609e-12, "dual_infeasibility": 0.0, - "iterations": 24 - }, - { - "id": 1509, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.2795346666666667, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 513.0176090027193, + "dual_objective_value": 513.0176019918591, + "duality_gap": 7.010860144873732e-06, + "primal_infeasibility": 4.510660770051609e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1876, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17898,29 +38260,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:12", - "solve_time": 30.733073958333332, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:47:06", + "solve_time": 18.165691125, "status": "NUM_ERROR", - "primal_objective_value": -31.958699244576298, - "dual_objective_value": -31.958695423512797, - "duality_gap": 3.821063501163735e-06, - "primal_infeasibility": 5.312516350920055e-07, - "dual_infeasibility": 0.0, - "iterations": 47 - }, - { - "id": 823, + "primal_objective_value": 513.0180735864465, + "dual_objective_value": 513.0180749365385, + "duality_gap": 1.3500920204023714e-06, + "primal_infeasibility": 4.4434696313909057e-07, + "dual_infeasibility": 1.0333092976055663e-09, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 18.165691125, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 513.0180735864465, + "dual_objective_value": 513.0180749365385, + "duality_gap": 1.3500920204023714e-06, + "primal_infeasibility": 4.4434696313909057e-07, + "dual_infeasibility": 1.0333092976055663e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:47:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2341, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control11", + "problem_name": "gpp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17942,14 +38331,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:19:27", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:10", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -17957,14 +38349,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 703, + "id": 2072, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -17986,29 +38383,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:02", - "solve_time": 0.05029797554016113, - "status": "OPTIMAL", - "primal_objective_value": -8.30000052797604, - "dual_objective_value": -8.300000490399094, - "duality_gap": -3.7576945999262534e-08, - "primal_infeasibility": 1.0799058809794016e-07, - "dual_infeasibility": 0.0, - "iterations": 25 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:26:19", + "solve_time": 30.212826013565063, + "status": "SIGKILL", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_type": "SIGKILL", + "error_details": "Process terminated (returncode -9). 2025-08-04 22:25:49 - problem_interface - INFO - Loaded 124 problems from registry\n2025-08-04 22:25:49 - problem_interface - INFO - Initialized problem interface with 124 problems\n2025-08-04 22:25:49 - python_solver_runner - INFO - Initialized Python interface (lazy solver detection)\n2025-08-04 22:25:49 - python_solver_runner - INFO - Subprocess solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - python_solver_runner - INFO - Solving gpp500-4 with cvxpy_clarabel\n2025-08-04 22:25:49 - solver_cvxpy_clarabel - INFO - Initialized CVXPY solver 'cvxpy_clarabel' with backend 'CLARABEL'\n2025-08-04 22:25:49 - dat_loader - INFO - Loading SDPA .dat-s file: /Users/naoki/PycharmProjects/optimization-solver-benchmark/problems/SDPLIB/data/gpp500-4.dat-s\n2025-08-04 22:25:49 - dat_loader - INFO - Converted gpp500-4: SDP problem (250000 vars, 501 constraints)\n2025-08-04 22:25:49 - dat_loader - INFO - Successfully loaded DAT problem: ProblemData(name='gpp500-4', class='SDP', 250000 vars, 501 constraints)", + "problem_class": "SDP" + } }, { - "id": 705, + "id": 2073, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18030,29 +38435,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", - "solve_time": 0.1693129539489746, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:28:19", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 706, + "id": 2342, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18074,14 +38486,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:12", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18089,14 +38504,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 707, + "id": 2344, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18118,14 +38538,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18133,14 +38556,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 708, + "id": 2345, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18162,14 +38590,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:17", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18177,14 +38608,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 709, + "id": 2343, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18206,14 +38642,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:14", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18221,14 +38660,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 704, + "id": 2074, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18250,29 +38694,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", - "solve_time": 4.882005929946899, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.0019666666133589523, - "dual_objective_value": -1.6631072323702496, - "duality_gap": 1.6611405657568907, - "primal_infeasibility": 0.166111590183817, - "dual_infeasibility": 16899.147636217396, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:30:19", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 710, + "id": 2071, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18294,29 +38745,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", - "solve_time": 0.037503957748413086, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T13:25:48", + "solve_time": 15.022250890731812, "status": "OPTIMAL", - "primal_objective_value": -8.299999482545115, - "dual_objective_value": -8.300000044307849, - "duality_gap": 5.617627341081288e-07, - "primal_infeasibility": 1.6670044255637843e-08, + "primal_objective_value": 1567.0188583796264, + "dual_objective_value": 1567.0187909110516, + "duality_gap": 6.746857479811297e-05, + "primal_infeasibility": 7.443909590382624e-12, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1630, + "id": 1851, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18338,29 +38797,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:03", - "solve_time": 0.41014416666666664, - "status": "MAX_ITER", - "primal_objective_value": -8.299999963979975, - "dual_objective_value": -8.300000195440187, - "duality_gap": 2.3146021277398177e-07, - "primal_infeasibility": 4.880420109459047e-09, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:37", + "solve_time": 2.642140875, + "status": "OPTIMAL", + "primal_objective_value": 1567.0187951883258, + "dual_objective_value": 1567.0187917942853, + "duality_gap": 3.3940405046450906e-06, + "primal_infeasibility": 8.670520994656674e-12, "dual_infeasibility": 0.0, - "iterations": 21 - }, - { - "id": 1500, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.642140875, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 1567.0187951883258, + "dual_objective_value": 1567.0187917942853, + "duality_gap": 3.3940405046450906e-06, + "primal_infeasibility": 8.670520994656674e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1877, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18382,29 +38868,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:43:58", - "solve_time": 0.3295910833333333, - "status": "OPTIMAL", - "primal_objective_value": -8.300000061550637, - "dual_objective_value": -8.300000053303892, - "duality_gap": 8.24674550869986e-09, - "primal_infeasibility": 8.92637846485658e-09, - "dual_infeasibility": 0.0, - "iterations": 31 - }, - { - "id": 711, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:47:28", + "solve_time": 15.819546916666667, + "status": "NUM_ERROR", + "primal_objective_value": 1567.0194253372717, + "dual_objective_value": 1567.026642378539, + "duality_gap": 0.007217041267267632, + "primal_infeasibility": 3.401601219505255e-07, + "dual_infeasibility": 3.479858546976129e-09, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 15.819546916666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 1567.0194253372717, + "dual_objective_value": 1567.026642378539, + "duality_gap": 0.007217041267267632, + "primal_infeasibility": 3.401601219505255e-07, + "dual_infeasibility": 3.479858546976129e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:47:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2346, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control2", + "problem_name": "gpp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18426,14 +38939,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:32:07", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:33:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18441,14 +38957,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 714, + "id": 1000, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18470,6 +38991,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18477,22 +39001,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:05", - "solve_time": 0.22819089889526367, + "timestamp": "2025-07-18T11:55:01", + "solve_time": 0.005572795867919922, "status": "OPTIMAL", - "primal_objective_value": -13.633267734899809, - "dual_objective_value": -13.633267702679126, - "duality_gap": -3.2220683010564244e-08, - "primal_infeasibility": 2.693486524788012e-07, - "dual_infeasibility": 0.0, - "iterations": 29 + "primal_objective_value": -2.0326681219679923, + "dual_objective_value": -2.0326681159848516, + "duality_gap": -5.983140649590268e-09, + "primal_infeasibility": 1.5142732808798136e-09, + "dual_infeasibility": 5.8528406408805414e-08, + "iterations": 27, + "memo": { + "solver_solve_time": 0.002366377, + "problem_class": "SDP" + } }, { - "id": 716, + "id": 1001, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18514,6 +39042,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18521,22 +39052,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", - "solve_time": 0.3841969966888428, + "timestamp": "2025-07-18T11:55:01", + "solve_time": 0.05380678176879883, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 717, + "id": 1004, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18558,6 +39093,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18565,7 +39103,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", + "timestamp": "2025-07-18T11:55:13", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18573,14 +39111,123 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 718, + "id": 1005, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1006, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "problem_library": "SDPLIB", + "problem_name": "hinf1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:55:13", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1007, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18602,93 +39249,8 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 719, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "SDPLIB", - "problem_name": "control3", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 720, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "SDPLIB", - "problem_name": "control3", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" }, "timezone": { "timezone_name": "UTC", @@ -18697,7 +39259,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", + "timestamp": "2025-07-18T11:55:13", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18705,14 +39267,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 715, + "id": 1002, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18734,6 +39301,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18741,22 +39311,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:19", - "solve_time": 14.102894306182861, + "timestamp": "2025-07-18T11:55:02", + "solve_time": 0.5455272197723389, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.037735833422812004, - "dual_objective_value": -0.27289208768706114, - "duality_gap": 0.23515625426424913, - "primal_infeasibility": 0.13917932877951675, - "dual_infeasibility": 1893.5597441188274, - "iterations": 100000 + "primal_objective_value": -2.034025995512536, + "dual_objective_value": -2.033865317055243, + "duality_gap": -0.00016067845729317298, + "primal_infeasibility": 2.999590308495669e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.541413458, + "problem_class": "SDP" + } }, { - "id": 721, + "id": 1003, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18778,6 +39352,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18785,22 +39362,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:20", - "solve_time": 0.1595902442932129, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -13.633263748445593, - "dual_objective_value": -13.633266893655158, - "duality_gap": 3.1452095647921396e-06, - "primal_infeasibility": 6.364345948755367e-08, + "timestamp": "2025-07-18T11:55:02", + "solve_time": 0.008548974990844727, + "status": "OPTIMAL", + "primal_objective_value": -2.0326162960518173, + "dual_objective_value": -2.0326162960518173, + "duality_gap": 0.0, + "primal_infeasibility": 3.967316966357652e-09, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1631, + "id": 1614, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18822,6 +39404,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18829,22 +39414,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:09", - "solve_time": 0.5669687916666667, - "status": "MAX_ITER", - "primal_objective_value": -13.633263261632482, - "dual_objective_value": -13.633267476768832, - "duality_gap": 4.215136350183002e-06, - "primal_infeasibility": 8.350276043868962e-08, + "timestamp": "2025-07-19T14:02:34", + "solve_time": 0.37224925, + "status": "UNKNOWN", + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, "dual_infeasibility": 0.0, - "iterations": 21 + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.37224925, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -2.0327304439087186, + "dual_objective_value": -2.032679460642064, + "duality_gap": 5.098326665464725e-05, + "primal_infeasibility": 2.666994274501407e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1501, + "id": 1471, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18866,6 +39475,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18873,22 +39485,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:04", - "solve_time": 0.5063703333333334, + "timestamp": "2025-07-19T12:38:35", + "solve_time": 0.38086575, "status": "NUM_ERROR", - "primal_objective_value": -13.633266745169918, - "dual_objective_value": -13.633266709049082, - "duality_gap": 3.612083609993988e-08, - "primal_infeasibility": 2.9250113210155247e-08, + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, "dual_infeasibility": 0.0, - "iterations": 34 + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.38086575, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -2.032702691217913, + "dual_objective_value": -2.0326573971090376, + "duality_gap": 4.5294108875548744e-05, + "primal_infeasibility": 1.1139356829973714e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 722, + "id": 1008, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control3", + "problem_name": "hinf1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18910,6 +39546,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18917,7 +39556,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:33:20", + "timestamp": "2025-07-18T11:55:13", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -18925,14 +39564,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 725, + "id": 923, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18954,6 +39598,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -18961,22 +39608,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:14", - "solve_time": 0.8667011260986328, - "status": "OPTIMAL", - "primal_objective_value": -19.79423318506499, - "dual_objective_value": -19.79423315316147, - "duality_gap": -3.190351804960301e-08, - "primal_infeasibility": 5.103843191955561e-07, - "dual_infeasibility": 5.641713395479458e-08, - "iterations": 32 + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.006523847579956055, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -108.78737562810723, + "dual_objective_value": -108.78736989216672, + "duality_gap": -5.73594050479187e-06, + "primal_infeasibility": 7.50016586494756e-08, + "dual_infeasibility": 8.372072031670971e-08, + "iterations": 24, + "memo": { + "solver_solve_time": 0.003101377, + "problem_class": "SDP" + } }, { - "id": 727, + "id": 924, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -18998,6 +39649,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19005,22 +39659,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", - "solve_time": 1.2850801944732666, + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.0596768856048584, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 728, + "id": 927, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19042,6 +39700,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19049,7 +39710,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", + "timestamp": "2025-07-16T15:23:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19057,14 +39718,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 729, + "id": 928, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19086,6 +39752,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19093,7 +39762,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", + "timestamp": "2025-07-16T15:23:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19101,14 +39770,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 730, + "id": 929, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19130,6 +39804,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19137,7 +39814,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", + "timestamp": "2025-07-16T15:23:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19145,14 +39822,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 731, + "id": 930, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19174,6 +39856,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19181,7 +39866,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", + "timestamp": "2025-07-16T15:23:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19189,14 +39874,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 726, + "id": 925, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19218,6 +39908,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19225,22 +39918,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:42", - "solve_time": 27.7015540599823, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.002563905576329976, - "dual_objective_value": -2.112935527155603, - "duality_gap": 2.110371621579273, - "primal_infeasibility": 0.11510210278659297, - "dual_infeasibility": 14854.924304999919, - "iterations": 100000 + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.7690088748931885, + "status": "OPTIMAL", + "primal_objective_value": -109.67066975246388, + "dual_objective_value": -109.6700504066821, + "duality_gap": -0.0006193457817857961, + "primal_infeasibility": 2.294628633625865e-06, + "dual_infeasibility": 3.7480545771311504e-06, + "iterations": 97050, + "memo": { + "solver_solve_time": 0.765419125, + "problem_class": "SDP" + } }, { - "id": 732, + "id": 926, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19262,6 +39959,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19269,22 +39969,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", - "solve_time": 0.3332328796386719, + "timestamp": "2025-07-16T15:22:57", + "solve_time": 0.012375831604003906, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -19.79422577234397, - "dual_objective_value": -19.7942315506204, - "duality_gap": 5.778276428003437e-06, - "primal_infeasibility": 1.3327565863841907e-07, + "primal_objective_value": -108.86347113724204, + "dual_objective_value": -108.78673318394273, + "duality_gap": -0.07673795329931465, + "primal_infeasibility": 8.231747852466604e-07, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1632, + "id": 1623, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19306,6 +40011,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19313,22 +40021,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:14", - "solve_time": 0.9797094583333333, + "timestamp": "2025-07-19T14:03:23", + "solve_time": 0.365393375, "status": "UNKNOWN", - "primal_objective_value": -19.794231903242835, - "dual_objective_value": -19.794231015288197, - "duality_gap": 8.879546378182113e-07, - "primal_infeasibility": 2.2336441257685175e-07, + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, "dual_infeasibility": 0.0, - "iterations": 21 + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.365393375, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -108.7683048840259, + "dual_objective_value": -108.77818212309559, + "duality_gap": 0.009877239069695065, + "primal_infeasibility": 2.3595268341152298e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1502, + "id": 1480, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19350,6 +40082,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19357,22 +40092,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:10", - "solve_time": 0.619574875, + "timestamp": "2025-07-19T12:39:24", + "solve_time": 0.3626290833333333, "status": "NUM_ERROR", - "primal_objective_value": -19.79423223668097, - "dual_objective_value": -19.79423226601071, - "duality_gap": 2.932974041414127e-08, - "primal_infeasibility": 7.34021862743097e-08, + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, "dual_infeasibility": 0.0, - "iterations": 35 + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3626290833333333, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -108.75993162203638, + "dual_objective_value": -108.75125626509862, + "duality_gap": 0.008675356937757783, + "primal_infeasibility": 5.284061049311702e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 733, + "id": 931, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control4", + "problem_name": "hinf10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19394,6 +40153,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19401,7 +40163,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:34:44", + "timestamp": "2025-07-16T15:23:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19409,14 +40171,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 736, + "id": 934, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19438,6 +40205,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19445,22 +40215,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:35:41", - "solve_time": 2.2983057498931885, - "status": "OPTIMAL", - "primal_objective_value": -16.88364881340114, - "dual_objective_value": -16.883648809313648, - "duality_gap": -4.087493010729304e-09, - "primal_infeasibility": 5.620802961416378e-07, - "dual_infeasibility": 5.697256261448682e-09, - "iterations": 35 + "timestamp": "2025-07-16T15:24:14", + "solve_time": 0.00967717170715332, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -65.90991351702351, + "dual_objective_value": -65.90990389505751, + "duality_gap": -9.62196600085008e-06, + "primal_infeasibility": 3.264652971267897e-08, + "dual_infeasibility": 7.961207252939813e-10, + "iterations": 25, + "memo": { + "solver_solve_time": 0.006049124, + "problem_class": "SDP" + } }, { - "id": 738, + "id": 935, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19482,6 +40256,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19489,22 +40266,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:37", - "solve_time": 2.2808189392089844, + "timestamp": "2025-07-16T15:24:14", + "solve_time": 0.06746697425842285, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 739, + "id": 938, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19526,6 +40307,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19533,7 +40317,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:37", + "timestamp": "2025-07-16T15:24:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19541,14 +40325,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 740, + "id": 939, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19570,6 +40359,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19577,7 +40369,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:38", + "timestamp": "2025-07-16T15:24:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19585,14 +40377,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 741, + "id": 940, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19614,6 +40411,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19621,7 +40421,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:38", + "timestamp": "2025-07-16T15:24:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19629,14 +40429,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 742, + "id": 941, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19658,6 +40463,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19665,7 +40473,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:38", + "timestamp": "2025-07-16T15:24:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19673,14 +40481,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 737, + "id": 936, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19702,6 +40515,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19709,22 +40525,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:35", - "solve_time": 53.787150144577026, + "timestamp": "2025-07-16T15:24:15", + "solve_time": 1.2248289585113525, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.17807903005516243, - "dual_objective_value": -0.23275478696713833, - "duality_gap": 0.054675756911975903, - "primal_infeasibility": 0.09362750982167806, - "dual_infeasibility": 369.6736319443367, - "iterations": 100000 + "primal_objective_value": -67.03265487888538, + "dual_objective_value": -66.9425045006043, + "duality_gap": -0.09015037828108063, + "primal_infeasibility": 7.271735945414379e-06, + "dual_infeasibility": 2.372132910723892e-12, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.2213040000000002, + "problem_class": "SDP" + } }, { - "id": 743, + "id": 937, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19746,6 +40566,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19753,22 +40576,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:39", - "solve_time": 0.6724143028259277, + "timestamp": "2025-07-16T15:24:15", + "solve_time": 0.012714862823486328, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -16.883575406676048, - "dual_objective_value": -16.883604992850316, - "duality_gap": 2.9586174267848264e-05, - "primal_infeasibility": 2.7521358841549283e-07, + "primal_objective_value": -65.96092354028318, + "dual_objective_value": -65.91206628197119, + "duality_gap": -0.04885725831198329, + "primal_infeasibility": 4.861398484093877e-07, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1633, + "id": 1624, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19790,6 +40618,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19797,22 +40628,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:21", - "solve_time": 2.211192083333333, + "timestamp": "2025-07-19T14:03:29", + "solve_time": 0.4292201666666667, "status": "UNKNOWN", - "primal_objective_value": -16.883596414614832, - "dual_objective_value": -16.88360083689795, - "duality_gap": 4.422283119254189e-06, - "primal_infeasibility": 2.75357458891001e-07, + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, "dual_infeasibility": 0.0, - "iterations": 25 + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.4292201666666667, + "setup_time": [], + "iterations": 25, + "primal_objective_value": -65.91623172173267, + "dual_objective_value": -65.89340793308176, + "duality_gap": 0.022823788650910615, + "primal_infeasibility": 1.465391663685626e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1503, + "id": 1481, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19834,6 +40689,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19841,22 +40699,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:16", - "solve_time": 1.1899270833333333, + "timestamp": "2025-07-19T12:39:30", + "solve_time": 0.3754861666666667, "status": "NUM_ERROR", - "primal_objective_value": -16.88360792645761, - "dual_objective_value": -16.88360752271663, - "duality_gap": 4.037409802037928e-07, - "primal_infeasibility": 4.1151459934863073e-07, + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, "dual_infeasibility": 0.0, - "iterations": 35 + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3754861666666667, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -65.88284488105815, + "dual_objective_value": -65.88010110073674, + "duality_gap": 0.002743780321409872, + "primal_infeasibility": 1.2872974305043217e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 744, + "id": 942, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control5", + "problem_name": "hinf11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19878,6 +40760,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19885,7 +40770,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:36:39", + "timestamp": "2025-07-16T15:24:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -19893,14 +40778,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 756, + "id": 956, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19922,6 +40812,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19929,22 +40822,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:59", - "solve_time": 5.778800010681152, + "timestamp": "2025-07-18T11:48:25", + "solve_time": 0.01746988296508789, "status": "OPTIMAL", - "primal_objective_value": -37.3044718247362, - "dual_objective_value": -37.30447181818093, - "duality_gap": -6.5552683281566715e-09, - "primal_infeasibility": 1.4634649666883939e-06, - "dual_infeasibility": 3.059050321188013e-06, - "iterations": 42 + "primal_objective_value": -3.2433629986793885e-05, + "dual_objective_value": -3.2432575308661486e-05, + "duality_gap": -1.0546781323988747e-09, + "primal_infeasibility": 8.300260965155049e-06, + "dual_infeasibility": 0.0, + "iterations": 44, + "memo": { + "solver_solve_time": 0.013888374, + "problem_class": "SDP" + } }, { - "id": 749, + "id": 957, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -19966,6 +40863,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -19973,22 +40873,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:18", - "solve_time": 4.976245164871216, + "timestamp": "2025-07-18T11:48:26", + "solve_time": 0.3970298767089844, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 750, + "id": 960, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20010,6 +40914,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20017,7 +40924,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:18", + "timestamp": "2025-07-18T11:48:36", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20025,14 +40932,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 751, + "id": 961, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20054,6 +40966,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20061,7 +40976,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:18", + "timestamp": "2025-07-18T11:48:36", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20069,14 +40984,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 752, + "id": 962, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20098,6 +41018,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20105,7 +41028,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:18", + "timestamp": "2025-07-18T11:48:36", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20113,14 +41036,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 753, + "id": 963, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20142,6 +41070,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20149,7 +41080,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:18", + "timestamp": "2025-07-18T11:48:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20157,14 +41088,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 748, + "id": 958, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20186,6 +41122,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20193,22 +41132,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:50:12", - "solve_time": 92.80738425254822, + "timestamp": "2025-07-18T11:48:28", + "solve_time": 1.8517041206359863, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -0.5214729254574336, - "dual_objective_value": -1.0154678495708611, - "duality_gap": 0.4939949241134275, - "primal_infeasibility": 0.08196294538901851, - "dual_infeasibility": 3266.178827189497, - "iterations": 100000 + "primal_objective_value": -1.5660892533183435, + "dual_objective_value": -1.550972805649461, + "duality_gap": -0.015116447668882538, + "primal_infeasibility": 1.2713713263916197e-07, + "dual_infeasibility": 9.437455397904784e-07, + "iterations": 100000, + "memo": { + "solver_solve_time": 1.846340583, + "problem_class": "SDP" + } }, { - "id": 757, + "id": 959, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20230,6 +41173,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20237,22 +41183,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T10:51:01", - "solve_time": 1.3343961238861084, + "timestamp": "2025-07-18T11:48:28", + "solve_time": 0.01336216926574707, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -37.30434823321163, - "dual_objective_value": -37.30443772697064, - "duality_gap": 8.94937590132372e-05, - "primal_infeasibility": 2.9293219588294305e-07, + "primal_objective_value": -26.28462100943706, + "dual_objective_value": -3.218764582272006, + "duality_gap": -23.065856427165055, + "primal_infeasibility": 0.00026649547088509193, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1634, + "id": 1625, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20274,6 +41225,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20281,22 +41235,117 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:28", - "solve_time": 1.4893847916666667, + "timestamp": "2025-07-19T14:03:34", + "solve_time": 0.5892792083333334, "status": "UNKNOWN", - "primal_objective_value": -37.3043782593074, - "dual_objective_value": -37.30442450422718, - "duality_gap": 4.624491977978096e-05, - "primal_infeasibility": 6.229389742583387e-07, + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, "dual_infeasibility": 0.0, - "iterations": 22 + "iterations": 61, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5892792083333334, + "setup_time": [], + "iterations": 61, + "primal_objective_value": -2.2571558268484783e-05, + "dual_objective_value": -2.9572121961358873e-05, + "duality_gap": 7.00056369287409e-06, + "primal_infeasibility": 1.538325025557428e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1504, + "id": 1482, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control6", + "problem_name": "hinf12_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:35", + "solve_time": 0.3087037083333333, + "status": "OPTIMAL", + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3087037083333333, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -0.11791225666476954, + "dual_objective_value": -0.09905856082734718, + "duality_gap": 0.018853695837422357, + "primal_infeasibility": 5.037944322430809e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 964, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "hinf12_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20318,29 +41367,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:24", - "solve_time": 2.2992367083333334, - "status": "NUM_ERROR", - "primal_objective_value": -37.304475715902306, - "dual_objective_value": -37.30447323765376, - "duality_gap": 2.478248546822215e-06, - "primal_infeasibility": 1.310139383095129e-06, - "dual_infeasibility": 0.0, - "iterations": 40 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:48:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 778, + "id": 967, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20362,6 +41419,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20369,22 +41429,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:01:51", - "solve_time": 10.645551919937134, - "status": "OPTIMAL", - "primal_objective_value": -20.625077113896168, - "dual_objective_value": -20.625077105250966, - "duality_gap": -8.64520188770257e-09, - "primal_infeasibility": 6.579981870625703e-07, - "dual_infeasibility": 2.3499840470621547e-07, - "iterations": 39 + "timestamp": "2025-07-18T11:50:39", + "solve_time": 0.014467954635620117, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 780, + "id": 968, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20406,6 +41470,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20413,22 +41480,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:02:09", - "solve_time": 8.10211992263794, + "timestamp": "2025-07-18T11:50:39", + "solve_time": 0.08350205421447754, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 781, + "id": 971, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20450,6 +41521,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20457,7 +41531,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:04:11", + "timestamp": "2025-07-18T11:50:49", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20465,14 +41539,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 782, + "id": 972, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20494,6 +41573,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20501,7 +41583,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:04:12", + "timestamp": "2025-07-18T11:50:49", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20509,14 +41591,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 783, + "id": 973, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20538,6 +41625,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20545,7 +41635,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:04:12", + "timestamp": "2025-07-18T11:50:49", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20553,14 +41643,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 784, + "id": 974, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20582,6 +41677,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20589,7 +41687,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:04:12", + "timestamp": "2025-07-18T11:50:49", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20597,14 +41695,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 969, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf13_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:50:42", + "solve_time": 2.7371368408203125, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -30.338550177295044, + "dual_objective_value": -30.33799855091353, + "duality_gap": -0.0005516263815152911, + "primal_infeasibility": 5.355726666806104e-06, + "dual_infeasibility": 9.237315025625231e-05, + "iterations": 100000, + "memo": { + "solver_solve_time": 2.731196458, + "problem_class": "SDP" + } }, { - "id": 779, + "id": 970, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20626,6 +41780,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20633,22 +41790,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:01:53", - "solve_time": 2.557873249053955, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -20.625054215291936, - "dual_objective_value": -20.625079174008114, - "duality_gap": 2.4958716178247187e-05, - "primal_infeasibility": 7.626469959925607e-07, - "dual_infeasibility": 0.0, - "iterations": null + "timestamp": "2025-07-18T11:50:42", + "solve_time": 0.012221097946166992, + "status": "INFEASIBLE", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1635, + "id": 1626, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20670,6 +41832,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20677,22 +41842,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:37", - "solve_time": 2.1745322916666665, + "timestamp": "2025-07-19T14:03:40", + "solve_time": 0.5201742916666666, "status": "UNKNOWN", - "primal_objective_value": -20.62505846427079, - "dual_objective_value": -20.62507774002214, - "duality_gap": 1.9275751348857284e-05, - "primal_infeasibility": 5.828261469963749e-08, - "dual_infeasibility": 0.0, - "iterations": 22 + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5201742916666666, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -44.36054953507353, + "dual_objective_value": -44.352737721585974, + "duality_gap": 0.0078118134875566625, + "primal_infeasibility": 2.34826882611184e-05, + "dual_infeasibility": 1.9677815225005485e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1505, + "id": 1483, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20714,6 +41903,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20721,22 +41913,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:34", - "solve_time": 3.7043799583333334, + "timestamp": "2025-07-19T12:39:41", + "solve_time": 0.34354358333333335, "status": "NUM_ERROR", - "primal_objective_value": -20.625087691567924, - "dual_objective_value": -20.625088042230974, - "duality_gap": 3.506630505967223e-07, - "primal_infeasibility": 4.0114303820059954e-07, - "dual_infeasibility": 0.0, - "iterations": 40 + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.34354358333333335, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -44.98782800411155, + "dual_objective_value": -44.73512547033813, + "duality_gap": 0.2527025337734159, + "primal_infeasibility": 5.0403409648842495e-05, + "dual_infeasibility": 5.164198359985477e-07, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 785, + "id": 975, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control7", + "problem_name": "hinf13_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20758,6 +41974,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20765,7 +41984,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:04:12", + "timestamp": "2025-07-18T11:50:49", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20773,14 +41992,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 788, + "id": 978, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20802,6 +42026,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20809,22 +42036,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:05:50", - "solve_time": 19.99690079689026, - "status": "OPTIMAL", - "primal_objective_value": -20.2863714283772, - "dual_objective_value": -20.286371308207375, - "duality_gap": -1.201698260899775e-07, - "primal_infeasibility": 5.539607872665644e-07, - "dual_infeasibility": 1.4511474711248118e-07, - "iterations": 40 + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.029858112335205078, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -12.991620016749662, + "dual_objective_value": -12.991619832202199, + "duality_gap": -1.8454746353313567e-07, + "primal_infeasibility": 7.960100598663184e-08, + "dual_infeasibility": 2.8200844817922423e-07, + "iterations": 25, + "memo": { + "solver_solve_time": 0.023652419, + "problem_class": "SDP" + } }, { - "id": 795, + "id": 979, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20846,6 +42077,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20853,22 +42087,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:26", - "solve_time": 12.640835762023926, + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.1548140048980713, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 790, + "id": 982, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20890,6 +42128,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20897,7 +42138,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:02", + "timestamp": "2025-07-18T11:52:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20905,14 +42146,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 791, + "id": 983, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20934,6 +42180,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20941,7 +42190,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:03", + "timestamp": "2025-07-18T11:52:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20949,14 +42198,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 792, + "id": 984, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -20978,6 +42232,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -20985,7 +42242,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:03", + "timestamp": "2025-07-18T11:52:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -20993,14 +42250,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 793, + "id": 985, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21022,6 +42284,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21029,7 +42294,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:03", + "timestamp": "2025-07-18T11:52:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21037,14 +42302,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 980, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:12", + "solve_time": 0.260235071182251, + "status": "OPTIMAL", + "primal_objective_value": -13.016693637637012, + "dual_objective_value": -13.016676436910254, + "duality_gap": -1.7200726757593543e-05, + "primal_infeasibility": 9.713120873550967e-06, + "dual_infeasibility": 3.7424537617375734e-05, + "iterations": 7350, + "memo": { + "solver_solve_time": 0.25517412500000003, + "problem_class": "SDP" + } }, { - "id": 789, + "id": 981, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21066,6 +42387,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21073,22 +42397,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:05:55", - "solve_time": 4.0786097049713135, + "timestamp": "2025-07-18T11:52:13", + "solve_time": 0.01812005043029785, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -20.286315458750884, - "dual_objective_value": -20.286372440169522, - "duality_gap": 5.698141863774708e-05, - "primal_infeasibility": 2.99146677629299e-07, + "primal_objective_value": -12.977127071396835, + "dual_objective_value": -13.002235688978644, + "duality_gap": 0.025108617581809156, + "primal_infeasibility": 1.4121816289795736e-05, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1636, + "id": 1627, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21110,6 +42439,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21117,22 +42449,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:47", - "solve_time": 3.2315104166666666, + "timestamp": "2025-07-19T14:03:46", + "solve_time": 0.5131727916666666, "status": "UNKNOWN", - "primal_objective_value": -20.286339185828837, - "dual_objective_value": -20.286370196182016, - "duality_gap": 3.101035317953915e-05, - "primal_infeasibility": 6.98131306134552e-07, - "dual_infeasibility": 0.0, - "iterations": 22 + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "iterations": 31, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5131727916666666, + "setup_time": [], + "iterations": 31, + "primal_objective_value": -12.989960076415304, + "dual_objective_value": -12.989934206347613, + "duality_gap": 2.5870067691613485e-05, + "primal_infeasibility": 8.66236229712859e-08, + "dual_infeasibility": 9.648370597983024e-10, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1506, + "id": 1484, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21154,6 +42510,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21161,22 +42520,252 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:44:48", - "solve_time": 6.0665873333333336, + "timestamp": "2025-07-19T12:39:47", + "solve_time": 0.42435625, "status": "NUM_ERROR", - "primal_objective_value": -20.286375865662162, - "dual_objective_value": -20.286374249545677, - "duality_gap": 1.6161164850814203e-06, - "primal_infeasibility": 4.233911977499572e-07, + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, "dual_infeasibility": 0.0, - "iterations": 40 + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.42435625, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -12.994433062802717, + "dual_objective_value": -12.993857944680892, + "duality_gap": 0.0005751181218247581, + "primal_infeasibility": 3.459515165126997e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 794, + "id": 986, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control8", + "problem_name": "hinf14", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:52:26", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 989, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:23", + "solve_time": 0.03337883949279785, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -24.823804805102615, + "dual_objective_value": -24.823648667307985, + "duality_gap": -0.00015613779462952948, + "primal_infeasibility": 3.8123673598819243e-06, + "dual_infeasibility": 1.3632493267012344e-06, + "iterations": 19, + "memo": { + "solver_solve_time": 0.02654958, + "problem_class": "SDP" + } + }, + { + "id": 990, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:23", + "solve_time": 0.12059998512268066, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 993, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "hinf15", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 994, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21198,6 +42787,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21205,7 +42797,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:06:04", + "timestamp": "2025-07-18T11:53:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21213,14 +42805,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 798, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 995, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21242,49 +42839,8 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:34", - "solve_time": 29.05992603302002, - "status": "OPTIMAL", - "primal_objective_value": -14.675430563285023, - "dual_objective_value": -14.675430500128785, - "duality_gap": -6.315623757302546e-08, - "primal_infeasibility": 1.0734959395341116e-06, - "dual_infeasibility": 0.0, - "iterations": 35 - }, - { - "id": 805, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", - "problem_library": "SDPLIB", - "problem_name": "control9", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" }, "timezone": { "timezone_name": "UTC", @@ -21293,22 +42849,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:11:20", - "solve_time": 17.646233081817627, - "status": "ERROR", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 800, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 996, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21330,6 +42891,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21337,7 +42901,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:50", + "timestamp": "2025-07-18T11:53:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21345,14 +42909,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 801, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 991, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21374,6 +42943,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21381,22 +42953,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:51", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T11:53:28", + "solve_time": 4.816857099533081, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -6.535899836686729, + "dual_objective_value": -6.535738728003019, + "duality_gap": -0.0001611086837103315, + "primal_infeasibility": 1.2124638376828503e-05, + "dual_infeasibility": 0.0007877132599741793, + "iterations": 100000, + "memo": { + "solver_solve_time": 4.811149333, + "problem_class": "SDP" + } }, { - "id": 802, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 992, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21418,6 +42994,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21425,22 +43004,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:51", - "solve_time": null, - "status": "UNSUPPORTED", + "timestamp": "2025-07-18T11:53:28", + "solve_time": 0.018558025360107422, + "status": "INFEASIBLE", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 803, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1628, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21462,29 +43046,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:52", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:03:52", + "solve_time": 0.5514212916666666, + "status": "UNKNOWN", + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "iterations": 29, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.5514212916666666, + "setup_time": [], + "iterations": 29, + "primal_objective_value": -23.987835100185112, + "dual_objective_value": -24.001097916938342, + "duality_gap": 0.0132628167532296, + "primal_infeasibility": 3.144875496622765e-05, + "dual_infeasibility": 6.997893475414923e-09, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 799, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1485, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21506,29 +43117,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:41", - "solve_time": 6.4581170082092285, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -14.67540228481323, - "dual_objective_value": -14.675431392929916, - "duality_gap": 2.910811668499491e-05, - "primal_infeasibility": 1.4589427065347405e-08, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:39:52", + "solve_time": 0.3233525, + "status": "NUM_ERROR", + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3233525, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -24.83998341547683, + "dual_objective_value": -24.214925261340976, + "duality_gap": 0.6250581541358535, + "primal_infeasibility": 0.000150801335775723, + "dual_infeasibility": 4.4160427926549335e-06, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:49", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1637, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 997, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf15", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21550,29 +43188,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:04:59", - "solve_time": 5.164574291666667, - "status": "UNKNOWN", - "primal_objective_value": -14.675411161814361, - "dual_objective_value": -14.675428193598599, - "duality_gap": 1.7031784237175884e-05, - "primal_infeasibility": 3.695427597785709e-07, - "dual_infeasibility": 0.0, - "iterations": 24 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:53:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1507, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1011, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21594,29 +43240,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:45:05", - "solve_time": 10.212919458333333, - "status": "NUM_ERROR", - "primal_objective_value": -14.6754285362703, - "dual_objective_value": -14.675428798508477, - "duality_gap": 2.622381778394356e-07, - "primal_infeasibility": 1.582313837708998e-07, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:35", + "solve_time": 0.005145072937011719, + "status": "OPTIMAL", + "primal_objective_value": -10.967598918863468, + "dual_objective_value": -10.96759886205494, + "duality_gap": -5.6808527659768515e-08, + "primal_infeasibility": 1.9892414732039526e-07, "dual_infeasibility": 0.0, - "iterations": 40 + "iterations": 17, + "memo": { + "solver_solve_time": 0.001845334, + "problem_class": "SDP" + } }, { - "id": 804, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1012, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "control9", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21638,6 +43291,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21645,22 +43301,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:10:52", - "solve_time": null, - "status": "UNSUPPORTED", + "timestamp": "2025-07-18T11:57:35", + "solve_time": 0.03723597526550293, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1388, + "id": 1015, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21682,6 +43342,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21689,7 +43352,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:17:51", + "timestamp": "2025-07-18T11:57:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21697,14 +43360,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1389, + "id": 1016, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21726,6 +43394,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21733,7 +43404,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:17:52", + "timestamp": "2025-07-18T11:57:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21741,14 +43412,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1390, + "id": 1017, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21770,6 +43446,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21777,7 +43456,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:17:53", + "timestamp": "2025-07-18T11:57:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21785,14 +43464,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1391, + "id": 1018, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21814,6 +43498,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21821,7 +43508,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:17:53", + "timestamp": "2025-07-18T11:57:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -21829,14 +43516,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 827, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1013, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21858,6 +43550,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21865,22 +43560,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:26:15", - "solve_time": 51.45907402038574, + "timestamp": "2025-07-18T11:57:36", + "solve_time": 0.4676029682159424, "status": "OPTIMAL", - "primal_objective_value": -629.1552658005733, - "dual_objective_value": -629.1552929633996, - "duality_gap": 2.716282631354261e-05, - "primal_infeasibility": 2.369371882908525e-12, - "dual_infeasibility": 0.0, - "iterations": null + "primal_objective_value": -10.956014425126677, + "dual_objective_value": -10.95598391306363, + "duality_gap": -3.0512063046828075e-05, + "primal_infeasibility": 2.723109573191675e-06, + "dual_infeasibility": 0.00048699575464379656, + "iterations": 74125, + "memo": { + "solver_solve_time": 0.46430825, + "problem_class": "SDP" + } }, { - "id": 1612, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1014, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21902,29 +43601,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:56", - "solve_time": 5.390393125, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:57:36", + "solve_time": 0.009016036987304688, "status": "OPTIMAL", - "primal_objective_value": -629.1552924715518, - "dual_objective_value": -629.155292824143, - "duality_gap": 3.52591200680763e-07, - "primal_infeasibility": 1.783924970601402e-12, - "dual_infeasibility": 6.427897648455087e-18, - "iterations": 17 + "primal_objective_value": -10.967063926554635, + "dual_objective_value": -10.967063926554637, + "duality_gap": 1.7763568394002505e-15, + "primal_infeasibility": 5.723703689342138e-10, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1497, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1615, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21946,6 +43653,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -21953,22 +43663,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:41:57", - "solve_time": 40.736246875, - "status": "NUM_ERROR", - "primal_objective_value": -629.1548520668078, - "dual_objective_value": -629.147034816694, - "duality_gap": 0.007817250113816954, - "primal_infeasibility": 2.5361087944180886e-08, - "dual_infeasibility": 4.2544376286179536e-11, - "iterations": 24 + "timestamp": "2025-07-19T14:02:40", + "solve_time": 0.3056114583333333, + "status": "UNKNOWN", + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.3056114583333333, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -10.969253774110527, + "dual_objective_value": -10.968153281488807, + "duality_gap": 0.0011004926217204059, + "primal_infeasibility": 3.1722464136341583e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1392, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1472, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "equalG11", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -21990,29 +43724,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:17:54", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:38:40", + "solve_time": 0.291179125, + "status": "NUM_ERROR", + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.291179125, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -10.967252738065635, + "dual_objective_value": -10.967220837229675, + "duality_gap": 3.190083596038562e-05, + "primal_infeasibility": 2.413420742969955e-07, + "dual_infeasibility": 3.97875826735212e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:37", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 835, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1019, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22034,6 +43795,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22041,7 +43805,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:33:09", + "timestamp": "2025-07-18T11:57:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -22049,14 +43813,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 836, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2228, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22078,29 +43847,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:33:10", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:22", + "solve_time": 0.0054168701171875, + "status": "OPTIMAL", + "primal_objective_value": -56.95458417169877, + "dual_objective_value": -56.954584100815666, + "duality_gap": -7.088310383096541e-08, + "primal_infeasibility": 1.2182104934532567e-06, + "dual_infeasibility": 1.935530761916017e-08, + "iterations": 21, + "memo": { + "solver_solve_time": 0.00223204, + "problem_class": "SDP" + } }, { - "id": 837, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2229, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22122,29 +43898,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:33:10", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:23", + "solve_time": 0.04180288314819336, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 838, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 850, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22166,6 +43949,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22173,7 +43959,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:33:11", + "timestamp": "2025-07-16T11:35:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -22181,14 +43967,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 834, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 851, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22210,6 +44001,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22217,22 +44011,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:32:58", - "solve_time": 97.77459287643433, - "status": "OPTIMAL", - "primal_objective_value": -4005.6011905473815, - "dual_objective_value": -4005.6013169406397, - "duality_gap": 0.00012639325814234326, - "primal_infeasibility": 7.832639830764701e-11, - "dual_infeasibility": 0.0, - "iterations": null + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1613, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 852, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22254,29 +44053,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:29", - "solve_time": 8.547652125, - "status": "OPTIMAL", - "primal_objective_value": -4005.601288017268, - "dual_objective_value": -4005.601316366677, - "duality_gap": 2.834940914908657e-05, - "primal_infeasibility": 5.789644333861485e-11, - "dual_infeasibility": 0.0, - "iterations": 18 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1498, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 853, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22298,29 +44105,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:43:46", - "solve_time": 84.32632358333333, - "status": "NUM_ERROR", - "primal_objective_value": -4005.599767044349, - "dual_objective_value": -4005.599767799965, - "duality_gap": 7.556159289379138e-07, - "primal_infeasibility": 8.95433741624491e-09, - "dual_infeasibility": 5.676034290944519e-12, - "iterations": 30 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 839, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2230, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "equalG51", + "problem_name": "hinf3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -22342,30 +44157,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:33:12", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:23", + "solve_time": 0.05362105369567871, + "status": "OPTIMAL", + "primal_objective_value": -56.95290556196835, + "dual_objective_value": -56.95257093437306, + "duality_gap": -0.00033462759529356845, + "primal_infeasibility": 4.360158022165924e-06, + "dual_infeasibility": 9.60043824422556e-06, + "iterations": 7875, + "memo": { + "solver_solve_time": 0.050502125, + "problem_class": "SDP" + } }, { - "id": 1695, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 2227, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "gpp100", - "problem_type": "UNKNOWN", + "problem_name": "hinf3", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22386,30 +44208,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:05", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:22", + "solve_time": 0.008648872375488281, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -56.946017137117806, + "dual_objective_value": -56.94340849281433, + "duality_gap": -0.0026086443034785134, + "primal_infeasibility": 1.9356932179028497e-06, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1562, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1616, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp100", - "problem_type": "UNKNOWN", + "problem_name": "hinf3", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22430,6 +44260,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22437,23 +44270,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:39", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:02:45", + "solve_time": 0.3675725833333333, + "status": "OPTIMAL", + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0.0, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3675725833333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -56.96785514137487, + "dual_objective_value": -56.95432364943337, + "duality_gap": 0.013531491941499496, + "primal_infeasibility": 6.41331617518588e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1696, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1473, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp124-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf3", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22474,6 +44331,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22481,23 +44341,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:10", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:38:46", + "solve_time": 0.2846183333333333, + "status": "NUM_ERROR", + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.2846183333333333, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -56.94166534866042, + "dual_objective_value": -56.93662791786083, + "duality_gap": 0.005037430799589515, + "primal_infeasibility": 4.0341715618686706e-07, + "dual_infeasibility": 8.598366229162091e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1563, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 854, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "gpp124-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf3", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22518,30 +44402,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:44", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T11:35:37", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1697, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1022, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "gpp124-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22562,30 +44454,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:15", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.005476951599121094, + "status": "OPTIMAL", + "primal_objective_value": -274.76580456156256, + "dual_objective_value": -274.7658044528675, + "duality_gap": -1.0869507605093531e-07, + "primal_infeasibility": 2.9587869724570718e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.002260333, + "problem_class": "SDP" + } }, { - "id": 1564, - "solver_name": "matlab_sedumi", + "id": 1023, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "gpp124-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22606,30 +44505,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:49", - "solve_time": null, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.052572011947631836, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1698, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1026, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "gpp124-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22650,30 +44556,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:20", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1565, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1027, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "gpp124-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22694,30 +44608,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:54", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1699, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1028, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "gpp124-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22738,30 +44660,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:25", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1566, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1029, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "gpp124-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22782,30 +44712,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:59", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1700, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1024, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "gpp250-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22826,30 +44764,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:30", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.05102682113647461, + "status": "OPTIMAL", + "primal_objective_value": -274.8169686239859, + "dual_objective_value": -274.8175011426577, + "duality_gap": 0.0005325186718323494, + "primal_infeasibility": 1.5793940777175766e-05, + "dual_infeasibility": 5.0915418172079886e-09, + "iterations": 7175, + "memo": { + "solver_solve_time": 0.047997041000000004, + "problem_class": "SDP" + } }, { - "id": 1567, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1025, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "gpp250-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22870,30 +44815,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:04", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:42", + "solve_time": 0.01003885269165039, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -274.7642606658802, + "dual_objective_value": -274.7640791113404, + "duality_gap": -0.00018155453983581538, + "primal_infeasibility": 2.067736809821613e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1701, + "id": 1617, "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp250-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22914,6 +44867,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22921,23 +44877,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:35", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:02:51", + "solve_time": 0.348355125, + "status": "MAX_ITER", + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.348355125, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -274.76574859289997, + "dual_objective_value": -274.7647974867353, + "duality_gap": 0.0009511061646776398, + "primal_infeasibility": 8.935314643369996e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1568, + "id": 1474, "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp250-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -22958,6 +44938,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -22965,23 +44948,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:09", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:38:51", + "solve_time": 0.348588375, + "status": "OPTIMAL", + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.348588375, + "setup_time": [], + "iterations": 27, + "primal_objective_value": -274.76402427242704, + "dual_objective_value": -274.76401549857536, + "duality_gap": 8.773851675414335e-06, + "primal_infeasibility": 6.1072960080975595e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1702, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1030, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "gpp250-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf4", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23002,30 +45009,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:40", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:58:51", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1569, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1033, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "gpp250-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23046,30 +45061,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:14", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.0060749053955078125, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -362.4299072470292, + "dual_objective_value": -362.4295803431538, + "duality_gap": -0.000326903875361495, + "primal_infeasibility": 4.958727500256144e-06, + "dual_infeasibility": 0.0, + "iterations": 18, + "memo": { + "solver_solve_time": 0.002001209, + "problem_class": "SDP" + } }, { - "id": 1703, - "solver_name": "matlab_sdpt3", + "id": 1034, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "gpp250-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23090,30 +45112,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:45", - "solve_time": null, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.0457768440246582, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1570, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1037, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "gpp250-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23134,30 +45163,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:19", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1704, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1038, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "gpp500-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23178,30 +45215,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:50", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1571, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1039, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "gpp500-1", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23222,30 +45267,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:24", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1705, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1040, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "gpp500-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23266,30 +45319,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:55", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1572, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1035, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "gpp500-2", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23310,30 +45371,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:29", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.08220601081848145, + "status": "OPTIMAL", + "primal_objective_value": -320.9234414376666, + "dual_objective_value": -320.92497928960995, + "duality_gap": 0.0015378519433397742, + "primal_infeasibility": 3.052930540788306e-06, + "dual_infeasibility": 0.00027660204589100273, + "iterations": 13300, + "memo": { + "solver_solve_time": 0.07908475, + "problem_class": "SDP" + } }, { - "id": 1706, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1036, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "gpp500-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23354,30 +45422,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:59", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T11:59:50", + "solve_time": 0.008898258209228516, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -363.08837704719326, + "dual_objective_value": -362.65312853712743, + "duality_gap": -0.43524851006583276, + "primal_infeasibility": 0.0031096059091866054, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1573, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1618, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp500-3", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23398,6 +45474,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23405,23 +45484,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:33", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:02:56", + "solve_time": 0.30704, + "status": "UNKNOWN", + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.30704, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -362.8407662937241, + "dual_objective_value": -362.5463311167045, + "duality_gap": 0.29443517701957944, + "primal_infeasibility": 5.076986649325987e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1707, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1475, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "gpp500-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23442,6 +45545,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23449,23 +45555,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:37:04", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:38:57", + "solve_time": 0.29583345833333335, + "status": "NUM_ERROR", + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.29583345833333335, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -362.1389840878955, + "dual_objective_value": -362.19928444461704, + "duality_gap": 0.06030035672154099, + "primal_infeasibility": 4.623878615933405e-05, + "dual_infeasibility": 1.468529060102308e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1574, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1041, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "gpp500-4", - "problem_type": "UNKNOWN", + "problem_name": "hinf5", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -23486,29 +45616,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:17:38", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:00:00", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1000, + "id": 1044, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23530,6 +45668,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23537,22 +45678,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:01", - "solve_time": 0.005572795867919922, + "timestamp": "2025-07-18T12:02:31", + "solve_time": 0.005522966384887695, "status": "OPTIMAL", - "primal_objective_value": -2.0326681219679923, - "dual_objective_value": -2.0326681159848516, - "duality_gap": -5.983140649590268e-09, - "primal_infeasibility": 1.5142732808798136e-09, - "dual_infeasibility": 5.8528406408805414e-08, - "iterations": 27 + "primal_objective_value": -448.95023164103816, + "dual_objective_value": -448.9502285290299, + "duality_gap": -3.1120082439883845e-06, + "primal_infeasibility": 4.4077878809117167e-07, + "dual_infeasibility": 0.0, + "iterations": 23, + "memo": { + "solver_solve_time": 0.002378126, + "problem_class": "SDP" + } }, { - "id": 1001, + "id": 1045, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23574,6 +45719,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23581,22 +45729,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:01", - "solve_time": 0.05380678176879883, + "timestamp": "2025-07-18T12:02:31", + "solve_time": 0.05508112907409668, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1004, + "id": 1048, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23618,6 +45770,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23625,7 +45780,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:13", + "timestamp": "2025-07-18T12:02:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -23633,14 +45788,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1005, + "id": 1049, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23662,6 +45822,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23669,7 +45832,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:13", + "timestamp": "2025-07-18T12:02:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -23677,14 +45840,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1006, + "id": 1050, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23706,6 +45874,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23713,7 +45884,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:13", + "timestamp": "2025-07-18T12:02:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -23721,14 +45892,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1007, + "id": 1051, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23750,6 +45926,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23757,7 +45936,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:13", + "timestamp": "2025-07-18T12:02:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -23765,14 +45944,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1002, + "id": 1046, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23794,6 +45978,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23801,22 +45988,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:02", - "solve_time": 0.5455272197723389, + "timestamp": "2025-07-18T12:02:32", + "solve_time": 0.6322319507598877, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -2.034025995512536, - "dual_objective_value": -2.033865317055243, - "duality_gap": -0.00016067845729317298, - "primal_infeasibility": 2.999590308495669e-06, - "dual_infeasibility": 0.0, - "iterations": 100000 + "primal_objective_value": -245.90113198641467, + "dual_objective_value": -245.85737180839376, + "duality_gap": -0.043760178020903595, + "primal_infeasibility": 1.3088894176536186e-05, + "dual_infeasibility": 0.0003530484760489283, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.627335833, + "problem_class": "SDP" + } }, { - "id": 1003, + "id": 1047, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23838,6 +46029,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23845,22 +46039,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:02", - "solve_time": 0.008548974990844727, - "status": "OPTIMAL", - "primal_objective_value": -2.0326162960518173, - "dual_objective_value": -2.0326162960518173, - "duality_gap": 0.0, - "primal_infeasibility": 3.967316966357652e-09, + "timestamp": "2025-07-18T12:02:32", + "solve_time": 0.011322736740112305, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -448.97876320335996, + "dual_objective_value": -448.9556735151818, + "duality_gap": -0.023089688178174583, + "primal_infeasibility": 3.2823630729197306e-05, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1614, + "id": 1619, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23882,6 +46081,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23889,22 +46091,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:34", - "solve_time": 0.37224925, - "status": "UNKNOWN", - "primal_objective_value": -2.0327304439087186, - "dual_objective_value": -2.032679460642064, - "duality_gap": 5.098326665464725e-05, - "primal_infeasibility": 2.666994274501407e-08, - "dual_infeasibility": 0.0, - "iterations": 22 + "timestamp": "2025-07-19T14:03:02", + "solve_time": 0.3865935, + "status": "MAX_ITER", + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.3865935, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -448.94845306947616, + "dual_objective_value": -448.93787068369375, + "duality_gap": 0.01058238578241344, + "primal_infeasibility": 1.0795193288541605e-05, + "dual_infeasibility": 2.9425725883582585e-11, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:02:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1471, + "id": 1476, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf1", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -23926,6 +46152,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -23933,66 +46162,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:35", - "solve_time": 0.38086575, + "timestamp": "2025-07-19T12:39:02", + "solve_time": 0.34503904166666666, "status": "NUM_ERROR", - "primal_objective_value": -2.032702691217913, - "dual_objective_value": -2.0326573971090376, - "duality_gap": 4.5294108875548744e-05, - "primal_infeasibility": 1.1139356829973714e-08, - "dual_infeasibility": 0.0, - "iterations": 24 + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.34503904166666666, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -448.93866526508225, + "dual_objective_value": -448.93735904243533, + "duality_gap": 0.0013062226469173766, + "primal_infeasibility": 7.16453106043704e-08, + "dual_infeasibility": 1.0964487510881784e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:38:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1008, + "id": 1052, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:55:13", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 923, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24014,6 +46223,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24021,22 +46233,78 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:57", - "solve_time": 0.006523847579956055, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -108.78737562810723, - "dual_objective_value": -108.78736989216672, - "duality_gap": -5.73594050479187e-06, - "primal_infeasibility": 7.50016586494756e-08, - "dual_infeasibility": 8.372072031670971e-08, - "iterations": 24 + "timestamp": "2025-07-18T12:02:41", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 924, + "id": 1055, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "hinf7", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:03:23", + "solve_time": 0.00506281852722168, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CLARABEL' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } + }, + { + "id": 1056, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24058,6 +46326,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24065,22 +46336,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:57", - "solve_time": 0.0596768856048584, + "timestamp": "2025-07-18T12:03:23", + "solve_time": 0.03922271728515625, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 927, + "id": 1059, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24102,6 +46377,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24109,7 +46387,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:23:11", + "timestamp": "2025-07-18T12:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24117,14 +46395,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 928, + "id": 1060, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24146,6 +46429,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24153,7 +46439,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:23:11", + "timestamp": "2025-07-18T12:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24161,14 +46447,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 929, + "id": 1061, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24190,6 +46481,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24197,7 +46491,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:23:11", + "timestamp": "2025-07-18T12:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24205,14 +46499,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 930, + "id": 1062, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24234,6 +46533,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24241,7 +46543,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:23:11", + "timestamp": "2025-07-18T12:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24249,14 +46551,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 925, + "id": 1057, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24278,6 +46585,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24285,22 +46595,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:57", - "solve_time": 0.7690088748931885, - "status": "OPTIMAL", - "primal_objective_value": -109.67066975246388, - "dual_objective_value": -109.6700504066821, - "duality_gap": -0.0006193457817857961, - "primal_infeasibility": 2.294628633625865e-06, - "dual_infeasibility": 3.7480545771311504e-06, - "iterations": 97050 + "timestamp": "2025-07-18T12:03:24", + "solve_time": 0.6557118892669678, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": -389.32499417666725, + "dual_objective_value": -389.3066200564397, + "duality_gap": -0.018374120227520052, + "primal_infeasibility": 6.437354049320336e-06, + "dual_infeasibility": 1.5407433103673238e-06, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.652232833, + "problem_class": "SDP" + } }, { - "id": 926, + "id": 1058, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24322,6 +46636,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24329,22 +46646,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:57", - "solve_time": 0.012375831604003906, + "timestamp": "2025-07-18T12:03:24", + "solve_time": 0.007824182510375977, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -108.86347113724204, - "dual_objective_value": -108.78673318394273, - "duality_gap": -0.07673795329931465, - "primal_infeasibility": 8.231747852466604e-07, + "primal_objective_value": -386.2729744082578, + "dual_objective_value": -394.11795931873803, + "duality_gap": 7.844984910480207, + "primal_infeasibility": 0.0010676527612919265, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1623, + "id": 1620, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24366,6 +46688,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24373,22 +46698,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:23", - "solve_time": 0.365393375, - "status": "UNKNOWN", - "primal_objective_value": -108.7683048840259, - "dual_objective_value": -108.77818212309559, - "duality_gap": 0.009877239069695065, - "primal_infeasibility": 2.3595268341152298e-05, + "timestamp": "2025-07-19T14:03:07", + "solve_time": 0.321014, + "status": "OPTIMAL", + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, "dual_infeasibility": 0.0, - "iterations": 23 + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.321014, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -390.8268127270961, + "dual_objective_value": -390.81955811039285, + "duality_gap": 0.007254616703278316, + "primal_infeasibility": 5.153919837286196e-06, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1480, + "id": 1477, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24410,6 +46759,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24417,22 +46769,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:24", - "solve_time": 0.3626290833333333, + "timestamp": "2025-07-19T12:39:08", + "solve_time": 0.30022125, "status": "NUM_ERROR", - "primal_objective_value": -108.75993162203638, - "dual_objective_value": -108.75125626509862, - "duality_gap": 0.008675356937757783, - "primal_infeasibility": 5.284061049311702e-07, - "dual_infeasibility": 0.0, - "iterations": 24 + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.30022125, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -390.4187062005368, + "dual_objective_value": -388.9712939688352, + "duality_gap": 1.4474122317016054, + "primal_infeasibility": 2.1674897967340183e-06, + "dual_infeasibility": 1.349616784492387e-08, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 931, + "id": 1063, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf10", + "problem_name": "hinf7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24454,6 +46830,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24461,7 +46840,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:23:11", + "timestamp": "2025-07-18T12:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24469,14 +46848,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 934, + "id": 901, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24498,6 +46882,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24505,22 +46892,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:14", - "solve_time": 0.00967717170715332, + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.0065250396728515625, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -65.90991351702351, - "dual_objective_value": -65.90990389505751, - "duality_gap": -9.62196600085008e-06, - "primal_infeasibility": 3.264652971267897e-08, - "dual_infeasibility": 7.961207252939813e-10, - "iterations": 25 + "primal_objective_value": -116.162359822706, + "dual_objective_value": -116.16235950573696, + "duality_gap": -3.1696903590727743e-07, + "primal_infeasibility": 7.420952338087494e-07, + "dual_infeasibility": 3.2950076855126425e-07, + "iterations": 29, + "memo": { + "solver_solve_time": 0.003015376, + "problem_class": "SDP" + } }, { - "id": 935, + "id": 902, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24542,6 +46933,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24549,22 +46943,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:14", - "solve_time": 0.06746697425842285, + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.03650498390197754, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 938, + "id": 905, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24586,6 +46984,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24593,7 +46994,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:48", + "timestamp": "2025-07-16T15:21:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24601,14 +47002,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 939, + "id": 906, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24630,6 +47036,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24637,7 +47046,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:48", + "timestamp": "2025-07-16T15:21:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24645,58 +47054,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 940, + "id": 907, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf11", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:48", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 941, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", - "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24718,6 +47088,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24725,7 +47098,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:48", + "timestamp": "2025-07-16T15:21:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24733,14 +47106,71 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 936, + "id": 908, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "problem_library": "SDPLIB", + "problem_name": "hinf8", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-16T15:21:25", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 903, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24762,6 +47192,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24769,22 +47202,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:15", - "solve_time": 1.2248289585113525, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -67.03265487888538, - "dual_objective_value": -66.9425045006043, - "duality_gap": -0.09015037828108063, - "primal_infeasibility": 7.271735945414379e-06, - "dual_infeasibility": 2.372132910723892e-12, - "iterations": 100000 + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.2217872142791748, + "status": "OPTIMAL", + "primal_objective_value": -113.4663274817136, + "dual_objective_value": -113.46736346299392, + "duality_gap": 0.0010359812803102386, + "primal_infeasibility": 2.0881037650067233e-06, + "dual_infeasibility": 2.9352242087893714e-05, + "iterations": 33450, + "memo": { + "solver_solve_time": 0.218281083, + "problem_class": "SDP" + } }, { - "id": 937, + "id": 904, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24806,6 +47243,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24813,22 +47253,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:15", - "solve_time": 0.012714862823486328, + "timestamp": "2025-07-16T15:21:07", + "solve_time": 0.008577823638916016, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -65.96092354028318, - "dual_objective_value": -65.91206628197119, - "duality_gap": -0.04885725831198329, - "primal_infeasibility": 4.861398484093877e-07, + "primal_objective_value": -116.18084367885152, + "dual_objective_value": -116.17297265490086, + "duality_gap": -0.007871023950656308, + "primal_infeasibility": 2.1524411488941546e-05, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1624, + "id": 1621, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24850,6 +47295,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24857,22 +47305,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:29", - "solve_time": 0.4292201666666667, - "status": "UNKNOWN", - "primal_objective_value": -65.91623172173267, - "dual_objective_value": -65.89340793308176, - "duality_gap": 0.022823788650910615, - "primal_infeasibility": 1.465391663685626e-07, + "timestamp": "2025-07-19T14:03:13", + "solve_time": 0.3580920416666667, + "status": "MAX_ITER", + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, "dual_infeasibility": 0.0, - "iterations": 25 + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.3580920416666667, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -116.18907747348399, + "dual_objective_value": -116.16764622467993, + "duality_gap": 0.02143124880406333, + "primal_infeasibility": 1.107192932812266e-05, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1481, + "id": 1478, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24894,6 +47366,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24901,22 +47376,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:30", - "solve_time": 0.3754861666666667, + "timestamp": "2025-07-19T12:39:13", + "solve_time": 0.3128221666666667, "status": "NUM_ERROR", - "primal_objective_value": -65.88284488105815, - "dual_objective_value": -65.88010110073674, - "duality_gap": 0.002743780321409872, - "primal_infeasibility": 1.2872974305043217e-07, - "dual_infeasibility": 0.0, - "iterations": 26 + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3128221666666667, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -116.14800748522454, + "dual_objective_value": -116.14764044645105, + "duality_gap": 0.0003670387734899805, + "primal_infeasibility": 5.243531762309649e-07, + "dual_infeasibility": 1.3890768653808889e-09, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 942, + "id": 909, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf11", + "problem_name": "hinf8", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24938,6 +47437,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24945,7 +47447,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:24:48", + "timestamp": "2025-07-16T15:21:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -24953,14 +47455,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 956, + "id": 912, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -24982,6 +47489,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -24989,22 +47499,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:25", - "solve_time": 0.01746988296508789, + "timestamp": "2025-07-16T15:22:05", + "solve_time": 0.006279945373535156, "status": "OPTIMAL", - "primal_objective_value": -3.2433629986793885e-05, - "dual_objective_value": -3.2432575308661486e-05, - "duality_gap": -1.0546781323988747e-09, - "primal_infeasibility": 8.300260965155049e-06, - "dual_infeasibility": 0.0, - "iterations": 44 + "primal_objective_value": -236.2492537893636, + "dual_objective_value": -236.24925167798062, + "duality_gap": -2.111382968905673e-06, + "primal_infeasibility": 1.1227693010097353e-09, + "dual_infeasibility": 7.503567730794685e-13, + "iterations": 27, + "memo": { + "solver_solve_time": 0.002816334, + "problem_class": "SDP" + } }, { - "id": 957, + "id": 913, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25026,6 +47540,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25033,22 +47550,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:26", - "solve_time": 0.3970298767089844, + "timestamp": "2025-07-16T15:22:05", + "solve_time": 0.07575297355651855, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 960, + "id": 916, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25070,6 +47591,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25077,7 +47601,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:36", + "timestamp": "2025-07-16T15:22:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25085,14 +47609,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 961, + "id": 917, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25114,6 +47643,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25121,7 +47653,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:36", + "timestamp": "2025-07-16T15:22:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25129,14 +47661,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 962, + "id": 918, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25158,6 +47695,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25165,7 +47705,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:36", + "timestamp": "2025-07-16T15:22:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25173,14 +47713,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 963, + "id": 919, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25202,6 +47747,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25209,7 +47757,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:37", + "timestamp": "2025-07-16T15:22:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25217,14 +47765,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 958, + "id": 914, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25246,6 +47799,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25253,22 +47809,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:28", - "solve_time": 1.8517041206359863, + "timestamp": "2025-07-16T15:22:06", + "solve_time": 0.6299283504486084, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -1.5660892533183435, - "dual_objective_value": -1.550972805649461, - "duality_gap": -0.015116447668882538, - "primal_infeasibility": 1.2713713263916197e-07, - "dual_infeasibility": 9.437455397904784e-07, - "iterations": 100000 + "primal_objective_value": -23.995993470322126, + "dual_objective_value": -23.73307395594187, + "duality_gap": -0.2629195143802576, + "primal_infeasibility": 0.0002501696048966344, + "dual_infeasibility": 4.7055340393382825e-06, + "iterations": 100000, + "memo": { + "solver_solve_time": 0.626416875, + "problem_class": "SDP" + } }, { - "id": 959, + "id": 915, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25290,6 +47850,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25297,22 +47860,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:28", - "solve_time": 0.01336216926574707, + "timestamp": "2025-07-16T15:22:06", + "solve_time": 0.02733016014099121, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -26.28462100943706, - "dual_objective_value": -3.218764582272006, - "duality_gap": -23.065856427165055, - "primal_infeasibility": 0.00026649547088509193, - "dual_infeasibility": 0.0, - "iterations": null + "primal_objective_value": -236.24929860181874, + "dual_objective_value": -236.24925825295142, + "duality_gap": -4.034886731574261e-05, + "primal_infeasibility": 6.211843885658271e-06, + "dual_infeasibility": 1.1701336108488862e-17, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1625, + "id": 1622, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25334,6 +47902,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25341,22 +47912,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:34", - "solve_time": 0.5892792083333334, + "timestamp": "2025-07-19T14:03:19", + "solve_time": 0.3677940416666667, "status": "UNKNOWN", - "primal_objective_value": -2.2571558268484783e-05, - "dual_objective_value": -2.9572121961358873e-05, - "duality_gap": 7.00056369287409e-06, - "primal_infeasibility": 1.538325025557428e-12, - "dual_infeasibility": 0.0, - "iterations": 61 + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.3677940416666667, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -236.24926143119387, + "dual_objective_value": -236.2492582522059, + "duality_gap": 3.178987981300452e-06, + "primal_infeasibility": 4.333392854983704e-07, + "dual_infeasibility": 6.696508028901661e-17, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:03:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1482, + "id": 1479, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25378,6 +47973,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25385,22 +47983,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:35", - "solve_time": 0.3087037083333333, + "timestamp": "2025-07-19T12:39:19", + "solve_time": 0.317706625, "status": "OPTIMAL", - "primal_objective_value": -0.11791225666476954, - "dual_objective_value": -0.09905856082734718, - "duality_gap": 0.018853695837422357, - "primal_infeasibility": 5.037944322430809e-09, - "dual_infeasibility": 0.0, - "iterations": 29 + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.317706625, + "setup_time": [], + "iterations": 26, + "primal_objective_value": -236.24742814369876, + "dual_objective_value": -236.2473437618947, + "duality_gap": 8.438180404368723e-05, + "primal_infeasibility": 5.8628976583948846e-09, + "dual_infeasibility": 6.012462469094062e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:39:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 964, + "id": 920, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf12_sdp", + "problem_name": "hinf9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25422,6 +48044,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25429,7 +48054,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:48:37", + "timestamp": "2025-07-16T15:22:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25437,14 +48062,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 967, + "id": 1110, "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25466,6 +48096,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25473,22 +48106,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:39", - "solve_time": 0.014467954635620117, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T12:10:33", + "solve_time": 5.780447959899902, + "status": "OPTIMAL", + "primal_objective_value": -629.1647805357129, + "dual_objective_value": -629.1647805350874, + "duality_gap": -6.255049811443314e-10, + "primal_infeasibility": 3.358572693912759e-15, + "dual_infeasibility": 1.776705970627518e-11, + "iterations": 16, + "memo": { + "solver_solve_time": 2.942479084, + "problem_class": "SDP" + } }, { - "id": 968, + "id": 1111, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25510,6 +48147,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25517,22 +48157,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:39", - "solve_time": 0.08350205421447754, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T12:16:28", + "solve_time": 228.55329608917236, + "status": "OPTIMAL", + "primal_objective_value": -629.1647801726815, + "dual_objective_value": -629.1647801710005, + "duality_gap": -1.6809735825518146e-09, + "primal_infeasibility": 1.2726085361287806e-12, + "dual_infeasibility": 2.1291444400788673e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 971, + "id": 1113, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25554,6 +48199,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25561,7 +48209,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:49", + "timestamp": "2025-07-18T12:37:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25569,14 +48217,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 972, + "id": 1114, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25598,6 +48251,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25605,7 +48261,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:49", + "timestamp": "2025-07-18T12:37:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25613,14 +48269,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 973, + "id": 1115, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25642,6 +48303,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25649,7 +48313,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:49", + "timestamp": "2025-07-18T12:37:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25657,14 +48321,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 974, + "id": 1116, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25686,6 +48355,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25693,7 +48365,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:49", + "timestamp": "2025-07-18T12:37:05", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25701,14 +48373,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 969, + "id": 2274, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25730,29 +48407,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:42", - "solve_time": 2.7371368408203125, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -30.338550177295044, - "dual_objective_value": -30.33799855091353, - "duality_gap": -0.0005516263815152911, - "primal_infeasibility": 5.355726666806104e-06, - "dual_infeasibility": 9.237315025625231e-05, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:37:55", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 970, + "id": 1112, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25774,6 +48458,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25781,22 +48468,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:42", - "solve_time": 0.012221097946166992, - "status": "INFEASIBLE", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T12:36:57", + "solve_time": 6.635096073150635, + "status": "OPTIMAL", + "primal_objective_value": -629.1647613155295, + "dual_objective_value": -629.1647831444957, + "duality_gap": 2.1828966168868646e-05, + "primal_infeasibility": 1.093272639824208e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1626, + "id": 1653, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25818,6 +48510,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25825,22 +48520,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:40", - "solve_time": 0.5201742916666666, - "status": "UNKNOWN", - "primal_objective_value": -44.36054953507353, - "dual_objective_value": -44.352737721585974, - "duality_gap": 0.0078118134875566625, - "primal_infeasibility": 2.34826882611184e-05, - "dual_infeasibility": 1.9677815225005485e-09, - "iterations": 31 + "timestamp": "2025-07-19T14:07:14", + "solve_time": 2.363915125, + "status": "OPTIMAL", + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 2.363915125, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -629.1647770178772, + "dual_objective_value": -629.1647830495338, + "duality_gap": 6.031656539562391e-06, + "primal_infeasibility": 1.487176561555531e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:07:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1483, + "id": 1523, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25862,6 +48581,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25869,22 +48591,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:41", - "solve_time": 0.34354358333333335, - "status": "NUM_ERROR", - "primal_objective_value": -44.98782800411155, - "dual_objective_value": -44.73512547033813, - "duality_gap": 0.2527025337734159, - "primal_infeasibility": 5.0403409648842495e-05, - "dual_infeasibility": 5.164198359985477e-07, - "iterations": 16 + "timestamp": "2025-07-19T12:48:02", + "solve_time": 18.21366383333333, + "status": "OPTIMAL", + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 18.21366383333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -629.1647785850998, + "dual_objective_value": -629.1647785773678, + "duality_gap": 7.73206920712255e-09, + "primal_infeasibility": 1.9597982503383297e-09, + "dual_infeasibility": 3.331356481626968e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:48:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 975, + "id": 1117, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf13_sdp", + "problem_name": "maxG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25906,6 +48652,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -25913,7 +48662,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:50:49", + "timestamp": "2025-07-18T12:37:05", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -25921,14 +48670,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 978, + "id": 2104, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25950,29 +48704,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:12", - "solve_time": 0.029858112335205078, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -12.991620016749662, - "dual_objective_value": -12.991619832202199, - "duality_gap": -1.8454746353313567e-07, - "primal_infeasibility": 7.960100598663184e-08, - "dual_infeasibility": 2.8200844817922423e-07, - "iterations": 25 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:28", + "solve_time": 1.0812201499938965, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 979, + "id": 2105, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -25994,29 +48757,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:12", - "solve_time": 0.1548140048980713, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:30", + "solve_time": 1.0752131938934326, + "status": "SUBPROCESS_ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 982, + "id": 1120, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26038,6 +48810,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26045,7 +48820,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:26", + "timestamp": "2025-07-18T12:48:51", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26053,14 +48828,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 983, + "id": 1121, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26082,6 +48862,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26089,7 +48872,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:26", + "timestamp": "2025-07-18T12:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26097,14 +48880,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 984, + "id": 1122, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26126,6 +48914,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26133,7 +48924,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:26", + "timestamp": "2025-07-18T12:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26141,14 +48932,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 985, + "id": 1123, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26170,6 +48966,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26177,7 +48976,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:26", + "timestamp": "2025-07-18T12:48:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26185,14 +48984,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 980, + "id": 2106, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26214,29 +49018,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:12", - "solve_time": 0.260235071182251, - "status": "OPTIMAL", - "primal_objective_value": -13.016693637637012, - "dual_objective_value": -13.016676436910254, - "duality_gap": -1.7200726757593543e-05, - "primal_infeasibility": 9.713120873550967e-06, - "dual_infeasibility": 3.7424537617375734e-05, - "iterations": 7350 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:31", + "solve_time": 1.0642778873443604, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 981, + "id": 2103, "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26258,29 +49071,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:13", - "solve_time": 0.01812005043029785, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -12.977127071396835, - "dual_objective_value": -13.002235688978644, - "duality_gap": 0.025108617581809156, - "primal_infeasibility": 1.4121816289795736e-05, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:27", + "solve_time": 1.0839791297912598, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1627, + "id": 1654, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26302,6 +49124,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26309,22 +49134,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:46", - "solve_time": 0.5131727916666666, - "status": "UNKNOWN", - "primal_objective_value": -12.989960076415304, - "dual_objective_value": -12.989934206347613, - "duality_gap": 2.5870067691613485e-05, - "primal_infeasibility": 8.66236229712859e-08, - "dual_infeasibility": 9.648370597983024e-10, - "iterations": 31 + "timestamp": "2025-07-19T14:09:36", + "solve_time": 15.456882125, + "status": "OPTIMAL", + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 15.456882125, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1567.6396346092076, + "dual_objective_value": -1567.6396447238442, + "duality_gap": 1.011463655231637e-05, + "primal_infeasibility": 1.502035887240306e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:09:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1484, + "id": 1119, "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26346,29 +49195,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:47", - "solve_time": 0.42435625, - "status": "NUM_ERROR", - "primal_objective_value": -12.994433062802717, - "dual_objective_value": -12.993857944680892, - "duality_gap": 0.0005751181218247581, - "primal_infeasibility": 3.459515165126997e-07, - "dual_infeasibility": 0.0, - "iterations": 24 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T12:48:12", + "solve_time": 300.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } }, { - "id": 986, + "id": 1124, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf14", + "problem_name": "maxG32", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26390,6 +49246,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26397,7 +49256,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:52:26", + "timestamp": "2025-07-18T12:48:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26405,14 +49264,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 989, + "id": 2108, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26434,29 +49298,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:23", - "solve_time": 0.03337883949279785, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -24.823804805102615, - "dual_objective_value": -24.823648667307985, - "duality_gap": -0.00015613779462952948, - "primal_infeasibility": 3.8123673598819243e-06, - "dual_infeasibility": 1.3632493267012344e-06, - "iterations": 19 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:05:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 990, + "id": 2109, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26478,29 +49349,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:23", - "solve_time": 0.12059998512268066, - "status": "ERROR", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:07:47", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 993, + "id": 1127, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26522,6 +49400,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26529,7 +49410,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:37", + "timestamp": "2025-07-18T12:54:43", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26537,14 +49418,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 994, + "id": 1128, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26566,6 +49452,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26573,7 +49462,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:37", + "timestamp": "2025-07-18T12:54:43", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26581,14 +49470,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 995, + "id": 1129, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26610,6 +49504,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26617,7 +49514,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:37", + "timestamp": "2025-07-18T12:54:43", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26625,14 +49522,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 996, + "id": 1130, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26654,6 +49556,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26661,7 +49566,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:37", + "timestamp": "2025-07-18T12:54:44", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26669,14 +49574,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 991, + "id": 2110, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26698,73 +49608,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:28", - "solve_time": 4.816857099533081, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -6.535899836686729, - "dual_objective_value": -6.535738728003019, - "duality_gap": -0.0001611086837103315, - "primal_infeasibility": 1.2124638376828503e-05, - "dual_infeasibility": 0.0007877132599741793, - "iterations": 100000 - }, - { - "id": 992, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", - "problem_library": "SDPLIB", - "problem_name": "hinf15", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:28", - "solve_time": 0.018558025360107422, - "status": "INFEASIBLE", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:47", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1628, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2107, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26786,29 +49659,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:52", - "solve_time": 0.5514212916666666, - "status": "UNKNOWN", - "primal_objective_value": -23.987835100185112, - "dual_objective_value": -24.001097916938342, - "duality_gap": 0.0132628167532296, - "primal_infeasibility": 3.144875496622765e-05, - "dual_infeasibility": 6.997893475414923e-09, - "iterations": 29 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:03:45", + "solve_time": 12.59275507926941, + "status": "OPTIMAL", + "primal_objective_value": -4006.255355989173, + "dual_objective_value": -4006.255524702168, + "duality_gap": 0.0001687129947640642, + "primal_infeasibility": 2.0941798250870906e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1485, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1673, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26830,6 +49711,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26837,22 +49721,117 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:52", - "solve_time": 0.3233525, - "status": "NUM_ERROR", - "primal_objective_value": -24.83998341547683, - "dual_objective_value": -24.214925261340976, - "duality_gap": 0.6250581541358535, - "primal_infeasibility": 0.000150801335775723, - "dual_infeasibility": 4.4160427926549335e-06, - "iterations": 16 + "timestamp": "2025-07-19T14:26:27", + "solve_time": 5.433042291666666, + "status": "OPTIMAL", + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0.0, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.433042291666666, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -4006.2555195572245, + "dual_objective_value": -4006.2555216808855, + "duality_gap": 2.1236610336927697e-06, + "primal_infeasibility": 7.797328522618889e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:26:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 997, + "id": 1542, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "maxG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:01:57", + "solve_time": 43.0097865, + "status": "OPTIMAL", + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 43.0097865, + "setup_time": [], + "iterations": 22, + "primal_objective_value": -4006.255460000534, + "dual_objective_value": -4006.255459886479, + "duality_gap": 1.1405518307583407e-07, + "primal_infeasibility": 1.6434551009770762e-09, + "dual_infeasibility": 1.1291850783925127e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:01:54", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1131, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf15", + "problem_name": "maxG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26874,6 +49853,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -26881,7 +49863,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:53:37", + "timestamp": "2025-07-18T12:54:44", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -26889,14 +49871,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1011, + "id": 2112, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26918,29 +49905,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:35", - "solve_time": 0.005145072937011719, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:49", + "solve_time": 0.2541928291320801, "status": "OPTIMAL", - "primal_objective_value": -10.967598918863468, - "dual_objective_value": -10.96759886205494, - "duality_gap": -5.6808527659768515e-08, - "primal_infeasibility": 1.9892414732039526e-07, - "dual_infeasibility": 0.0, - "iterations": 17 - }, - { - "id": 1012, + "primal_objective_value": -226.15735056371446, + "dual_objective_value": -226.15735056120263, + "duality_gap": -2.511825414330815e-09, + "primal_infeasibility": 4.677724965457351e-16, + "dual_infeasibility": 8.809188623572417e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 0.246065042, + "problem_class": "SDP" + } + }, + { + "id": 2113, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -26962,29 +49956,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:35", - "solve_time": 0.03723597526550293, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1015, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:50", + "solve_time": 0.5887832641601562, + "status": "OPTIMAL", + "primal_objective_value": -226.15734160717605, + "dual_objective_value": -226.15734155551763, + "duality_gap": -5.165841798770998e-08, + "primal_infeasibility": 6.202424795825198e-14, + "dual_infeasibility": 8.902537162396245e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2357, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27006,14 +50008,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:53", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27021,14 +50026,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1016, + "id": 2359, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27050,14 +50060,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:53", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:06", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27065,14 +50078,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1017, + "id": 2360, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27094,14 +50112,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:53", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27109,14 +50130,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1018, + "id": 2358, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27138,14 +50164,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:53", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:05", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27153,14 +50182,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1013, + "id": 2114, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27182,29 +50216,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:36", - "solve_time": 0.4676029682159424, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:52", + "solve_time": 1.3103270530700684, "status": "OPTIMAL", - "primal_objective_value": -10.956014425126677, - "dual_objective_value": -10.95598391306363, - "duality_gap": -3.0512063046828075e-05, - "primal_infeasibility": 2.723109573191675e-06, - "dual_infeasibility": 0.00048699575464379656, - "iterations": 74125 - }, - { - "id": 1014, + "primal_objective_value": -226.15643832070722, + "dual_objective_value": -226.15570990174183, + "duality_gap": -0.0007284189653944395, + "primal_infeasibility": 4.9409478283232725e-06, + "dual_infeasibility": 2.408292278682985e-07, + "iterations": 1125, + "memo": { + "solver_solve_time": 1.302447541, + "problem_class": "SDP" + } + }, + { + "id": 2111, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27226,29 +50267,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:36", - "solve_time": 0.009016036987304688, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:48", + "solve_time": 0.034883737564086914, "status": "OPTIMAL", - "primal_objective_value": -10.967063926554635, - "dual_objective_value": -10.967063926554637, - "duality_gap": 1.7763568394002505e-15, - "primal_infeasibility": 5.723703689342138e-10, + "primal_objective_value": -226.15734786394398, + "dual_objective_value": -226.15735172707906, + "duality_gap": 3.863135077608604e-06, + "primal_infeasibility": 3.0968379547604032e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1615, + "id": 1826, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27270,29 +50319,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:40", - "solve_time": 0.3056114583333333, - "status": "UNKNOWN", - "primal_objective_value": -10.969253774110527, - "dual_objective_value": -10.968153281488807, - "duality_gap": 0.0011004926217204059, - "primal_infeasibility": 3.1722464136341583e-06, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:38", + "solve_time": 0.3674235416666667, + "status": "OPTIMAL", + "primal_objective_value": -226.15735063849868, + "dual_objective_value": -226.15735153136035, + "duality_gap": 8.928616637149389e-07, + "primal_infeasibility": 2.7784036751600645e-11, "dual_infeasibility": 0.0, - "iterations": 15 - }, - { - "id": 1472, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3674235416666667, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -226.15735063849868, + "dual_objective_value": -226.15735153136035, + "duality_gap": 8.928616637149389e-07, + "primal_infeasibility": 2.7784036751600645e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1852, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27314,29 +50390,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:40", - "solve_time": 0.291179125, - "status": "NUM_ERROR", - "primal_objective_value": -10.967252738065635, - "dual_objective_value": -10.967220837229675, - "duality_gap": 3.190083596038562e-05, - "primal_infeasibility": 2.413420742969955e-07, - "dual_infeasibility": 3.97875826735212e-08, - "iterations": 18 - }, - { - "id": 1019, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:51", + "solve_time": 0.42889166666666667, + "status": "OPTIMAL", + "primal_objective_value": -226.15735066324342, + "dual_objective_value": -226.15735064685092, + "duality_gap": 1.6392505131079815e-08, + "primal_infeasibility": 2.540251644217761e-09, + "dual_infeasibility": 7.337480389552916e-11, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.42889166666666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -226.15735066324342, + "dual_objective_value": -226.15735064685092, + "duality_gap": 1.6392505131079815e-08, + "primal_infeasibility": 2.540251644217761e-09, + "dual_infeasibility": 7.337480389552916e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:48", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2361, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf2", + "problem_name": "mcp100", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27358,14 +50461,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:57:53", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:08", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27373,14 +50479,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 846, + "id": 2116, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27402,29 +50513,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:27", - "solve_time": 0.005463123321533203, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:53", + "solve_time": 0.032792091369628906, "status": "OPTIMAL", - "primal_objective_value": -56.95458417169877, - "dual_objective_value": -56.954584100815666, - "duality_gap": -7.088310383096541e-08, - "primal_infeasibility": 1.2182104934532567e-06, - "dual_infeasibility": 1.935530761916017e-08, - "iterations": 21 - }, - { - "id": 847, + "primal_objective_value": -141.99047689078066, + "dual_objective_value": -141.99047689026875, + "duality_gap": -5.119034085510066e-10, + "primal_infeasibility": 4.156174261174552e-15, + "dual_infeasibility": 4.199415289446605e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.020084, + "problem_class": "SDP" + } + }, + { + "id": 2117, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27446,29 +50564,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:27", - "solve_time": 0.04079627990722656, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 850, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:55", + "solve_time": 1.1706581115722656, + "status": "OPTIMAL", + "primal_objective_value": -141.9904749593561, + "dual_objective_value": -141.99047495055282, + "duality_gap": -8.803283435554476e-09, + "primal_infeasibility": 2.2453515911417613e-13, + "dual_infeasibility": 4.542127396475113e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2362, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27490,14 +50616,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:37", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:08", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27505,14 +50634,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 851, + "id": 2364, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27534,14 +50668,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:37", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:10", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27549,14 +50686,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 852, + "id": 2365, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27578,14 +50720,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:37", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:11", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27593,14 +50738,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 853, + "id": 2363, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27622,14 +50772,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:37", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:09", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27637,14 +50790,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 848, + "id": 2118, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27666,73 +50824,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:27", - "solve_time": 0.053626060485839844, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:03", + "solve_time": 8.35070276260376, "status": "OPTIMAL", - "primal_objective_value": -56.95290556196835, - "dual_objective_value": -56.95257093437306, - "duality_gap": -0.00033462759529356845, - "primal_infeasibility": 4.360158022165924e-06, - "dual_infeasibility": 9.60043824422556e-06, - "iterations": 7875 - }, - { - "id": 849, + "primal_objective_value": -141.98813786178076, + "dual_objective_value": -141.9875838883371, + "duality_gap": -0.0005539734436581512, + "primal_infeasibility": 2.8267894549544556e-06, + "dual_infeasibility": 3.83990291112102e-06, + "iterations": 4350, + "memo": { + "solver_solve_time": 8.337701958, + "problem_class": "SDP" + } + }, + { + "id": 2115, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf3", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:27", - "solve_time": 0.00951695442199707, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -56.946017137117806, - "dual_objective_value": -56.94340849281433, - "duality_gap": -0.0026086443034785134, - "primal_infeasibility": 1.9356932179028497e-06, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1616, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27754,29 +50875,108 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:45", - "solve_time": 0.3675725833333333, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:09:52", + "solve_time": 0.050338029861450195, "status": "OPTIMAL", - "primal_objective_value": -56.96785514137487, - "dual_objective_value": -56.95432364943337, - "duality_gap": 0.013531491941499496, - "primal_infeasibility": 6.41331617518588e-06, + "primal_objective_value": -141.99047575527533, + "dual_objective_value": -141.99047735177834, + "duality_gap": 1.596503011569439e-06, + "primal_infeasibility": 3.982608286351293e-15, "dual_infeasibility": 0.0, - "iterations": 20 + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1473, + "id": 1827, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp124-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:44", + "solve_time": 0.5272229166666667, + "status": "OPTIMAL", + "primal_objective_value": -141.99047525291158, + "dual_objective_value": -141.99047737688758, + "duality_gap": 2.1239760030766774e-06, + "primal_infeasibility": 3.5074058660380328e-12, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5272229166666667, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -141.99047525291158, + "dual_objective_value": -141.99047737688758, + "duality_gap": 2.1239760030766774e-06, + "primal_infeasibility": 3.5074058660380328e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1853, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27798,29 +50998,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:46", - "solve_time": 0.2846183333333333, - "status": "NUM_ERROR", - "primal_objective_value": -56.94166534866042, - "dual_objective_value": -56.93662791786083, - "duality_gap": 0.005037430799589515, - "primal_infeasibility": 4.0341715618686706e-07, - "dual_infeasibility": 8.598366229162091e-08, - "iterations": 18 - }, - { - "id": 854, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:42:57", + "solve_time": 1.2223734583333334, + "status": "OPTIMAL", + "primal_objective_value": -141.99047629355732, + "dual_objective_value": -141.99047628004945, + "duality_gap": 1.3507872154150391e-08, + "primal_infeasibility": 2.947795342213903e-09, + "dual_infeasibility": 1.7867929542859113e-10, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.2223734583333334, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -141.99047629355732, + "dual_objective_value": -141.99047628004945, + "duality_gap": 1.3507872154150391e-08, + "primal_infeasibility": 2.947795342213903e-09, + "dual_infeasibility": 1.7867929542859113e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:42:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2366, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf3", + "problem_name": "mcp124-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27842,14 +51069,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T11:35:37", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:12", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27857,14 +51087,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1022, + "id": 2120, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27886,29 +51121,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:42", - "solve_time": 0.005476951599121094, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:05", + "solve_time": 0.5691618919372559, "status": "OPTIMAL", - "primal_objective_value": -274.76580456156256, - "dual_objective_value": -274.7658044528675, - "duality_gap": -1.0869507605093531e-07, - "primal_infeasibility": 2.9587869724570718e-08, - "dual_infeasibility": 0.0, - "iterations": 22 - }, - { - "id": 1023, + "primal_objective_value": -269.88016869497824, + "dual_objective_value": -269.8801686913607, + "duality_gap": -3.617515176301822e-09, + "primal_infeasibility": 3.335139604959785e-16, + "dual_infeasibility": 1.370718634958635e-10, + "iterations": 11, + "memo": { + "solver_solve_time": 0.556317127, + "problem_class": "SDP" + } + }, + { + "id": 2121, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27930,29 +51172,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:42", - "solve_time": 0.052572011947631836, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1026, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:07", + "solve_time": 1.1793420314788818, + "status": "OPTIMAL", + "primal_objective_value": -269.8801659941921, + "dual_objective_value": -269.88016597458284, + "duality_gap": -1.960927420441294e-08, + "primal_infeasibility": 1.8302081584984527e-14, + "dual_infeasibility": 3.1844196366459363e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2367, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -27974,14 +51224,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:51", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:13", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -27989,14 +51242,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1027, + "id": 2369, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28018,14 +51276,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:51", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:14", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28033,14 +51294,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1028, + "id": 2370, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28062,14 +51328,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:51", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28077,14 +51346,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1029, + "id": 2368, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28106,14 +51380,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:51", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:14", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28121,14 +51398,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1024, + "id": 2122, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28150,29 +51432,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:42", - "solve_time": 0.05102682113647461, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:10", + "solve_time": 2.415357828140259, "status": "OPTIMAL", - "primal_objective_value": -274.8169686239859, - "dual_objective_value": -274.8175011426577, - "duality_gap": 0.0005325186718323494, - "primal_infeasibility": 1.5793940777175766e-05, - "dual_infeasibility": 5.0915418172079886e-09, - "iterations": 7175 - }, - { - "id": 1025, + "primal_objective_value": -269.8801469917551, + "dual_objective_value": -269.8801394704992, + "duality_gap": -7.521255895426293e-06, + "primal_infeasibility": 1.4821257835891417e-06, + "dual_infeasibility": 1.0745562097345573e-07, + "iterations": 1225, + "memo": { + "solver_solve_time": 2.4024067909999998, + "problem_class": "SDP" + } + }, + { + "id": 2119, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28194,29 +51483,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:42", - "solve_time": 0.01003885269165039, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -274.7642606658802, - "dual_objective_value": -274.7640791113404, - "duality_gap": -0.00018155453983581538, - "primal_infeasibility": 2.067736809821613e-08, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:04", + "solve_time": 0.04748392105102539, + "status": "OPTIMAL", + "primal_objective_value": -269.8801629227768, + "dual_objective_value": -269.88017132963336, + "duality_gap": 8.406856579767918e-06, + "primal_infeasibility": 9.623806008572918e-16, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1617, + "id": 1828, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28238,29 +51535,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:51", - "solve_time": 0.348355125, - "status": "MAX_ITER", - "primal_objective_value": -274.76574859289997, - "dual_objective_value": -274.7647974867353, - "duality_gap": 0.0009511061646776398, - "primal_infeasibility": 8.935314643369996e-08, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:49", + "solve_time": 0.541560125, + "status": "OPTIMAL", + "primal_objective_value": -269.88017043292245, + "dual_objective_value": -269.88017065541254, + "duality_gap": 2.2249008679864346e-07, + "primal_infeasibility": 7.365570128801219e-14, "dual_infeasibility": 0.0, - "iterations": 21 - }, - { - "id": 1474, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.541560125, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -269.88017043292245, + "dual_objective_value": -269.88017065541254, + "duality_gap": 2.2249008679864346e-07, + "primal_infeasibility": 7.365570128801219e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1854, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28282,29 +51606,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:51", - "solve_time": 0.348588375, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:03", + "solve_time": 0.8320392083333333, "status": "OPTIMAL", - "primal_objective_value": -274.76402427242704, - "dual_objective_value": -274.76401549857536, - "duality_gap": 8.773851675414335e-06, - "primal_infeasibility": 6.1072960080975595e-09, - "dual_infeasibility": 0.0, - "iterations": 27 - }, - { - "id": 1030, + "primal_objective_value": -269.88017030007154, + "dual_objective_value": -269.8801702946931, + "duality_gap": 5.3784674491907936e-09, + "primal_infeasibility": 9.209708037490611e-10, + "dual_infeasibility": 2.2285924347635445e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.8320392083333333, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -269.88017030007154, + "dual_objective_value": -269.8801702946931, + "duality_gap": 5.3784674491907936e-09, + "primal_infeasibility": 9.209708037490611e-10, + "dual_infeasibility": 2.2285924347635445e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2371, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf4", + "problem_name": "mcp124-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28326,14 +51677,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:58:51", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:16", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28341,14 +51695,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1033, + "id": 2124, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28370,29 +51729,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:59:50", - "solve_time": 0.0060749053955078125, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -362.4299072470292, - "dual_objective_value": -362.4295803431538, - "duality_gap": -0.000326903875361495, - "primal_infeasibility": 4.958727500256144e-06, - "dual_infeasibility": 0.0, - "iterations": 18 - }, - { - "id": 1034, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:14", + "solve_time": 3.524592161178589, + "status": "OPTIMAL", + "primal_objective_value": -467.7501129260428, + "dual_objective_value": -467.75011292377854, + "duality_gap": -2.2642439034825657e-09, + "primal_infeasibility": 2.2015867814748726e-15, + "dual_infeasibility": 2.7290545959913828e-11, + "iterations": 14, + "memo": { + "solver_solve_time": 3.5117294599999997, + "problem_class": "SDP" + } + }, + { + "id": 2125, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28414,29 +51780,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:59:50", - "solve_time": 0.0457768440246582, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1037, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:16", + "solve_time": 1.080678939819336, + "status": "OPTIMAL", + "primal_objective_value": -467.75010646690146, + "dual_objective_value": -467.75010642794496, + "duality_gap": -3.895650024787756e-08, + "primal_infeasibility": 5.9965206332123494e-15, + "dual_infeasibility": 1.5401225413839454e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2372, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28458,14 +51832,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:00:00", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:17", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28473,14 +51850,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1038, + "id": 2374, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28502,14 +51884,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:00:00", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:19", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28517,14 +51902,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1039, + "id": 2375, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28546,14 +51936,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:00:00", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28561,14 +51954,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1040, + "id": 2373, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28590,14 +51988,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:00:00", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28605,14 +52006,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1035, + "id": 2126, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28634,29 +52040,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:59:50", - "solve_time": 0.08220601081848145, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:18", + "solve_time": 1.1609041690826416, "status": "OPTIMAL", - "primal_objective_value": -320.9234414376666, - "dual_objective_value": -320.92497928960995, - "duality_gap": 0.0015378519433397742, - "primal_infeasibility": 3.052930540788306e-06, - "dual_infeasibility": 0.00027660204589100273, - "iterations": 13300 - }, - { - "id": 1036, + "primal_objective_value": -467.7502234039853, + "dual_objective_value": -467.74997043188023, + "duality_gap": -0.0002529721050450462, + "primal_infeasibility": 4.1773529864416556e-07, + "dual_infeasibility": 4.656553667450933e-08, + "iterations": 575, + "memo": { + "solver_solve_time": 1.148141541, + "problem_class": "SDP" + } + }, + { + "id": 2123, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28678,29 +52091,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T11:59:50", - "solve_time": 0.008898258209228516, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -363.08837704719326, - "dual_objective_value": -362.65312853712743, - "duality_gap": -0.43524851006583276, - "primal_infeasibility": 0.0031096059091866054, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:10", + "solve_time": 0.047016143798828125, + "status": "OPTIMAL", + "primal_objective_value": -467.7501026865027, + "dual_objective_value": -467.7501156367352, + "duality_gap": 1.295023247394056e-05, + "primal_infeasibility": 3.1265375769840824e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1618, + "id": 1829, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28722,29 +52143,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:02:56", - "solve_time": 0.30704, - "status": "UNKNOWN", - "primal_objective_value": -362.8407662937241, - "dual_objective_value": -362.5463311167045, - "duality_gap": 0.29443517701957944, - "primal_infeasibility": 5.076986649325987e-05, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:39:55", + "solve_time": 0.573352625, + "status": "OPTIMAL", + "primal_objective_value": -467.75010984467355, + "dual_objective_value": -467.7501144740113, + "duality_gap": 4.62933775224883e-06, + "primal_infeasibility": 3.4418429164954034e-13, "dual_infeasibility": 0.0, - "iterations": 16 - }, - { - "id": 1475, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.573352625, + "setup_time": [], + "iterations": 12, + "primal_objective_value": -467.75010984467355, + "dual_objective_value": -467.7501144740113, + "duality_gap": 4.62933775224883e-06, + "primal_infeasibility": 3.4418429164954034e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1855, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28766,29 +52214,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:38:57", - "solve_time": 0.29583345833333335, - "status": "NUM_ERROR", - "primal_objective_value": -362.1389840878955, - "dual_objective_value": -362.19928444461704, - "duality_gap": 0.06030035672154099, - "primal_infeasibility": 4.623878615933405e-05, - "dual_infeasibility": 1.468529060102308e-08, - "iterations": 19 - }, - { - "id": 1041, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:09", + "solve_time": 0.813436375, + "status": "OPTIMAL", + "primal_objective_value": -467.75011366517776, + "dual_objective_value": -467.75011365499245, + "duality_gap": 1.0185317478317302e-08, + "primal_infeasibility": 1.2380352442101327e-09, + "dual_infeasibility": 1.2079205834364502e-11, + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.813436375, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -467.75011366517776, + "dual_objective_value": -467.75011365499245, + "duality_gap": 1.0185317478317302e-08, + "primal_infeasibility": 1.2380352442101327e-09, + "dual_infeasibility": 1.2079205834364502e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2376, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf5", + "problem_name": "mcp124-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28810,14 +52285,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:00:00", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -28825,146 +52303,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1044, + "id": 2128, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf6", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:31", - "solve_time": 0.005522966384887695, - "status": "OPTIMAL", - "primal_objective_value": -448.95023164103816, - "dual_objective_value": -448.9502285290299, - "duality_gap": -3.1120082439883845e-06, - "primal_infeasibility": 4.4077878809117167e-07, - "dual_infeasibility": 0.0, - "iterations": 23 - }, - { - "id": 1045, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", - "problem_library": "SDPLIB", - "problem_name": "hinf6", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:31", - "solve_time": 0.05508112907409668, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1048, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "SDPLIB", - "problem_name": "hinf6", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:41", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1049, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -28986,14 +52337,120 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:41", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:31", + "solve_time": 11.987443208694458, + "status": "OPTIMAL", + "primal_objective_value": -864.4118587839267, + "dual_objective_value": -864.4118587756075, + "duality_gap": -8.319261723954696e-09, + "primal_infeasibility": 9.469259058323655e-15, + "dual_infeasibility": 2.5070234017971762e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 11.974252711, + "problem_class": "SDP" + } + }, + { + "id": 2129, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:32", + "solve_time": 1.1041698455810547, + "status": "OPTIMAL", + "primal_objective_value": -864.4118513258304, + "dual_objective_value": -864.4118512580925, + "duality_gap": -6.773791483283276e-08, + "primal_infeasibility": 1.6350918002647319e-13, + "dual_infeasibility": 6.087262225582329e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2377, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29001,14 +52458,71 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1050, + "id": 2379, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "mcp124-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:23", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 2380, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29030,14 +52544,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:41", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:24", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29045,14 +52562,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1051, + "id": 2378, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29074,14 +52596,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:41", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29089,14 +52614,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1046, + "id": 2130, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29118,29 +52648,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:32", - "solve_time": 0.6322319507598877, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -245.90113198641467, - "dual_objective_value": -245.85737180839376, - "duality_gap": -0.043760178020903595, - "primal_infeasibility": 1.3088894176536186e-05, - "dual_infeasibility": 0.0003530484760489283, - "iterations": 100000 - }, - { - "id": 1047, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:33", + "solve_time": 0.46433019638061523, + "status": "OPTIMAL", + "primal_objective_value": -864.4118977179496, + "dual_objective_value": -864.4096336193913, + "duality_gap": -0.0022640985582711437, + "primal_infeasibility": 7.582685087510616e-07, + "dual_infeasibility": 8.068776913131342e-08, + "iterations": 225, + "memo": { + "solver_solve_time": 0.45122058299999995, + "problem_class": "SDP" + } + }, + { + "id": 2127, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29162,29 +52699,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:32", - "solve_time": 0.011322736740112305, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -448.97876320335996, - "dual_objective_value": -448.9556735151818, - "duality_gap": -0.023089688178174583, - "primal_infeasibility": 3.2823630729197306e-05, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:18", + "solve_time": 0.046462059020996094, + "status": "OPTIMAL", + "primal_objective_value": -864.4118465739052, + "dual_objective_value": -864.4118653239351, + "duality_gap": 1.875002988072083e-05, + "primal_infeasibility": 2.057078025751857e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1619, + "id": 1830, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29206,29 +52751,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:02", - "solve_time": 0.3865935, - "status": "MAX_ITER", - "primal_objective_value": -448.94845306947616, - "dual_objective_value": -448.93787068369375, - "duality_gap": 0.01058238578241344, - "primal_infeasibility": 1.0795193288541605e-05, - "dual_infeasibility": 2.9425725883582585e-11, - "iterations": 26 - }, - { - "id": 1476, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:00", + "solve_time": 0.49896158333333335, + "status": "OPTIMAL", + "primal_objective_value": -864.4118633887887, + "dual_objective_value": -864.4118640817342, + "duality_gap": 6.929454912096844e-07, + "primal_infeasibility": 2.1225996542903577e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.49896158333333335, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -864.4118633887887, + "dual_objective_value": -864.4118640817342, + "duality_gap": 6.929454912096844e-07, + "primal_infeasibility": 2.1225996542903577e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:39:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1856, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29250,29 +52822,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:02", - "solve_time": 0.34503904166666666, - "status": "NUM_ERROR", - "primal_objective_value": -448.93866526508225, - "dual_objective_value": -448.93735904243533, - "duality_gap": 0.0013062226469173766, - "primal_infeasibility": 7.16453106043704e-08, - "dual_infeasibility": 1.0964487510881784e-10, - "iterations": 23 - }, - { - "id": 1052, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:14", + "solve_time": 0.72608825, + "status": "OPTIMAL", + "primal_objective_value": -864.4118628975764, + "dual_objective_value": -864.411862876331, + "duality_gap": 2.1245341486064717e-08, + "primal_infeasibility": 2.30264056066451e-09, + "dual_infeasibility": 5.427533369077547e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.72608825, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -864.4118628975764, + "dual_objective_value": -864.411862876331, + "duality_gap": 2.1245341486064717e-08, + "primal_infeasibility": 2.30264056066451e-09, + "dual_infeasibility": 5.427533369077547e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:12", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2381, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf6", + "problem_name": "mcp124-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29294,14 +52893,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:02:41", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29309,14 +52911,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1055, + "id": 2132, "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29338,29 +52945,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:23", - "solve_time": 0.00506281852722168, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1056, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:35", + "solve_time": 0.24130702018737793, + "status": "OPTIMAL", + "primal_objective_value": -317.2643396559851, + "dual_objective_value": -317.26433965517947, + "duality_gap": -8.05641775514232e-10, + "primal_infeasibility": 2.317503143690089e-15, + "dual_infeasibility": 3.2364647886398265e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.163966999, + "problem_class": "SDP" + } + }, + { + "id": 2133, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29382,29 +52996,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:23", - "solve_time": 0.03922271728515625, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1059, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:42", + "solve_time": 6.18490195274353, + "status": "OPTIMAL", + "primal_objective_value": -317.2643357289886, + "dual_objective_value": -317.26433571943585, + "duality_gap": -9.55276391323423e-09, + "primal_infeasibility": 3.452429205651864e-14, + "dual_infeasibility": 2.289855858365093e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2382, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29426,14 +53048,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:32", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29441,14 +53066,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1060, + "id": 2384, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29470,14 +53100,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:32", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:28", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29485,14 +53118,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1061, + "id": 2385, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29514,14 +53152,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:32", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:29", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29529,14 +53170,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1062, + "id": 2383, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29558,14 +53204,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:32", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:27", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29573,14 +53222,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1057, + "id": 2134, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29602,73 +53256,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:24", - "solve_time": 0.6557118892669678, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -389.32499417666725, - "dual_objective_value": -389.3066200564397, - "duality_gap": -0.018374120227520052, - "primal_infeasibility": 6.437354049320336e-06, - "dual_infeasibility": 1.5407433103673238e-06, - "iterations": 100000 - }, - { - "id": 1058, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:47", + "solve_time": 65.18666386604309, + "status": "OPTIMAL", + "primal_objective_value": -317.26334217587544, + "dual_objective_value": -317.26018290170634, + "duality_gap": -0.003159274169092896, + "primal_infeasibility": 1.3145309316250677e-06, + "dual_infeasibility": 1.0170101910506083e-06, + "iterations": 6025, + "memo": { + "solver_solve_time": 65.107815083, + "problem_class": "SDP" + } + }, + { + "id": 2131, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf7", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:24", - "solve_time": 0.007824182510375977, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -386.2729744082578, - "dual_objective_value": -394.11795931873803, - "duality_gap": 7.844984910480207, - "primal_infeasibility": 0.0010676527612919265, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1620, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29690,29 +53307,108 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:07", - "solve_time": 0.321014, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:10:34", + "solve_time": 0.16768622398376465, "status": "OPTIMAL", - "primal_objective_value": -390.8268127270961, - "dual_objective_value": -390.81955811039285, - "duality_gap": 0.007254616703278316, - "primal_infeasibility": 5.153919837286196e-06, + "primal_objective_value": -317.2643237878996, + "dual_objective_value": -317.26434282949464, + "duality_gap": 1.904159501009417e-05, + "primal_infeasibility": 3.133245307540807e-15, "dual_infeasibility": 0.0, - "iterations": 19 + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1477, + "id": 1831, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:07", + "solve_time": 0.8985415, + "status": "OPTIMAL", + "primal_objective_value": -317.26433979088665, + "dual_objective_value": -317.2643404055531, + "duality_gap": 6.146664759398845e-07, + "primal_infeasibility": 1.1817715432431227e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8985415, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -317.26433979088665, + "dual_objective_value": -317.2643404055531, + "duality_gap": 6.146664759398845e-07, + "primal_infeasibility": 1.1817715432431227e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:04", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1857, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29734,29 +53430,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:08", - "solve_time": 0.30022125, - "status": "NUM_ERROR", - "primal_objective_value": -390.4187062005368, - "dual_objective_value": -388.9712939688352, - "duality_gap": 1.4474122317016054, - "primal_infeasibility": 2.1674897967340183e-06, - "dual_infeasibility": 1.349616784492387e-08, - "iterations": 20 - }, - { - "id": 1063, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:22", + "solve_time": 2.260602083333333, + "status": "OPTIMAL", + "primal_objective_value": -317.2643388544631, + "dual_objective_value": -317.26433884402263, + "duality_gap": 1.0440487585583469e-08, + "primal_infeasibility": 2.606685535332963e-09, + "dual_infeasibility": 7.365073918346426e-11, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.260602083333333, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -317.2643388544631, + "dual_objective_value": -317.26433884402263, + "duality_gap": 1.0440487585583469e-08, + "primal_infeasibility": 2.606685535332963e-09, + "dual_infeasibility": 7.365073918346426e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2386, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf7", + "problem_name": "mcp250-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29778,14 +53501,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:03:32", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:29", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29793,14 +53519,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 901, + "id": 2136, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29822,29 +53553,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:07", - "solve_time": 0.0065250396728515625, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -116.162359822706, - "dual_objective_value": -116.16235950573696, - "duality_gap": -3.1696903590727743e-07, - "primal_infeasibility": 7.420952338087494e-07, - "dual_infeasibility": 3.2950076855126425e-07, - "iterations": 29 - }, - { - "id": 902, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:55", + "solve_time": 5.162637710571289, + "status": "OPTIMAL", + "primal_objective_value": -531.9300813566422, + "dual_objective_value": -531.9300813543795, + "duality_gap": -2.262709131173324e-09, + "primal_infeasibility": 8.227473646636106e-16, + "dual_infeasibility": 5.305261841984453e-11, + "iterations": 11, + "memo": { + "solver_solve_time": 5.084504, + "problem_class": "SDP" + } + }, + { + "id": 2137, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29866,29 +53604,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:07", - "solve_time": 0.03650498390197754, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 905, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:12:01", + "solve_time": 5.5707409381866455, + "status": "OPTIMAL", + "primal_objective_value": -531.9300725932821, + "dual_objective_value": -531.930072569, + "duality_gap": -2.4282144295284525e-08, + "primal_infeasibility": 8.040295993778045e-14, + "dual_infeasibility": 2.329819847105128e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2387, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29910,14 +53656,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:30", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29925,14 +53674,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 906, + "id": 2389, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29954,14 +53708,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -29969,14 +53726,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 907, + "id": 2390, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -29998,14 +53760,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30013,14 +53778,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 908, + "id": 2388, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30042,14 +53812,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30057,14 +53830,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 903, + "id": 2138, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30086,29 +53864,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:07", - "solve_time": 0.2217872142791748, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:13:27", + "solve_time": 85.80190420150757, "status": "OPTIMAL", - "primal_objective_value": -113.4663274817136, - "dual_objective_value": -113.46736346299392, - "duality_gap": 0.0010359812803102386, - "primal_infeasibility": 2.0881037650067233e-06, - "dual_infeasibility": 2.9352242087893714e-05, - "iterations": 33450 - }, - { - "id": 904, + "primal_objective_value": -531.9296665702215, + "dual_objective_value": -531.9243902498758, + "duality_gap": -0.005276320345615204, + "primal_infeasibility": 3.5097864358050385e-07, + "dual_infeasibility": 4.608231670735556e-07, + "iterations": 6725, + "memo": { + "solver_solve_time": 85.723657208, + "problem_class": "SDP" + } + }, + { + "id": 2135, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30130,29 +53915,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:07", - "solve_time": 0.008577823638916016, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -116.18084367885152, - "dual_objective_value": -116.17297265490086, - "duality_gap": -0.007871023950656308, - "primal_infeasibility": 2.1524411488941546e-05, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:11:49", + "solve_time": 0.9686660766601562, + "status": "OPTIMAL", + "primal_objective_value": -531.9300419847027, + "dual_objective_value": -531.9300864211093, + "duality_gap": 4.4436406597014866e-05, + "primal_infeasibility": 7.856532362095457e-16, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1621, + "id": 1832, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30174,29 +53967,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:13", - "solve_time": 0.3580920416666667, - "status": "MAX_ITER", - "primal_objective_value": -116.18907747348399, - "dual_objective_value": -116.16764622467993, - "duality_gap": 0.02143124880406333, - "primal_infeasibility": 1.107192932812266e-05, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:13", + "solve_time": 0.8380240416666667, + "status": "OPTIMAL", + "primal_objective_value": -531.9300812378247, + "dual_objective_value": -531.930084038429, + "duality_gap": 2.8006043066852726e-06, + "primal_infeasibility": 5.9500298393263746e-12, "dual_infeasibility": 0.0, - "iterations": 21 - }, - { - "id": 1478, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8380240416666667, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -531.9300812378247, + "dual_objective_value": -531.930084038429, + "duality_gap": 2.8006043066852726e-06, + "primal_infeasibility": 5.9500298393263746e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:10", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1858, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30218,29 +54038,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:13", - "solve_time": 0.3128221666666667, - "status": "NUM_ERROR", - "primal_objective_value": -116.14800748522454, - "dual_objective_value": -116.14764044645105, - "duality_gap": 0.0003670387734899805, - "primal_infeasibility": 5.243531762309649e-07, - "dual_infeasibility": 1.3890768653808889e-09, - "iterations": 18 - }, - { - "id": 909, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:29", + "solve_time": 2.2106795833333335, + "status": "OPTIMAL", + "primal_objective_value": -531.9300822835332, + "dual_objective_value": -531.9300822716898, + "duality_gap": 1.1843440006487072e-08, + "primal_infeasibility": 1.926782694456677e-09, + "dual_infeasibility": 3.374042791082714e-11, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.2106795833333335, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -531.9300822835332, + "dual_objective_value": -531.9300822716898, + "duality_gap": 1.1843440006487072e-08, + "primal_infeasibility": 1.926782694456677e-09, + "dual_infeasibility": 3.374042791082714e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2391, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf8", + "problem_name": "mcp250-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30262,14 +54109,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:21:25", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:34", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30277,14 +54127,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 912, + "id": 2140, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30306,29 +54161,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:05", - "solve_time": 0.006279945373535156, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:14:59", + "solve_time": 89.82528376579285, "status": "OPTIMAL", - "primal_objective_value": -236.2492537893636, - "dual_objective_value": -236.24925167798062, - "duality_gap": -2.111382968905673e-06, - "primal_infeasibility": 1.1227693010097353e-09, - "dual_infeasibility": 7.503567730794685e-13, - "iterations": 27 - }, - { - "id": 913, + "primal_objective_value": -981.172560450884, + "dual_objective_value": -981.172560441928, + "duality_gap": -8.956021702033468e-09, + "primal_infeasibility": 5.576649407633878e-15, + "dual_infeasibility": 6.758930441182268e-11, + "iterations": 13, + "memo": { + "solver_solve_time": 89.744985665, + "problem_class": "SDP" + } + }, + { + "id": 2141, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30350,29 +54212,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:05", - "solve_time": 0.07575297355651855, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 916, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:06", + "solve_time": 5.910895109176636, + "status": "OPTIMAL", + "primal_objective_value": -981.1725575157805, + "dual_objective_value": -981.1725574810541, + "duality_gap": -3.4726326703093946e-08, + "primal_infeasibility": 1.1304565496294368e-14, + "dual_infeasibility": 8.0190851099525e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2392, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30394,14 +54264,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:23", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:35", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30409,14 +54282,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 917, + "id": 2394, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30438,14 +54316,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:23", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30453,14 +54334,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 918, + "id": 2395, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30482,14 +54368,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:23", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:38", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30497,14 +54386,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 919, + "id": 2393, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30526,14 +54420,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:23", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:36", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30541,14 +54438,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 914, + "id": 2142, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30570,29 +54472,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:06", - "solve_time": 0.6299283504486084, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -23.995993470322126, - "dual_objective_value": -23.73307395594187, - "duality_gap": -0.2629195143802576, - "primal_infeasibility": 0.0002501696048966344, - "dual_infeasibility": 4.7055340393382825e-06, - "iterations": 100000 - }, - { - "id": 915, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:31", + "solve_time": 24.193409204483032, + "status": "OPTIMAL", + "primal_objective_value": -981.1715863618699, + "dual_objective_value": -981.1618374757425, + "duality_gap": -0.00974888612745417, + "primal_infeasibility": 9.84883038240223e-08, + "dual_infeasibility": 3.305222499689065e-07, + "iterations": 1875, + "memo": { + "solver_solve_time": 24.105715125, + "problem_class": "SDP" + } + }, + { + "id": 2139, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30614,73 +54523,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:06", - "solve_time": 0.02733016014099121, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -236.24929860181874, - "dual_objective_value": -236.24925825295142, - "duality_gap": -4.034886731574261e-05, - "primal_infeasibility": 6.211843885658271e-06, - "dual_infeasibility": 1.1701336108488862e-17, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:13:29", + "solve_time": 0.9742119312286377, + "status": "OPTIMAL", + "primal_objective_value": -981.1725284770389, + "dual_objective_value": -981.1725736916305, + "duality_gap": 4.5214591636977275e-05, + "primal_infeasibility": 2.9884877512057914e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1622, + "id": 1833, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "hinf9", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:03:19", - "solve_time": 0.3677940416666667, - "status": "UNKNOWN", - "primal_objective_value": -236.24926143119387, - "dual_objective_value": -236.2492582522059, - "duality_gap": 3.178987981300452e-06, - "primal_infeasibility": 4.333392854983704e-07, - "dual_infeasibility": 6.696508028901661e-17, - "iterations": 23 - }, - { - "id": 1479, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30702,29 +54575,127 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:19", - "solve_time": 0.317706625, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:19", + "solve_time": 0.912536375, "status": "OPTIMAL", - "primal_objective_value": -236.24742814369876, - "dual_objective_value": -236.2473437618947, - "duality_gap": 8.438180404368723e-05, - "primal_infeasibility": 5.8628976583948846e-09, - "dual_infeasibility": 6.012462469094062e-12, - "iterations": 26 - }, - { - "id": 920, + "primal_objective_value": -981.1725661031035, + "dual_objective_value": -981.1725718690851, + "duality_gap": 5.765981654803909e-06, + "primal_infeasibility": 3.16026274347861e-12, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.912536375, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -981.1725661031035, + "dual_objective_value": -981.1725718690851, + "duality_gap": 5.765981654803909e-06, + "primal_infeasibility": 3.16026274347861e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1859, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "problem_library": "SDPLIB", + "problem_name": "mcp250-3", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:36", + "solve_time": 2.6032755416666666, + "status": "OPTIMAL", + "primal_objective_value": -981.1725702362594, + "dual_objective_value": -981.172570225403, + "duality_gap": 1.0856410881388001e-08, + "primal_infeasibility": 1.3408641864535708e-09, + "dual_infeasibility": 7.777848240269705e-12, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.6032755416666666, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -981.1725702362594, + "dual_objective_value": -981.172570225403, + "duality_gap": 1.0856410881388001e-08, + "primal_infeasibility": 1.3408641864535708e-09, + "dual_infeasibility": 7.777848240269705e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:34", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2396, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "hinf9", + "problem_name": "mcp250-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30746,14 +54717,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-16T15:22:23", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:39", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30761,14 +54735,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1066, + "id": 2144, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30790,29 +54769,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:46", - "solve_time": 0.07190108299255371, - "status": "UNBOUNDED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:17:32", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 9 + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1067, + "id": 2145, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30834,29 +54820,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:46", - "solve_time": 0.0513920783996582, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1070, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:17:39", + "solve_time": 5.564814805984497, + "status": "OPTIMAL", + "primal_objective_value": -1681.960048879275, + "dual_objective_value": -1681.9600487093676, + "duality_gap": -1.6990748008538503e-07, + "primal_infeasibility": 2.788764812335165e-14, + "dual_infeasibility": 1.0652363569467362e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2397, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30878,14 +54872,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:55", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:40", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30893,14 +54890,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1071, + "id": 2399, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30922,14 +54924,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:55", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30937,14 +54942,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1072, + "id": 2400, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -30966,14 +54976,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:55", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:42", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -30981,14 +54994,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1073, + "id": 2398, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31010,14 +55028,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:55", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:41", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31025,14 +55046,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1068, + "id": 2146, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31054,29 +55080,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:46", - "solve_time": 0.009742021560668945, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": 75 - }, - { - "id": 1069, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:01", + "solve_time": 22.179195880889893, + "status": "OPTIMAL", + "primal_objective_value": -1681.9584387566933, + "dual_objective_value": -1681.953564698473, + "duality_gap": -0.004874058220366351, + "primal_infeasibility": 2.0180126454384416e-06, + "dual_infeasibility": 2.1737788103100266e-08, + "iterations": 1625, + "memo": { + "solver_solve_time": 22.0992225, + "problem_class": "SDP" + } + }, + { + "id": 2143, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31098,29 +55131,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:46", - "solve_time": 0.008428096771240234, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:15:31", + "solve_time": 0.17056798934936523, + "status": "OPTIMAL", + "primal_objective_value": -1681.960022233755, + "dual_objective_value": -1681.960115536573, + "duality_gap": 9.330281818620279e-05, + "primal_infeasibility": 6.498259333050908e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1601, + "id": 1834, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31142,29 +55183,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:33", - "solve_time": 0.7416138333333333, - "status": "INFEASIBLE", - "primal_objective_value": -4.257207829062996, - "dual_objective_value": 0.9999999999999999, - "duality_gap": 5.257207829062996, - "primal_infeasibility": 3.354815305396842, - "dual_infeasibility": 0.00036268825137415707, - "iterations": 11 - }, - { - "id": 1486, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:26", + "solve_time": 0.9775438333333333, + "status": "OPTIMAL", + "primal_objective_value": -1681.9600975043904, + "dual_objective_value": -1681.9601125495465, + "duality_gap": 1.5045156033011153e-05, + "primal_infeasibility": 8.103865749540684e-13, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.9775438333333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -1681.9600975043904, + "dual_objective_value": -1681.9601125495465, + "duality_gap": 1.5045156033011153e-05, + "primal_infeasibility": 8.103865749540684e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1860, "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB unknown)", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31186,29 +55254,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:39:58", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1074, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:44", + "solve_time": 2.581019125, + "status": "OPTIMAL", + "primal_objective_value": -1681.9601099646616, + "dual_objective_value": -1681.9601099478573, + "duality_gap": 1.680427885730751e-08, + "primal_infeasibility": 1.774438052229053e-09, + "dual_infeasibility": 3.5680044750280445e-12, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.581019125, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -1681.9601099646616, + "dual_objective_value": -1681.9601099478573, + "duality_gap": 1.680427885730751e-08, + "primal_infeasibility": 1.774438052229053e-09, + "dual_infeasibility": 3.5680044750280445e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:41", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2401, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "infd1", + "problem_name": "mcp250-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31230,14 +55325,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:04:55", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:43", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31245,14 +55343,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1077, + "id": 2148, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31274,29 +55377,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:35", - "solve_time": 0.07816100120544434, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": 9 - }, - { - "id": 1078, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:07", + "solve_time": 1.623703956604004, + "status": "OPTIMAL", + "primal_objective_value": -598.1485156509422, + "dual_objective_value": -598.1485156502104, + "duality_gap": -7.318021744140424e-10, + "primal_infeasibility": 1.0279534041409784e-15, + "dual_infeasibility": 1.8856686824865825e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 1.075159208, + "problem_class": "SDP" + } + }, + { + "id": 2149, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31318,29 +55428,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:35", - "solve_time": 0.050015926361083984, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1081, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:57", + "solve_time": 49.235872983932495, + "status": "OPTIMAL", + "primal_objective_value": -598.1484980478649, + "dual_objective_value": -598.148498028111, + "duality_gap": -1.9753883861994836e-08, + "primal_infeasibility": 6.9727808859637596e-15, + "dual_infeasibility": 3.076456407970078e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2402, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31362,14 +55480,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:46", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:44", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31377,14 +55498,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1082, + "id": 2404, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31406,14 +55532,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:46", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:46", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31421,14 +55550,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1083, + "id": 2405, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31450,14 +55584,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:46", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31465,14 +55602,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1084, + "id": 2403, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31494,14 +55636,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:46", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:45", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31509,14 +55654,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1079, + "id": 2150, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31538,29 +55688,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:35", - "solve_time": 0.007703065872192383, - "status": "UNBOUNDED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:20:57", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 50 + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1080, + "id": 2147, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31582,29 +55739,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:35", - "solve_time": 0.008288145065307617, - "status": "UNBOUNDED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:18:04", + "solve_time": 2.33392596244812, + "status": "OPTIMAL", + "primal_objective_value": -598.1485095041485, + "dual_objective_value": -598.1485189328429, + "duality_gap": 9.428694397684012e-06, + "primal_infeasibility": 2.5921330521074135e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1602, + "id": 1835, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31626,29 +55791,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:39", - "solve_time": 0.32877341666666665, - "status": "INFEASIBLE", - "primal_objective_value": 5.260014414495283, - "dual_objective_value": 1.0, - "duality_gap": 4.260014414495283, - "primal_infeasibility": 1.30747142664091, - "dual_infeasibility": 0.001808820212132385, - "iterations": 11 - }, - { - "id": 1487, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:34", + "solve_time": 1.5547225, + "status": "OPTIMAL", + "primal_objective_value": -598.1485163350332, + "dual_objective_value": -598.1485169989327, + "duality_gap": 6.63899527353351e-07, + "primal_infeasibility": 5.203879178173194e-13, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5547225, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -598.1485163350332, + "dual_objective_value": -598.1485169989327, + "duality_gap": 6.63899527353351e-07, + "primal_infeasibility": 5.203879178173194e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1861, "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB unknown)", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31670,29 +55862,108 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:03", + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:43:59", + "solve_time": 9.016883166666666, + "status": "OPTIMAL", + "primal_objective_value": -598.1485152998665, + "dual_objective_value": -598.1485152939756, + "duality_gap": 5.890910870220978e-09, + "primal_infeasibility": 1.2225054525178163e-09, + "dual_infeasibility": 2.5374934956038518e-11, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.016883166666666, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -598.1485152998665, + "dual_objective_value": -598.1485152939756, + "duality_gap": 5.890910870220978e-09, + "primal_infeasibility": 1.2225054525178163e-09, + "dual_infeasibility": 2.5374934956038518e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:43:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2406, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "mcp500-1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:49", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1085, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2152, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infd2", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31714,29 +55985,88 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:05:46", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:23:01", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1088, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2153, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "mcp500-2", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:23:55", + "solve_time": 53.50329923629761, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567589595314, + "dual_objective_value": -1070.0567589516327, + "duality_gap": -7.898734111222439e-09, + "primal_infeasibility": 2.7488754243134703e-13, + "dual_infeasibility": 3.8483116375688007e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2407, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31758,102 +56088,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:29", - "solve_time": 0.05863189697265625, - "status": "INFEASIBLE (INACCURATE)", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": 6 - }, - { - "id": 1089, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", - "problem_library": "SDPLIB", - "problem_name": "infp1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:29", - "solve_time": 0.035430192947387695, - "status": "INFEASIBLE", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1092, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "SDPLIB", - "problem_name": "infp1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31861,14 +56106,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1093, + "id": 2409, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31890,14 +56140,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:52", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31905,14 +56158,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1094, + "id": 2410, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31934,14 +56192,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:53", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31949,14 +56210,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1095, + "id": 2408, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -31978,14 +56244,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:51", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -31993,14 +56262,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1090, + "id": 2154, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32022,29 +56296,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:29", - "solve_time": 0.00629115104675293, - "status": "INFEASIBLE", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:25:55", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 50 + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1091, + "id": 2151, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32066,29 +56347,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:29", - "solve_time": 0.010022878646850586, - "status": "INFEASIBLE", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:21:00", + "solve_time": 2.8333511352539062, + "status": "OPTIMAL", + "primal_objective_value": -1070.056746962311, + "dual_objective_value": -1070.0567665649662, + "duality_gap": 1.9602655129347113e-05, + "primal_infeasibility": 3.271071190322263e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1603, + "id": 1836, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32110,29 +56399,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:44", - "solve_time": 0.6760695833333333, - "status": "UNBOUNDED", - "primal_objective_value": -0.9999999999999998, - "dual_objective_value": -9.565045088035852, - "duality_gap": 8.565045088035852, - "primal_infeasibility": 0.98920907266528, - "dual_infeasibility": 0.03606835371799228, - "iterations": 31 - }, - { - "id": 1488, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:41", + "solve_time": 1.5360105833333333, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567637418037, + "dual_objective_value": -1070.0567662625401, + "duality_gap": 2.5207364160451107e-06, + "primal_infeasibility": 9.081847783622977e-13, + "dual_infeasibility": 0.0, + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5360105833333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": -1070.0567637418037, + "dual_objective_value": -1070.0567662625401, + "duality_gap": 2.5207364160451107e-06, + "primal_infeasibility": 9.081847783622977e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:39", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1862, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32154,29 +56470,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:09", - "solve_time": 0.18138175, - "status": "UNBOUNDED", - "primal_objective_value": -1.0000000000000009, - "dual_objective_value": -1.0122985351967385e-08, - "duality_gap": 0.9999999898770155, - "primal_infeasibility": 0.9892090726567477, - "dual_infeasibility": 0.03435947590638533, - "iterations": 7 - }, - { - "id": 1096, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:44:13", + "solve_time": 9.306898791666667, + "status": "OPTIMAL", + "primal_objective_value": -1070.0567627403077, + "dual_objective_value": -1070.0567627284877, + "duality_gap": 1.1820020517916419e-08, + "primal_infeasibility": 1.9894116855005456e-09, + "dual_infeasibility": 1.83524722585802e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.306898791666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1070.0567627403077, + "dual_objective_value": -1070.0567627284877, + "duality_gap": 1.1820020517916419e-08, + "primal_infeasibility": 1.9894116855005456e-09, + "dual_infeasibility": 1.83524722585802e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2411, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "infp1", + "problem_name": "mcp500-2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32198,14 +56541,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:06:40", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:54", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32213,14 +56559,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1099, + "id": 2156, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32242,29 +56593,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:27", - "solve_time": 0.057051897048950195, - "status": "INFEASIBLE (INACCURATE)", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:27:58", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 6 + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1100, + "id": 2157, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32286,29 +56644,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:27", - "solve_time": 0.035516977310180664, - "status": "INFEASIBLE", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1103, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:28:53", + "solve_time": 53.33316898345947, + "status": "OPTIMAL", + "primal_objective_value": -1847.9699944022154, + "dual_objective_value": -1847.9699943694136, + "duality_gap": -3.280183591414243e-08, + "primal_infeasibility": 1.6551577809205618e-14, + "dual_infeasibility": 4.792848030985146e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2412, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32330,14 +56696,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:55", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32345,14 +56714,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1104, + "id": 2414, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32374,14 +56748,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:57", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32389,14 +56766,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1105, + "id": 2415, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32418,14 +56800,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:58", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32433,14 +56818,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1106, + "id": 2413, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32462,14 +56852,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:56", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32477,14 +56870,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1101, + "id": 2158, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32506,29 +56904,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:27", - "solve_time": 0.006498098373413086, - "status": "INFEASIBLE", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:30:53", + "solve_time": 120.0, + "status": "TIMEOUT", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": 50 + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1102, + "id": 2155, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32550,29 +56955,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:27", - "solve_time": 0.010500907897949219, - "status": "INFEASIBLE", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:25:57", + "solve_time": 0.9246599674224854, + "status": "OPTIMAL", + "primal_objective_value": -1847.9699810333868, + "dual_objective_value": -1847.970022451066, + "duality_gap": 4.1417679085498094e-05, + "primal_infeasibility": 1.1936389203813294e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1604, + "id": 1837, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32594,29 +57007,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:50", - "solve_time": 0.708990875, - "status": "UNBOUNDED", - "primal_objective_value": -0.9999999999999977, - "dual_objective_value": -7.5658798093740085, - "duality_gap": 6.565879809374011, - "primal_infeasibility": 0.9896372386599857, - "dual_infeasibility": 0.03270560748147086, - "iterations": 31 - }, - { - "id": 1489, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:50", + "solve_time": 1.5978740833333334, + "status": "OPTIMAL", + "primal_objective_value": -1847.9700088367038, + "dual_objective_value": -1847.9700217552486, + "duality_gap": 1.2918544825879508e-05, + "primal_infeasibility": 1.3971950234132762e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5978740833333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -1847.9700088367038, + "dual_objective_value": -1847.9700217552486, + "duality_gap": 1.2918544825879508e-05, + "primal_infeasibility": 1.3971950234132762e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1863, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32638,29 +57078,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:14", - "solve_time": 0.19872808333333333, - "status": "UNBOUNDED", - "primal_objective_value": -1.0, - "dual_objective_value": -1.0014114498193024e-08, - "duality_gap": 0.9999999899858855, - "primal_infeasibility": 0.98963723865795, - "dual_infeasibility": 0.032611884190235085, - "iterations": 11 - }, - { - "id": 1107, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:44:30", + "solve_time": 10.876570833333334, + "status": "OPTIMAL", + "primal_objective_value": -1847.9700184528383, + "dual_objective_value": -1847.9700184414694, + "duality_gap": 1.1368911145837046e-08, + "primal_infeasibility": 1.480896814122543e-09, + "dual_infeasibility": 5.281511248115392e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 10.876570833333334, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -1847.9700184528383, + "dual_objective_value": -1847.9700184414694, + "duality_gap": 1.1368911145837046e-08, + "primal_infeasibility": 1.480896814122543e-09, + "dual_infeasibility": 5.281511248115392e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:27", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2416, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "infp2", + "problem_name": "mcp500-3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32682,14 +57149,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:07:39", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:41:59", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32697,14 +57167,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1110, + "id": 2160, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32726,29 +57201,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:10:33", - "solve_time": 5.780447959899902, - "status": "OPTIMAL", - "primal_objective_value": -629.1647805357129, - "dual_objective_value": -629.1647805350874, - "duality_gap": -6.255049811443314e-10, - "primal_infeasibility": 3.358572693912759e-15, - "dual_infeasibility": 1.776705970627518e-11, - "iterations": 16 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:32:56", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1111, + "id": 2161, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32770,29 +57252,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:16:28", - "solve_time": 228.55329608917236, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:33:38", + "solve_time": 40.44312405586243, "status": "OPTIMAL", - "primal_objective_value": -629.1647801726815, - "dual_objective_value": -629.1647801710005, - "duality_gap": -1.6809735825518146e-09, - "primal_infeasibility": 1.2726085361287806e-12, - "dual_infeasibility": 2.1291444400788673e-11, - "iterations": null - }, - { - "id": 1113, + "primal_objective_value": -3566.7379833165146, + "dual_objective_value": -3566.737983223862, + "duality_gap": -9.265249900636263e-08, + "primal_infeasibility": 7.472516046203045e-13, + "dual_infeasibility": 2.8114690795223104e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 2417, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32814,14 +57304,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:37:04", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:00", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32829,14 +57322,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1114, + "id": 2419, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32858,14 +57356,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:37:04", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32873,14 +57374,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1115, + "id": 2420, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32902,14 +57408,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:37:04", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32917,14 +57426,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1116, + "id": 2418, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32946,14 +57460,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:37:05", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:01", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -32961,14 +57478,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1112, + "id": 2162, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", + "problem_library": "SDPLIB", + "problem_name": "mcp500-4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2159, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -32990,29 +57563,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:36:57", - "solve_time": 6.635096073150635, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:30:55", + "solve_time": 1.1287381649017334, "status": "OPTIMAL", - "primal_objective_value": -629.1647613155295, - "dual_objective_value": -629.1647831444957, - "duality_gap": 2.1828966168868646e-05, - "primal_infeasibility": 1.093272639824208e-14, + "primal_objective_value": -3566.7380109438227, + "dual_objective_value": -3566.7380522800404, + "duality_gap": 4.133621769142337e-05, + "primal_infeasibility": 3.097610455579781e-14, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1653, + "id": 1838, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33034,29 +57615,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:07:14", - "solve_time": 2.363915125, + "commit_hash": "d31cb7532a216fdc91b3add7143ef51aa6679c9d", + "timestamp": "2025-07-22T15:40:58", + "solve_time": 1.5796517916666666, "status": "OPTIMAL", - "primal_objective_value": -629.1647770178772, - "dual_objective_value": -629.1647830495338, - "duality_gap": 6.031656539562391e-06, - "primal_infeasibility": 1.487176561555531e-13, + "primal_objective_value": -3566.7379931729224, + "dual_objective_value": -3566.738052271622, + "duality_gap": 5.909869969400461e-05, + "primal_infeasibility": 1.1792225585239736e-12, "dual_infeasibility": 0.0, - "iterations": 15 - }, - { - "id": 1523, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.5796517916666666, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -3566.7379931729224, + "dual_objective_value": -3566.738052271622, + "duality_gap": 5.909869969400461e-05, + "primal_infeasibility": 1.1792225585239736e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:40:55", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1864, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33078,29 +57686,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:48:02", - "solve_time": 18.21366383333333, + "commit_hash": "2ef15f0b24da1069f2b57592da99da5a647810c6", + "timestamp": "2025-07-22T15:44:46", + "solve_time": 9.711638, "status": "OPTIMAL", - "primal_objective_value": -629.1647785850998, - "dual_objective_value": -629.1647785773678, - "duality_gap": 7.73206920712255e-09, - "primal_infeasibility": 1.9597982503383297e-09, - "dual_infeasibility": 3.331356481626968e-11, - "iterations": 16 - }, - { - "id": 1117, + "primal_objective_value": -3566.738045969509, + "dual_objective_value": -3566.7380459534215, + "duality_gap": 1.608759703231044e-08, + "primal_infeasibility": 1.4561025810833674e-09, + "dual_infeasibility": 1.6673683400563527e-12, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.711638, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -3566.738045969509, + "dual_objective_value": -3566.7380459534215, + "duality_gap": 1.608759703231044e-08, + "primal_infeasibility": 1.4561025810833674e-09, + "dual_infeasibility": 1.6673683400563527e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-23 00:44:43", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2421, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "maxG11", + "problem_name": "mcp500-4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33122,14 +57757,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:37:05", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:42:04", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33137,14 +57775,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1120, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1207, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33166,6 +57809,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33173,22 +57819,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:51", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T13:11:11", + "solve_time": 25.793164014816284, + "status": "OPTIMAL", + "primal_objective_value": 1092.5981048387882, + "dual_objective_value": 1092.5981049304173, + "duality_gap": -9.162909009319264e-08, + "primal_infeasibility": 5.720872373199901e-10, + "dual_infeasibility": 1.1890157244942814e-10, + "iterations": 26, + "memo": { + "solver_solve_time": 25.738914749, + "problem_class": "SDP" + } }, { - "id": 1121, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1208, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33210,6 +57860,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33217,22 +57870,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:52", - "solve_time": null, - "status": "UNSUPPORTED", + "timestamp": "2025-07-18T13:11:16", + "solve_time": 4.625144004821777, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1122, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1210, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33254,6 +57911,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33261,7 +57921,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:52", + "timestamp": "2025-07-18T13:13:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33269,14 +57929,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1123, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1211, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33298,6 +57963,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33305,7 +57973,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:52", + "timestamp": "2025-07-18T13:13:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33313,14 +57981,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1654, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1212, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33342,29 +58015,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:09:36", - "solve_time": 15.456882125, - "status": "OPTIMAL", - "primal_objective_value": -1567.6396346092076, - "dual_objective_value": -1567.6396447238442, - "duality_gap": 1.011463655231637e-05, - "primal_infeasibility": 1.502035887240306e-11, - "dual_infeasibility": 0.0, - "iterations": 16 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1119, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1213, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33386,6 +58067,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33393,22 +58077,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:12", - "solve_time": 300.0, - "status": "TIMEOUT", + "timestamp": "2025-07-18T13:13:02", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1124, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2275, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "maxG32", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33430,29 +58119,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:48:53", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:39:35", + "solve_time": 99.81731796264648, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1092.4922416744214, + "dual_objective_value": 1092.544894125871, + "duality_gap": -0.05265245144960318, + "primal_infeasibility": 4.2353434666135e-07, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 99.759706791, + "problem_class": "SDP" + } }, { - "id": 1127, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1209, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33474,6 +58170,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33481,22 +58180,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:54:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T13:12:55", + "solve_time": 0.5981779098510742, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1093.0721614033846, + "dual_objective_value": 1092.5599703709595, + "duality_gap": 0.5121910324251076, + "primal_infeasibility": 2.3061857111994798e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1128, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1610, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33518,29 +58222,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:54:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:01:26", + "solve_time": 0.8021789583333333, + "status": "UNKNOWN", + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.8021789583333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 1092.5398261865366, + "dual_objective_value": 1092.5738677926238, + "duality_gap": 0.03404160608715756, + "primal_infeasibility": 2.2324924926700836e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:23", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1129, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1495, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33562,29 +58293,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:54:43", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:50", + "solve_time": 2.500351125, + "status": "NUM_ERROR", + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0.0, + "iterations": 26, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 2.500351125, + "setup_time": [], + "iterations": 26, + "primal_objective_value": 1092.5803930728775, + "dual_objective_value": 1092.5806235221098, + "duality_gap": 0.00023044923227644176, + "primal_infeasibility": 5.983215930617338e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1130, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1214, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap10", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33606,6 +58364,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33613,7 +58374,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:54:44", + "timestamp": "2025-07-18T13:13:02", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33621,14 +58382,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1673, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1152, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33650,29 +58416,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:26:27", - "solve_time": 5.433042291666666, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.039627790451049805, "status": "OPTIMAL", - "primal_objective_value": -4006.2555195572245, - "dual_objective_value": -4006.2555216808855, - "duality_gap": 2.1236610336927697e-06, - "primal_infeasibility": 7.797328522618889e-14, - "dual_infeasibility": 0.0, - "iterations": 17 + "primal_objective_value": 436.00000012500374, + "dual_objective_value": 436.0000001787257, + "duality_gap": -5.3721976200904464e-08, + "primal_infeasibility": 8.543064997221504e-10, + "dual_infeasibility": 8.700480256542984e-14, + "iterations": 9, + "memo": { + "solver_solve_time": 0.036510792, + "problem_class": "SDP" + } }, { - "id": 1542, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1153, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33694,29 +58467,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:01:57", - "solve_time": 43.0097865, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.05824089050292969, "status": "OPTIMAL", - "primal_objective_value": -4006.255460000534, - "dual_objective_value": -4006.255459886479, - "duality_gap": 1.1405518307583407e-07, - "primal_infeasibility": 1.6434551009770762e-09, - "dual_infeasibility": 1.1291850783925127e-11, - "iterations": 22 + "primal_objective_value": 436.00000638953816, + "dual_objective_value": 436.0000103135326, + "duality_gap": -3.923994427168509e-06, + "primal_infeasibility": 6.573074355875933e-08, + "dual_infeasibility": 5.296699388254977e-12, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1131, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1156, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "maxG51", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33738,6 +58519,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33745,7 +58529,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:54:44", + "timestamp": "2025-07-18T13:03:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33753,14 +58537,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1134, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1157, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33782,6 +58571,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33789,7 +58581,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:56:59", + "timestamp": "2025-07-18T13:03:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33797,14 +58589,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1135, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1158, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33826,6 +58623,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33833,7 +58633,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:57:00", + "timestamp": "2025-07-18T13:03:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33841,14 +58641,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1136, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1159, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33870,6 +58675,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33877,7 +58685,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:57:00", + "timestamp": "2025-07-18T13:03:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -33885,14 +58693,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1137, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1154, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33914,6 +58727,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -33921,22 +58737,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:57:01", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.015094995498657227, + "status": "OPTIMAL", + "primal_objective_value": 436.00007269274516, + "dual_objective_value": 435.9998052039491, + "duality_gap": 0.00026748879605520415, + "primal_infeasibility": 2.3053436931048306e-07, + "dual_infeasibility": 0.0, + "iterations": 225, + "memo": { + "solver_solve_time": 0.012320290999999999, + "problem_class": "SDP" + } }, { - "id": 1674, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1155, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -33958,29 +58778,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:27:12", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:01:58", + "solve_time": 0.020327091217041016, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 436.0403897924358, + "dual_objective_value": 435.9998304004548, + "duality_gap": 0.04055939198099168, + "primal_infeasibility": 9.059329771695843e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1543, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1605, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34002,6 +58830,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34009,22 +58840,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:02:41", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:00:56", + "solve_time": 0.4685420416666667, + "status": "OPTIMAL", + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0.0, + "iterations": 10, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.4685420416666667, + "setup_time": [], + "iterations": 10, + "primal_objective_value": 436.000000302473, + "dual_objective_value": 435.9999999151769, + "duality_gap": 3.872960974149464e-07, + "primal_infeasibility": 1.0352572932812939e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:53", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1138, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1490, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "maxG55", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34046,29 +58901,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:57:02", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:40:19", + "solve_time": 0.2549562083333333, + "status": "OPTIMAL", + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2549562083333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 435.99999879051774, + "dual_objective_value": 435.9999990246588, + "duality_gap": 2.3414105498886784e-07, + "primal_infeasibility": 6.0506510269859365e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1141, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1160, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34090,6 +58972,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34097,7 +58982,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:59:22", + "timestamp": "2025-07-18T13:03:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -34105,14 +58990,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1142, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1163, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34134,6 +59024,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34141,22 +59034,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:59:24", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T13:04:47", + "solve_time": 0.3584439754486084, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.43279582401055, + "dual_objective_value": 381.4327960779774, + "duality_gap": -2.539668457757216e-07, + "primal_infeasibility": 9.455201134480351e-10, + "dual_infeasibility": 4.251389530798158e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 0.353374376, + "problem_class": "SDP" + } }, { - "id": 1143, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1164, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34178,6 +59075,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34185,22 +59085,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:59:25", - "solve_time": null, - "status": "UNSUPPORTED", + "timestamp": "2025-07-18T13:04:48", + "solve_time": 0.4547898769378662, + "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1144, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1167, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34222,6 +59126,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34229,7 +59136,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:59:27", + "timestamp": "2025-07-18T13:05:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -34237,14 +59144,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1675, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1168, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34266,29 +59178,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:27:58", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1544, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1169, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34310,29 +59230,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:03:25", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1145, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1170, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "maxG60", + "problem_name": "qap6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -34354,6 +59282,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34361,7 +59292,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T12:59:28", + "timestamp": "2025-07-18T13:05:07", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -34369,15 +59300,20 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1148, - "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "id": 1165, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "mcp100", - "problem_type": "UNKNOWN", + "problem_name": "qap6", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34398,6 +59334,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34405,23 +59344,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:00:39", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T13:04:59", + "solve_time": 11.140121698379517, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.1579788447341, + "dual_objective_value": 381.2947477911839, + "duality_gap": -0.13676894644981985, + "primal_infeasibility": 2.5734585406151894e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 11.135406458, + "problem_class": "SDP" + } }, { - "id": 1682, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1166, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "mcp100", - "problem_type": "UNKNOWN", + "problem_name": "qap6", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34442,30 +59385,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:01", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:04:59", + "solve_time": 0.09423494338989258, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 381.5253368559963, + "dual_objective_value": 381.38626400064095, + "duality_gap": 0.1390728553553231, + "primal_infeasibility": 4.7219042964099784e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1549, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1606, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp100", - "problem_type": "UNKNOWN", + "problem_name": "qap6", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34486,6 +59437,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -34493,23 +59447,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:35", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:01:02", + "solve_time": 0.7566619166666667, + "status": "OPTIMAL", + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0.0, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.7566619166666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 381.39365405504674, + "dual_objective_value": 381.41637577242363, + "duality_gap": 0.022721717376896322, + "primal_infeasibility": 2.8681423726442413e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:00:59", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1149, - "solver_name": "cvxpy_clarabel", - "solver_version": "unknown", + "id": 1491, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp124-1", - "problem_type": "UNKNOWN", + "problem_name": "qap6", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34530,49 +59508,8 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:00:52", - "solve_time": 0.0, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1683, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", - "problem_library": "SDPLIB", - "problem_name": "mcp124-1", - "problem_type": "UNKNOWN", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" }, "timezone": { "timezone_name": "UTC", @@ -34581,23 +59518,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:06", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:40:25", + "solve_time": 0.3632245416666667, + "status": "NUM_ERROR", + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.3632245416666667, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 381.4236687453082, + "dual_objective_value": 381.4240243638051, + "duality_gap": 0.0003556184968829257, + "primal_infeasibility": 1.0256556673173296e-07, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1550, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1171, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "mcp124-1", - "problem_type": "UNKNOWN", + "problem_name": "qap6", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34618,30 +59579,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:40", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:07", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1684, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1174, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "mcp124-2", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34662,30 +59631,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:11", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:49", + "solve_time": 1.2171392440795898, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.81215093653674, + "dual_objective_value": 424.8121509794146, + "duality_gap": -4.28778434979904e-08, + "primal_infeasibility": 1.4814603139603626e-09, + "dual_infeasibility": 2.3106894516466327e-09, + "iterations": 26, + "memo": { + "solver_solve_time": 1.208488294, + "problem_class": "SDP" + } }, { - "id": 1551, - "solver_name": "matlab_sedumi", + "id": 1175, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "mcp124-2", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34706,30 +59682,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:45", - "solve_time": null, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:05:50", + "solve_time": 0.7405779361724854, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1685, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1178, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "mcp124-3", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34750,30 +59733,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:15", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:18", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1552, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1179, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "mcp124-3", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34794,30 +59785,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:50", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:18", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1686, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1180, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "mcp124-4", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34838,30 +59837,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:20", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1553, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1181, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "mcp124-4", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34882,30 +59889,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:55", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1687, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1176, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "mcp250-1", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34926,30 +59941,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:25", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:10", + "solve_time": 20.12582302093506, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.5225849795715, + "dual_objective_value": 424.66763159392576, + "duality_gap": -0.14504661435427124, + "primal_infeasibility": 2.5643940808572178e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 20.117360833, + "problem_class": "SDP" + } }, { - "id": 1554, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1177, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "mcp250-1", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -34970,30 +59992,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:00", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:10", + "solve_time": 0.1465590000152588, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 424.8762477985437, + "dual_objective_value": 424.79985124990344, + "duality_gap": 0.07639654864027534, + "primal_infeasibility": 2.3370667875751253e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1688, + "id": 1607, "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp250-2", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35014,6 +60044,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35021,23 +60054,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:30", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:01:08", + "solve_time": 0.6350701666666667, + "status": "UNKNOWN", + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.6350701666666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": 424.7884026413741, + "dual_objective_value": 424.8042332891782, + "duality_gap": 0.015830647804136788, + "primal_infeasibility": 2.244805558197445e-07, + "dual_infeasibility": 1.0208979903820277e-13, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:05", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1555, + "id": 1492, "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp250-2", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35058,6 +60115,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35065,23 +60125,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:05", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:40:30", + "solve_time": 0.5065246666666666, + "status": "NUM_ERROR", + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.5065246666666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 424.8083811224529, + "dual_objective_value": 424.80858176294714, + "duality_gap": 0.00020064049425627672, + "primal_infeasibility": 7.622887967153097e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:28", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1689, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1182, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "mcp250-3", - "problem_type": "UNKNOWN", + "problem_name": "qap7", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35102,30 +60186,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:35", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:06:19", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1556, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1185, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "mcp250-3", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35146,30 +60238,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:10", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:08", + "solve_time": 3.9440019130706787, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 756.9434336934269, + "dual_objective_value": 756.9434339047293, + "duality_gap": -2.1130244931555353e-07, + "primal_infeasibility": 1.1033134136067158e-09, + "dual_infeasibility": 1.8036454579220684e-09, + "iterations": 29, + "memo": { + "solver_solve_time": 3.928795753, + "problem_class": "SDP" + } }, { - "id": 1690, - "solver_name": "matlab_sdpt3", + "id": 1186, + "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "mcp250-4", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35190,30 +60289,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:40", - "solve_time": null, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:09", + "solve_time": 1.6612441539764404, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1557, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1189, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "mcp250-4", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35234,30 +60340,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:14", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1691, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1190, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "mcp500-1", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35278,30 +60392,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:45", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1558, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1191, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "mcp500-1", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35322,30 +60444,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:19", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1692, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1192, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "mcp500-2", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35366,30 +60496,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:50", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1559, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1187, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "mcp500-2", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35410,30 +60548,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:24", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:46", + "solve_time": 36.509506940841675, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 756.5711755506155, + "dual_objective_value": 756.7533977873954, + "duality_gap": -0.18222223677992133, + "primal_infeasibility": 1.7661078048246205e-06, + "dual_infeasibility": 0.0, + "iterations": 100000, + "memo": { + "solver_solve_time": 36.495549333, + "problem_class": "SDP" + } }, { - "id": 1693, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1188, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "mcp500-3", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35454,30 +60599,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:35:55", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:46", + "solve_time": 0.23933076858520508, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 757.0347850401854, + "dual_objective_value": 756.9408334188629, + "duality_gap": 0.09395162132250334, + "primal_infeasibility": 1.6356761098055173e-08, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1560, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1608, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp500-3", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35498,6 +60651,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35505,23 +60661,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:29", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T14:01:14", + "solve_time": 0.5659632083333334, + "status": "OPTIMAL", + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5659632083333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 756.8395594287458, + "dual_objective_value": 756.8977747654171, + "duality_gap": 0.05821533667131007, + "primal_infeasibility": 6.256731733516596e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:11", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1694, - "solver_name": "matlab_sdpt3", - "solver_version": "unknown", + "id": 1493, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "mcp500-4", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35542,6 +60722,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35549,23 +60732,47 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:36:00", - "solve_time": null, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-19T12:40:36", + "solve_time": 0.8749054583333333, + "status": "NUM_ERROR", + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.8749054583333333, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 756.9340877297344, + "dual_objective_value": 756.934375193232, + "duality_gap": 0.0002874634975569279, + "primal_infeasibility": 3.486442395574242e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:33", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1561, - "solver_name": "matlab_sedumi", - "solver_version": "unknown", + "id": 1193, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "mcp500-4", - "problem_type": "UNKNOWN", + "problem_name": "qap8", + "problem_type": "SDP", "environment_info": { "cpu": { "cpu_count": 8, @@ -35586,29 +60793,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:16:34", + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:07:55", "solve_time": null, - "status": "ERROR", + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1207, + "id": 1196, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35630,6 +60845,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35637,22 +60855,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:11:11", - "solve_time": 25.793164014816284, - "status": "OPTIMAL", - "primal_objective_value": 1092.5981048387882, - "dual_objective_value": 1092.5981049304173, - "duality_gap": -9.162909009319264e-08, - "primal_infeasibility": 5.720872373199901e-10, - "dual_infeasibility": 1.1890157244942814e-10, - "iterations": 26 + "timestamp": "2025-07-18T13:08:56", + "solve_time": 9.71919322013855, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 1409.9415896092542, + "dual_objective_value": 1409.941617901437, + "duality_gap": -2.8292182832956314e-05, + "primal_infeasibility": 7.656624897637267e-08, + "dual_infeasibility": 8.594780663566562e-10, + "iterations": 24, + "memo": { + "solver_solve_time": 9.690633708, + "problem_class": "SDP" + } }, { - "id": 1208, + "id": 1197, "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35674,6 +60896,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35681,22 +60906,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:11:16", - "solve_time": 4.625144004821777, + "timestamp": "2025-07-18T13:08:59", + "solve_time": 2.7372238636016846, "status": "ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1210, + "id": 1200, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35718,6 +60947,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35725,7 +60957,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:13:02", + "timestamp": "2025-07-18T13:09:54", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -35733,14 +60965,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1211, + "id": 1201, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35762,6 +60999,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35769,7 +61009,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:13:02", + "timestamp": "2025-07-18T13:09:54", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -35777,14 +61017,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1212, + "id": 1202, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35806,6 +61051,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35813,7 +61061,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:13:02", + "timestamp": "2025-07-18T13:09:54", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -35821,14 +61069,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1213, + "id": 1203, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35850,6 +61103,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35857,7 +61113,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:13:02", + "timestamp": "2025-07-18T13:09:55", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -35865,14 +61121,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1209, + "id": 1198, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "qap9", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T13:09:44", + "solve_time": 44.790440797805786, + "status": "OPTIMAL", + "primal_objective_value": 1409.9180851457008, + "dual_objective_value": 1409.9311892082915, + "duality_gap": -0.013104062590628018, + "primal_infeasibility": 2.0332473972900747e-05, + "dual_infeasibility": 1.2215291832739586e-08, + "iterations": 74700, + "memo": { + "solver_solve_time": 44.763336166, + "problem_class": "SDP" + } + }, + { + "id": 1199, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35894,6 +61206,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35901,22 +61216,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:12:55", - "solve_time": 0.5981779098510742, + "timestamp": "2025-07-18T13:09:45", + "solve_time": 0.36574411392211914, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1093.0721614033846, - "dual_objective_value": 1092.5599703709595, - "duality_gap": 0.5121910324251076, - "primal_infeasibility": 2.3061857111994798e-08, + "primal_objective_value": 1410.25627924329, + "dual_objective_value": 1409.8952495753765, + "duality_gap": 0.361029667913499, + "primal_infeasibility": 4.0892029004511786e-08, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1610, + "id": 1609, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35938,6 +61258,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35945,22 +61268,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:26", - "solve_time": 0.8021789583333333, - "status": "UNKNOWN", - "primal_objective_value": 1092.5398261865366, - "dual_objective_value": 1092.5738677926238, - "duality_gap": 0.03404160608715756, - "primal_infeasibility": 2.2324924926700836e-07, + "timestamp": "2025-07-19T14:01:19", + "solve_time": 0.8991597916666667, + "status": "OPTIMAL", + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, "dual_infeasibility": 0.0, - "iterations": 14 + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.8991597916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": 1409.9186636560362, + "dual_objective_value": 1409.9299342574086, + "duality_gap": 0.011270601372416422, + "primal_infeasibility": 5.8123518858196593e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1495, + "id": 1494, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -35982,6 +61329,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -35989,22 +61339,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:50", - "solve_time": 2.500351125, + "timestamp": "2025-07-19T12:40:42", + "solve_time": 1.283624125, "status": "NUM_ERROR", - "primal_objective_value": 1092.5803930728775, - "dual_objective_value": 1092.5806235221098, - "duality_gap": 0.00023044923227644176, - "primal_infeasibility": 5.983215930617338e-08, + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, "dual_infeasibility": 0.0, - "iterations": 26 + "iterations": 25, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 1.283624125, + "setup_time": [], + "iterations": 25, + "primal_objective_value": 1409.918321784674, + "dual_objective_value": 1409.918571432121, + "duality_gap": 0.00024964744716271525, + "primal_infeasibility": 9.550174489527122e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:40:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1214, + "id": 1204, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap10", + "problem_name": "qap9", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36026,6 +61400,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36033,7 +61410,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:13:02", + "timestamp": "2025-07-18T13:09:55", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36041,14 +61418,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1152, + "id": 1216, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36070,6 +61452,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36077,22 +61462,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:01:58", - "solve_time": 0.039627790451049805, + "timestamp": "2025-07-18T13:49:36", + "solve_time": 20.110408067703247, "status": "OPTIMAL", - "primal_objective_value": 436.00000012500374, - "dual_objective_value": 436.0000001787257, - "duality_gap": -5.3721976200904464e-08, - "primal_infeasibility": 8.543064997221504e-10, - "dual_infeasibility": 8.700480256542984e-14, - "iterations": 9 + "primal_objective_value": -2448.659092952946, + "dual_objective_value": -2448.6590929340227, + "duality_gap": -1.892340151243843e-08, + "primal_infeasibility": 1.7496194581406766e-08, + "dual_infeasibility": 3.538743119610824e-11, + "iterations": 15, + "memo": { + "solver_solve_time": 3.195941749, + "problem_class": "SDP" + } }, { - "id": 1153, + "id": 2279, "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36114,29 +61503,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:01:58", - "solve_time": 0.05824089050292969, - "status": "OPTIMAL", - "primal_objective_value": 436.00000638953816, - "dual_objective_value": 436.0000103135326, - "duality_gap": -3.923994427168509e-06, - "primal_infeasibility": 6.573074355875933e-08, - "dual_infeasibility": 5.296699388254977e-12, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:46:59", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1156, + "id": 1218, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36158,6 +61554,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36165,7 +61564,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:03:31", + "timestamp": "2025-07-18T13:54:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36173,14 +61572,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1157, + "id": 1219, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36202,6 +61606,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36209,7 +61616,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:03:31", + "timestamp": "2025-07-18T13:54:31", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36217,14 +61624,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1158, + "id": 1220, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36246,6 +61658,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36253,7 +61668,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:03:31", + "timestamp": "2025-07-18T13:54:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36261,14 +61676,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1159, + "id": 1221, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36290,6 +61710,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36297,7 +61720,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:03:31", + "timestamp": "2025-07-18T13:54:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36305,14 +61728,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1154, + "id": 2276, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36334,29 +61762,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:01:58", - "solve_time": 0.015094995498657227, - "status": "OPTIMAL", - "primal_objective_value": 436.00007269274516, - "dual_objective_value": 435.9998052039491, - "duality_gap": 0.00026748879605520415, - "primal_infeasibility": 2.3053436931048306e-07, - "dual_infeasibility": 0.0, - "iterations": 225 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:41:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1155, + "id": 1217, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36378,6 +61813,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36385,22 +61823,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:01:58", - "solve_time": 0.020327091217041016, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 436.0403897924358, - "dual_objective_value": 435.9998304004548, - "duality_gap": 0.04055939198099168, - "primal_infeasibility": 9.059329771695843e-08, + "timestamp": "2025-07-18T13:54:23", + "solve_time": 29.925652980804443, + "status": "OPTIMAL", + "primal_objective_value": -2448.6590489835125, + "dual_objective_value": -2448.6591322561353, + "duality_gap": 8.327262275997782e-05, + "primal_infeasibility": 2.3298734319033554e-14, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1605, + "id": 1712, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36422,6 +61865,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36429,22 +61875,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:00:56", - "solve_time": 0.4685420416666667, + "timestamp": "2025-07-19T14:45:28", + "solve_time": 3.4544910833333335, "status": "OPTIMAL", - "primal_objective_value": 436.000000302473, - "dual_objective_value": 435.9999999151769, - "duality_gap": 3.872960974149464e-07, - "primal_infeasibility": 1.0352572932812939e-11, + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, "dual_infeasibility": 0.0, - "iterations": 10 + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 3.4544910833333335, + "setup_time": [], + "iterations": 15, + "primal_objective_value": -2448.659090183629, + "dual_objective_value": -2448.65913216471, + "duality_gap": 4.198108126729494e-05, + "primal_infeasibility": 3.2288322455640034e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:45:24", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1490, + "id": 1578, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36466,6 +61936,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36473,22 +61946,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:19", - "solve_time": 0.2549562083333333, + "timestamp": "2025-07-19T13:30:50", + "solve_time": 142.55485320833333, "status": "OPTIMAL", - "primal_objective_value": 435.99999879051774, - "dual_objective_value": 435.9999990246588, - "duality_gap": 2.3414105498886784e-07, - "primal_infeasibility": 6.0506510269859365e-09, - "dual_infeasibility": 0.0, - "iterations": 14 + "primal_objective_value": -2448.659124217068, + "dual_objective_value": -2448.659124204988, + "duality_gap": 1.2079908628948033e-08, + "primal_infeasibility": 4.663936345007886e-09, + "dual_infeasibility": 7.389642148204685e-12, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 142.55485320833333, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -2448.659124217068, + "dual_objective_value": -2448.659124204988, + "duality_gap": 1.2079908628948033e-08, + "primal_infeasibility": 4.663936345007886e-09, + "dual_infeasibility": 7.389642148204685e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:30:47", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1160, + "id": 1222, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap5", + "problem_name": "qpG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36510,6 +62007,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36517,7 +62017,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:03:31", + "timestamp": "2025-07-18T13:54:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36525,58 +62025,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1163, + "id": 2164, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "SDPLIB", - "problem_name": "qap6", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:04:47", - "solve_time": 0.3584439754486084, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 381.43279582401055, - "dual_objective_value": 381.4327960779774, - "duality_gap": -2.539668457757216e-07, - "primal_infeasibility": 9.455201134480351e-10, - "dual_infeasibility": 4.251389530798158e-09, - "iterations": 26 - }, - { - "id": 1164, - "solver_name": "cvxpy_cvxopt", "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36598,73 +62059,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:04:48", - "solve_time": 0.4547898769378662, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1167, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "SDPLIB", - "problem_name": "qap6", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:07", - "solve_time": null, - "status": "UNSUPPORTED", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:40", + "solve_time": 0.9329919815063477, + "status": "SUBPROCESS_ERROR", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1168, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 2165, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36686,6 +62112,62 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:41", + "solve_time": 0.9212636947631836, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } + }, + { + "id": 1224, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36693,7 +62175,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:07", + "timestamp": "2025-07-18T14:03:32", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36701,14 +62183,71 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1169, + "id": 1225, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "qpG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:03:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1226, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36730,6 +62269,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36737,7 +62279,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:07", + "timestamp": "2025-07-18T14:03:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36745,14 +62287,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1170, + "id": 1227, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36774,6 +62321,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36781,7 +62331,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:07", + "timestamp": "2025-07-18T14:03:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -36789,14 +62339,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1165, + "id": 2166, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36818,29 +62373,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:04:59", - "solve_time": 11.140121698379517, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 381.1579788447341, - "dual_objective_value": 381.2947477911839, - "duality_gap": -0.13676894644981985, - "primal_infeasibility": 2.5734585406151894e-06, - "dual_infeasibility": 0.0, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:43", + "solve_time": 0.9268250465393066, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1166, + "id": 2163, "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36862,29 +62426,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:04:59", - "solve_time": 0.09423494338989258, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 381.5253368559963, - "dual_objective_value": 381.38626400064095, - "duality_gap": 0.1390728553553231, - "primal_infeasibility": 4.7219042964099784e-08, - "dual_infeasibility": 0.0, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:39", + "solve_time": 0.9359021186828613, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1606, + "id": 1713, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36906,6 +62479,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -36913,22 +62489,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:02", - "solve_time": 0.7566619166666667, + "timestamp": "2025-07-19T14:46:39", + "solve_time": 6.199770916666667, "status": "OPTIMAL", - "primal_objective_value": 381.39365405504674, - "dual_objective_value": 381.41637577242363, - "duality_gap": 0.022721717376896322, - "primal_infeasibility": 2.8681423726442413e-07, + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, "dual_infeasibility": 0.0, - "iterations": 19 - }, - { - "id": 1491, + "iterations": 17, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.199770916666667, + "setup_time": [], + "iterations": 17, + "primal_objective_value": -11817.999949825342, + "dual_objective_value": -11818.000000034852, + "duality_gap": 5.020950993639417e-05, + "primal_infeasibility": 1.691030179875868e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:46:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2281, "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36950,29 +62550,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:25", - "solve_time": 0.3632245416666667, - "status": "NUM_ERROR", - "primal_objective_value": 381.4236687453082, - "dual_objective_value": 381.4240243638051, - "duality_gap": 0.0003556184968829257, - "primal_infeasibility": 1.0256556673173296e-07, - "dual_infeasibility": 0.0, - "iterations": 22 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:49:21", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1171, + "id": 1228, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap6", + "problem_name": "qpG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -36994,6 +62601,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37001,7 +62611,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:07", + "timestamp": "2025-07-18T14:03:33", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37009,14 +62619,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1174, + "id": 1231, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37038,6 +62653,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37045,22 +62663,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:49", - "solve_time": 1.2171392440795898, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 424.81215093653674, - "dual_objective_value": 424.8121509794146, - "duality_gap": -4.28778434979904e-08, - "primal_infeasibility": 1.4814603139603626e-09, - "dual_infeasibility": 2.3106894516466327e-09, - "iterations": 26 + "timestamp": "2025-07-18T14:06:06", + "solve_time": 41.18780493736267, + "status": "OPTIMAL", + "primal_objective_value": -20.239510587223354, + "dual_objective_value": -20.239510586816014, + "duality_gap": -4.0733993955655023e-10, + "primal_infeasibility": 9.912076322563995e-08, + "dual_infeasibility": 0.0, + "iterations": 29, + "memo": { + "solver_solve_time": 34.756203417, + "problem_class": "SDP" + } }, { - "id": 1175, + "id": 1232, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37082,6 +62704,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37089,22 +62714,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:05:50", - "solve_time": 0.7405779361724854, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:06:28", + "solve_time": 21.264667987823486, + "status": "OPTIMAL", + "primal_objective_value": -20.239510644969997, + "dual_objective_value": -20.239510638137972, + "duality_gap": -6.8320247237352305e-09, + "primal_infeasibility": 8.94817783016025e-08, + "dual_infeasibility": 5.0557558792995994e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1178, + "id": 1234, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37126,6 +62756,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37133,7 +62766,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:18", + "timestamp": "2025-07-18T14:10:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37141,14 +62774,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1179, + "id": 1235, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37170,6 +62808,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37177,7 +62818,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:18", + "timestamp": "2025-07-18T14:10:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37185,14 +62826,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1180, + "id": 1236, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37214,6 +62860,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37221,7 +62870,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:19", + "timestamp": "2025-07-18T14:10:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37229,14 +62878,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1181, + "id": 1237, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37258,6 +62912,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37265,7 +62922,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:19", + "timestamp": "2025-07-18T14:10:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37273,14 +62930,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1176, + "id": 2277, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37302,29 +62964,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:10", - "solve_time": 20.12582302093506, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 424.5225849795715, - "dual_objective_value": 424.66763159392576, - "duality_gap": -0.14504661435427124, - "primal_infeasibility": 2.5643940808572178e-06, - "dual_infeasibility": 0.0, - "iterations": 100000 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:43:36", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1177, + "id": 1233, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37346,6 +63015,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37353,22 +63025,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:10", - "solve_time": 0.1465590000152588, + "timestamp": "2025-07-18T14:09:55", + "solve_time": 7.810168981552124, "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 424.8762477985437, - "dual_objective_value": 424.79985124990344, - "duality_gap": 0.07639654864027534, - "primal_infeasibility": 2.3370667875751253e-08, + "primal_objective_value": -20.239507687488363, + "dual_objective_value": -20.23951064833439, + "duality_gap": 2.960846028798869e-06, + "primal_infeasibility": 1.5496658619045873e-08, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1607, + "id": 1611, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37390,6 +63067,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37397,22 +63077,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:08", - "solve_time": 0.6350701666666667, + "timestamp": "2025-07-19T14:01:35", + "solve_time": 2.882202875, "status": "UNKNOWN", - "primal_objective_value": 424.7884026413741, - "dual_objective_value": 424.8042332891782, - "duality_gap": 0.015830647804136788, - "primal_infeasibility": 2.244805558197445e-07, - "dual_infeasibility": 1.0208979903820277e-13, - "iterations": 19 + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0.0, + "iterations": 21, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 2.882202875, + "setup_time": [], + "iterations": 21, + "primal_objective_value": -20.239507562642537, + "dual_objective_value": -20.23951068538981, + "duality_gap": 3.122747273209825e-06, + "primal_infeasibility": 1.0755657434415856e-07, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:01:31", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1492, + "id": 1496, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37434,6 +63138,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37441,22 +63148,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:30", - "solve_time": 0.5065246666666666, + "timestamp": "2025-07-19T12:41:03", + "solve_time": 6.760695833333333, "status": "NUM_ERROR", - "primal_objective_value": 424.8083811224529, - "dual_objective_value": 424.80858176294714, - "duality_gap": 0.00020064049425627672, - "primal_infeasibility": 7.622887967153097e-08, + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, "dual_infeasibility": 0.0, - "iterations": 24 + "iterations": 37, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 6.760695833333333, + "setup_time": [], + "iterations": 37, + "primal_objective_value": -20.239510592874606, + "dual_objective_value": -20.239510589127317, + "duality_gap": 3.747288701561047e-09, + "primal_infeasibility": 3.232622404503955e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:41:00", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1182, + "id": 1238, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap7", + "problem_name": "ss30", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37478,6 +63209,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37485,7 +63219,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:06:19", + "timestamp": "2025-07-18T14:10:03", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37493,14 +63227,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1185, + "id": 1241, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37522,6 +63261,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37529,22 +63271,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:08", - "solve_time": 3.9440019130706787, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 756.9434336934269, - "dual_objective_value": 756.9434339047293, - "duality_gap": -2.1130244931555353e-07, - "primal_infeasibility": 1.1033134136067158e-09, - "dual_infeasibility": 1.8036454579220684e-09, - "iterations": 29 + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.5781240463256836, + "status": "OPTIMAL", + "primal_objective_value": -23.000000113696405, + "dual_objective_value": -23.00000006485042, + "duality_gap": -4.884598681087482e-08, + "primal_infeasibility": 1.7021181449260494e-08, + "dual_infeasibility": 1.1944769291368984e-11, + "iterations": 12, + "memo": { + "solver_solve_time": 0.573968168, + "problem_class": "SDP" + } }, { - "id": 1186, + "id": 1242, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37566,6 +63312,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37573,22 +63322,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:09", - "solve_time": 1.6612441539764404, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.30235886573791504, + "status": "OPTIMAL", + "primal_objective_value": -22.99999992045278, + "dual_objective_value": -22.999999920596142, + "duality_gap": 1.4336265508063661e-10, + "primal_infeasibility": 1.1739084766113277e-16, + "dual_infeasibility": 4.107080131386077e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1189, + "id": 1245, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37610,6 +63364,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37617,7 +63374,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:55", + "timestamp": "2025-07-18T14:11:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37625,14 +63382,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1190, + "id": 1246, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37654,6 +63416,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37661,7 +63426,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:55", + "timestamp": "2025-07-18T14:11:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37669,14 +63434,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1191, + "id": 1247, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37698,6 +63468,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37705,7 +63478,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:55", + "timestamp": "2025-07-18T14:11:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37713,14 +63486,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1192, + "id": 1248, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37742,6 +63520,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37749,7 +63530,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:55", + "timestamp": "2025-07-18T14:11:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37757,14 +63538,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1187, + "id": 1243, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37786,6 +63572,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37793,22 +63582,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:46", - "solve_time": 36.509506940841675, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 756.5711755506155, - "dual_objective_value": 756.7533977873954, - "duality_gap": -0.18222223677992133, - "primal_infeasibility": 1.7661078048246205e-06, - "dual_infeasibility": 0.0, - "iterations": 100000 + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.059606075286865234, + "status": "OPTIMAL", + "primal_objective_value": -22.99957523727033, + "dual_objective_value": -22.999473468676786, + "duality_gap": -0.00010176859354515955, + "primal_infeasibility": 8.547389016417847e-06, + "dual_infeasibility": 2.873384339106012e-07, + "iterations": 250, + "memo": { + "solver_solve_time": 0.055213041, + "problem_class": "SDP" + } }, { - "id": 1188, + "id": 1244, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37830,6 +63623,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37837,22 +63633,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:46", - "solve_time": 0.23933076858520508, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 757.0347850401854, - "dual_objective_value": 756.9408334188629, - "duality_gap": 0.09395162132250334, - "primal_infeasibility": 1.6356761098055173e-08, + "timestamp": "2025-07-18T14:11:05", + "solve_time": 0.025326967239379883, + "status": "OPTIMAL", + "primal_objective_value": -22.99999909785378, + "dual_objective_value": -23.000000314920484, + "duality_gap": 1.217066703418368e-06, + "primal_infeasibility": 5.552518868004142e-16, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1608, + "id": 1646, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37874,6 +63675,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37881,22 +63685,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:14", - "solve_time": 0.5659632083333334, + "timestamp": "2025-07-19T14:06:19", + "solve_time": 0.3554101666666667, "status": "OPTIMAL", - "primal_objective_value": 756.8395594287458, - "dual_objective_value": 756.8977747654171, - "duality_gap": 0.05821533667131007, - "primal_infeasibility": 6.256731733516596e-07, + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, "dual_infeasibility": 0.0, - "iterations": 15 + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.3554101666666667, + "setup_time": [], + "iterations": 11, + "primal_objective_value": -22.99999966935091, + "dual_objective_value": -23.000000054814368, + "duality_gap": 3.854634584854466e-07, + "primal_infeasibility": 1.08019134049444e-11, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:16", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1493, + "id": 1516, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37918,6 +63746,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37925,22 +63756,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:36", - "solve_time": 0.8749054583333333, - "status": "NUM_ERROR", - "primal_objective_value": 756.9340877297344, - "dual_objective_value": 756.934375193232, - "duality_gap": 0.0002874634975569279, - "primal_infeasibility": 3.486442395574242e-08, + "timestamp": "2025-07-19T12:46:55", + "solve_time": 0.2917774166666667, + "status": "OPTIMAL", + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, "dual_infeasibility": 0.0, - "iterations": 27 + "iterations": 19, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2917774166666667, + "setup_time": [], + "iterations": 19, + "primal_objective_value": -23.00000001877833, + "dual_objective_value": -23.000000013317347, + "duality_gap": 5.460982777094614e-09, + "primal_infeasibility": 2.5321435718789402e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1193, + "id": 1249, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap8", + "problem_name": "theta1", "problem_type": "SDP", "environment_info": { "cpu": { @@ -37962,6 +63817,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -37969,7 +63827,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:07:55", + "timestamp": "2025-07-18T14:11:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -37977,14 +63835,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1196, + "id": 1252, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38006,6 +63869,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38013,22 +63879,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:08:56", - "solve_time": 9.71919322013855, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1409.9415896092542, - "dual_objective_value": 1409.941617901437, - "duality_gap": -2.8292182832956314e-05, - "primal_infeasibility": 7.656624897637267e-08, - "dual_infeasibility": 8.594780663566562e-10, - "iterations": 24 + "timestamp": "2025-07-18T14:12:36", + "solve_time": 10.558916091918945, + "status": "OPTIMAL", + "primal_objective_value": -32.87916985873813, + "dual_objective_value": -32.87916961787732, + "duality_gap": -2.4086081396035297e-07, + "primal_infeasibility": 9.043557291921717e-08, + "dual_infeasibility": 6.7143730115455886e-12, + "iterations": 10, + "memo": { + "solver_solve_time": 10.531377999, + "problem_class": "SDP" + } }, { - "id": 1197, + "id": 1253, "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38050,6 +63920,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38057,22 +63930,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:08:59", - "solve_time": 2.7372238636016846, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:12:38", + "solve_time": 2.042449951171875, + "status": "OPTIMAL", + "primal_objective_value": -32.87916894882581, + "dual_objective_value": -32.87916894877984, + "duality_gap": -4.596500957632088e-11, + "primal_infeasibility": 1.4343967695977949e-12, + "dual_infeasibility": 2.2664637685921277e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1200, + "id": 1256, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38094,6 +63972,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38101,7 +63982,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:54", + "timestamp": "2025-07-18T14:12:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38109,14 +63990,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1201, + "id": 1257, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38138,6 +64024,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38145,7 +64034,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:54", + "timestamp": "2025-07-18T14:12:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38153,14 +64042,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1202, + "id": 1258, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38182,6 +64076,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38189,7 +64086,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:54", + "timestamp": "2025-07-18T14:12:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38197,14 +64094,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1203, + "id": 1259, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38226,6 +64128,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38233,7 +64138,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:55", + "timestamp": "2025-07-18T14:12:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38241,14 +64146,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1198, + "id": 1254, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38270,6 +64180,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38277,22 +64190,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:44", - "solve_time": 44.790440797805786, + "timestamp": "2025-07-18T14:12:38", + "solve_time": 0.41171908378601074, "status": "OPTIMAL", - "primal_objective_value": 1409.9180851457008, - "dual_objective_value": 1409.9311892082915, - "duality_gap": -0.013104062590628018, - "primal_infeasibility": 2.0332473972900747e-05, - "dual_infeasibility": 1.2215291832739586e-08, - "iterations": 74700 + "primal_objective_value": -32.879092775414236, + "dual_objective_value": -32.87901385888463, + "duality_gap": -7.891652960267947e-05, + "primal_infeasibility": 1.00022956740785e-06, + "dual_infeasibility": 2.3274278129605833e-07, + "iterations": 350, + "memo": { + "solver_solve_time": 0.3871845, + "problem_class": "SDP" + } }, { - "id": 1199, + "id": 1255, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38314,6 +64231,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38321,22 +64241,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:45", - "solve_time": 0.36574411392211914, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 1410.25627924329, - "dual_objective_value": 1409.8952495753765, - "duality_gap": 0.361029667913499, - "primal_infeasibility": 4.0892029004511786e-08, + "timestamp": "2025-07-18T14:12:39", + "solve_time": 0.47716593742370605, + "status": "OPTIMAL", + "primal_objective_value": -32.87916857824288, + "dual_objective_value": -32.87916905441676, + "duality_gap": 4.761738736647203e-07, + "primal_infeasibility": 4.57224779883188e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1609, + "id": 1647, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38358,6 +64283,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38365,22 +64293,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:19", - "solve_time": 0.8991597916666667, + "timestamp": "2025-07-19T14:06:25", + "solve_time": 0.5580662916666667, "status": "OPTIMAL", - "primal_objective_value": 1409.9186636560362, - "dual_objective_value": 1409.9299342574086, - "duality_gap": 0.011270601372416422, - "primal_infeasibility": 5.8123518858196593e-08, + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, "dual_infeasibility": 0.0, - "iterations": 17 + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.5580662916666667, + "setup_time": [], + "iterations": 13, + "primal_objective_value": -32.87916893679436, + "dual_objective_value": -32.87916903116265, + "duality_gap": 9.436828918296669e-08, + "primal_infeasibility": 1.2482387284479412e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:22", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1494, + "id": 1517, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qap9", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38402,6 +64354,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38409,198 +64364,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:40:42", - "solve_time": 1.283624125, - "status": "NUM_ERROR", - "primal_objective_value": 1409.918321784674, - "dual_objective_value": 1409.918571432121, - "duality_gap": 0.00024964744716271525, - "primal_infeasibility": 9.550174489527122e-08, + "timestamp": "2025-07-19T12:47:01", + "solve_time": 0.631585375, + "status": "OPTIMAL", + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, "dual_infeasibility": 0.0, - "iterations": 25 + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.631585375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -32.879169040448566, + "dual_objective_value": -32.87916903780507, + "duality_gap": 2.643496088694519e-09, + "primal_infeasibility": 2.2690844865871237e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:58", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1204, + "id": 1260, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qap9", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:09:55", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1216, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", - "problem_library": "SDPLIB", - "problem_name": "qpG11", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:49:36", - "solve_time": 20.110408067703247, - "status": "OPTIMAL", - "primal_objective_value": -2448.659092952946, - "dual_objective_value": -2448.6590929340227, - "duality_gap": -1.892340151243843e-08, - "primal_infeasibility": 1.7496194581406766e-08, - "dual_infeasibility": 3.538743119610824e-11, - "iterations": 15 - }, - { - "id": 1218, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "SDPLIB", - "problem_name": "qpG11", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:31", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1219, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "SDPLIB", - "problem_name": "qpG11", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:31", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1220, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", - "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38622,6 +64425,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38629,7 +64435,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:32", + "timestamp": "2025-07-18T14:12:50", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38637,14 +64443,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1221, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1263, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38666,6 +64477,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38673,22 +64487,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:32", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:24:54", + "solve_time": 67.7079222202301, + "status": "OPTIMAL", + "primal_objective_value": -42.16698181950611, + "dual_objective_value": -42.16698175324743, + "duality_gap": -6.625868564924531e-08, + "primal_infeasibility": 2.566384582637676e-08, + "dual_infeasibility": 6.118994005248439e-14, + "iterations": 10, + "memo": { + "solver_solve_time": 67.592432958, + "problem_class": "SDP" + } }, { - "id": 1217, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1264, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38710,6 +64528,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38717,22 +64538,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:23", - "solve_time": 29.925652980804443, + "timestamp": "2025-07-18T14:25:02", + "solve_time": 7.798202753067017, "status": "OPTIMAL", - "primal_objective_value": -2448.6590489835125, - "dual_objective_value": -2448.6591322561353, - "duality_gap": 8.327262275997782e-05, - "primal_infeasibility": 2.3298734319033554e-14, - "dual_infeasibility": 0.0, - "iterations": null + "primal_objective_value": -42.166981272985936, + "dual_objective_value": -42.166981273163785, + "duality_gap": 1.7784884676075308e-10, + "primal_infeasibility": 3.401035803092698e-15, + "dual_infeasibility": 3.975102289462933e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1215, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1267, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38754,6 +64580,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38761,22 +64590,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:45:31", - "solve_time": 31.200602054595947, - "status": "OPTIMAL", - "primal_objective_value": -2448.659090183629, - "dual_objective_value": -2448.65913216471, - "duality_gap": 4.198108126729494e-05, - "primal_infeasibility": 3.2288322455640034e-12, - "dual_infeasibility": 0.0, - "iterations": 15 + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1578, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1268, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38798,29 +64632,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:30:50", - "solve_time": 142.55485320833333, - "status": "OPTIMAL", - "primal_objective_value": -2448.659124217068, - "dual_objective_value": -2448.659124204988, - "duality_gap": 1.2079908628948033e-08, - "primal_infeasibility": 4.663936345007886e-09, - "dual_infeasibility": 7.389642148204685e-12, - "iterations": 17 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T14:25:15", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1222, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1269, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "qpG11", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38842,6 +64684,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38849,7 +64694,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:54:32", + "timestamp": "2025-07-18T14:25:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38857,14 +64702,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1224, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1270, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38886,6 +64736,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38893,7 +64746,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:03:32", + "timestamp": "2025-07-18T14:25:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -38901,14 +64754,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1225, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1265, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38930,6 +64788,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38937,22 +64798,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:03:32", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:25:03", + "solve_time": 1.58660888671875, + "status": "OPTIMAL", + "primal_objective_value": -42.166983999600596, + "dual_objective_value": -42.166985728095874, + "duality_gap": 1.7284952775753482e-06, + "primal_infeasibility": 2.2777817734753627e-08, + "dual_infeasibility": 6.1942128146186496e-09, + "iterations": 450, + "memo": { + "solver_solve_time": 1.477760083, + "problem_class": "SDP" + } }, { - "id": 1226, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1266, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -38974,6 +64839,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -38981,22 +64849,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:03:33", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T14:25:05", + "solve_time": 1.048050880432129, + "status": "OPTIMAL", + "primal_objective_value": -42.16698095442231, + "dual_objective_value": -42.166981616724364, + "duality_gap": 6.623020567531057e-07, + "primal_infeasibility": 2.3718112851955558e-15, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1227, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1648, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39018,29 +64891,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:03:33", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:33", + "solve_time": 1.1650570833333334, + "status": "OPTIMAL", + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0.0, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.1650570833333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -42.16698130052295, + "dual_objective_value": -42.16698152368698, + "duality_gap": 2.2316402947808456e-07, + "primal_infeasibility": 6.941267860310931e-12, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:29", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1223, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1518, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39062,29 +64962,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T13:58:16", - "solve_time": 65.04648661613464, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:47:08", + "solve_time": 2.416633291666667, "status": "OPTIMAL", - "primal_objective_value": -11817.999949825342, - "dual_objective_value": -11818.000000034852, - "duality_gap": 5.020950993639417e-05, - "primal_infeasibility": 1.691030179875868e-11, + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, "dual_infeasibility": 0.0, - "iterations": 17 + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 2.416633291666667, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -42.16698154577349, + "dual_objective_value": -42.16698155040591, + "duality_gap": 4.632418892924761e-09, + "primal_infeasibility": 4.565662075596726e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:47:06", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1228, + "id": 1271, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "qpG51", + "problem_name": "theta3", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39106,6 +65033,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -39113,7 +65043,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:03:33", + "timestamp": "2025-07-18T14:25:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39121,14 +65051,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1231, + "id": 2168, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39150,29 +65085,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:06:06", - "solve_time": 41.18780493736267, - "status": "OPTIMAL", - "primal_objective_value": -20.239510587223354, - "dual_objective_value": -20.239510586816014, - "duality_gap": -4.0733993955655023e-10, - "primal_infeasibility": 9.912076322563995e-08, - "dual_infeasibility": 0.0, - "iterations": 29 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:37:47", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1232, + "id": 2169, "solver_name": "cvxpy_cvxopt", "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39194,29 +65136,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:06:28", - "solve_time": 21.264667987823486, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:18", + "solve_time": 29.595786094665527, "status": "OPTIMAL", - "primal_objective_value": -20.239510644969997, - "dual_objective_value": -20.239510638137972, - "duality_gap": -6.8320247237352305e-09, - "primal_infeasibility": 8.94817783016025e-08, - "dual_infeasibility": 5.0557558792995994e-11, - "iterations": null - }, - { - "id": 1234, + "primal_objective_value": -50.3212217910097, + "dual_objective_value": -50.32122179111797, + "duality_gap": 1.0827250207512407e-10, + "primal_infeasibility": 1.0777758760552207e-13, + "dual_infeasibility": 1.9701297898894425e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1767, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39238,14 +65188,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:10:03", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:19", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39253,14 +65206,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1235, + "id": 1769, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39282,14 +65240,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:10:03", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39297,14 +65258,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1236, + "id": 1770, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39326,14 +65292,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:10:03", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39341,14 +65310,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1237, + "id": 1768, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39370,14 +65344,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:10:03", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:19", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39385,14 +65362,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1233, + "id": 2170, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "problem_library": "SDPLIB", + "problem_name": "theta4", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:22", + "solve_time": 2.66982102394104, + "status": "OPTIMAL", + "primal_objective_value": -50.32166114881474, + "dual_objective_value": -50.32153115885043, + "duality_gap": -0.0001299899643072422, + "primal_infeasibility": 2.9254331569073637e-06, + "dual_infeasibility": 9.944532731845678e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 2.3345363750000003, + "problem_class": "SDP" + } + }, + { + "id": 2167, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39414,29 +65447,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:09:55", - "solve_time": 7.810168981552124, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": -20.239507687488363, - "dual_objective_value": -20.23951064833439, - "duality_gap": 2.960846028798869e-06, - "primal_infeasibility": 1.5496658619045873e-08, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:35:46", + "solve_time": 2.17305588722229, + "status": "OPTIMAL", + "primal_objective_value": -50.32122092262562, + "dual_objective_value": -50.321222056603794, + "duality_gap": 1.1339781735841825e-06, + "primal_infeasibility": 4.166852070171613e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1611, + "id": 1659, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39458,6 +65499,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -39465,22 +65509,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:01:35", - "solve_time": 2.882202875, - "status": "UNKNOWN", - "primal_objective_value": -20.239507562642537, - "dual_objective_value": -20.23951068538981, - "duality_gap": 3.122747273209825e-06, - "primal_infeasibility": 1.0755657434415856e-07, + "timestamp": "2025-07-19T14:10:09", + "solve_time": 1.6901592083333334, + "status": "OPTIMAL", + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, "dual_infeasibility": 0.0, - "iterations": 21 + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.6901592083333334, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -50.321221317087485, + "dual_objective_value": -50.32122203998839, + "duality_gap": 7.229009071352266e-07, + "primal_infeasibility": 3.4400304938930694e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:07", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1496, + "id": 1528, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39502,6 +65570,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -39509,22 +65580,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:41:03", - "solve_time": 6.760695833333333, - "status": "NUM_ERROR", - "primal_objective_value": -20.239510592874606, - "dual_objective_value": -20.239510589127317, - "duality_gap": 3.747288701561047e-09, - "primal_infeasibility": 3.232622404503955e-08, + "timestamp": "2025-07-19T12:53:42", + "solve_time": 9.029102375, + "status": "OPTIMAL", + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, "dual_infeasibility": 0.0, - "iterations": 37 - }, - { - "id": 1238, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 9.029102375, + "setup_time": [], + "iterations": 20, + "primal_objective_value": -50.32122201238018, + "dual_objective_value": -50.32122201939875, + "duality_gap": 7.018570613581687e-09, + "primal_infeasibility": 4.163130295345427e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:53:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1771, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "ss30", + "problem_name": "theta4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39546,14 +65641,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:10:03", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:20", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39561,14 +65659,70 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1241, + "id": 2172, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:40:31", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } + }, + { + "id": 2173, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "problem_library": "SDPLIB", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39590,73 +65744,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:05", - "solve_time": 0.5781240463256836, - "status": "OPTIMAL", - "primal_objective_value": -23.000000113696405, - "dual_objective_value": -23.00000006485042, - "duality_gap": -4.884598681087482e-08, - "primal_infeasibility": 1.7021181449260494e-08, - "dual_infeasibility": 1.1944769291368984e-11, - "iterations": 12 - }, - { - "id": 1242, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", - "problem_library": "SDPLIB", - "problem_name": "theta1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:05", - "solve_time": 0.30235886573791504, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:45", + "solve_time": 73.00050282478333, "status": "OPTIMAL", - "primal_objective_value": -22.99999992045278, - "dual_objective_value": -22.999999920596142, - "duality_gap": 1.4336265508063661e-10, - "primal_infeasibility": 1.1739084766113277e-16, - "dual_infeasibility": 4.107080131386077e-11, - "iterations": null - }, - { - "id": 1245, + "primal_objective_value": -57.23230661497225, + "dual_objective_value": -57.23230661531533, + "duality_gap": 3.4307845453440677e-10, + "primal_infeasibility": 9.587709927591261e-14, + "dual_infeasibility": 6.076045292986302e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1772, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39678,14 +65796,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:22", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39693,14 +65814,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1246, + "id": 1774, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39722,14 +65848,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:22", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39737,14 +65866,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1247, + "id": 1775, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39766,14 +65900,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:22", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:22", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39781,14 +65918,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1248, + "id": 1773, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39810,14 +65952,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:22", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -39825,14 +65970,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1243, + "id": 2174, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39854,29 +66004,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:05", - "solve_time": 0.059606075286865234, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:52", + "solve_time": 5.0073630809783936, "status": "OPTIMAL", - "primal_objective_value": -22.99957523727033, - "dual_objective_value": -22.999473468676786, - "duality_gap": -0.00010176859354515955, - "primal_infeasibility": 8.547389016417847e-06, - "dual_infeasibility": 2.873384339106012e-07, - "iterations": 250 - }, - { - "id": 1244, + "primal_objective_value": -57.23240759320841, + "dual_objective_value": -57.23245003631919, + "duality_gap": 4.24431107859391e-05, + "primal_infeasibility": 4.5962074213473126e-07, + "dual_infeasibility": 9.261089404552817e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 4.229581583, + "problem_class": "SDP" + } + }, + { + "id": 2171, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39898,29 +66055,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:05", - "solve_time": 0.025326967239379883, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:38:29", + "solve_time": 5.290843963623047, "status": "OPTIMAL", - "primal_objective_value": -22.99999909785378, - "dual_objective_value": -23.000000314920484, - "duality_gap": 1.217066703418368e-06, - "primal_infeasibility": 5.552518868004142e-16, + "primal_objective_value": -57.232306113340115, + "dual_objective_value": -57.232307531112916, + "duality_gap": 1.4177728004938217e-06, + "primal_infeasibility": 2.248221894866901e-15, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1646, + "id": 1660, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39942,6 +66107,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -39949,22 +66117,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:19", - "solve_time": 0.3554101666666667, + "timestamp": "2025-07-19T14:10:21", + "solve_time": 3.2877647083333335, "status": "OPTIMAL", - "primal_objective_value": -22.99999966935091, - "dual_objective_value": -23.000000054814368, - "duality_gap": 3.854634584854466e-07, - "primal_infeasibility": 1.08019134049444e-11, + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, "dual_infeasibility": 0.0, - "iterations": 11 + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 3.2877647083333335, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -57.23230683313342, + "dual_objective_value": -57.232307346760024, + "duality_gap": 5.136266025829173e-07, + "primal_infeasibility": 4.815986565890254e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:17", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1516, + "id": 1529, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -39986,6 +66178,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -39993,22 +66188,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:55", - "solve_time": 0.2917774166666667, + "timestamp": "2025-07-19T12:54:24", + "solve_time": 32.23979391666666, "status": "OPTIMAL", - "primal_objective_value": -23.00000001877833, - "dual_objective_value": -23.000000013317347, - "duality_gap": 5.460982777094614e-09, - "primal_infeasibility": 2.5321435718789402e-09, + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, "dual_infeasibility": 0.0, - "iterations": 19 - }, - { - "id": 1249, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 32.23979391666666, + "setup_time": [], + "iterations": 23, + "primal_objective_value": -57.23230747485862, + "dual_objective_value": -57.232307354157946, + "duality_gap": 1.2070067612057755e-07, + "primal_infeasibility": 4.87171381111366e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:54:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1776, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "theta1", + "problem_name": "theta5", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40030,14 +66249,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:11:22", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40045,14 +66267,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1252, + "id": 2232, "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40074,29 +66301,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:36", - "solve_time": 10.558916091918945, - "status": "OPTIMAL", - "primal_objective_value": -32.87916985873813, - "dual_objective_value": -32.87916961787732, - "duality_gap": -2.4086081396035297e-07, - "primal_infeasibility": 9.043557291921717e-08, - "dual_infeasibility": 6.7143730115455886e-12, - "iterations": 10 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:20:38", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1253, + "id": 2233, "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40118,29 +66352,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:38", - "solve_time": 2.042449951171875, - "status": "OPTIMAL", - "primal_objective_value": -32.87916894882581, - "dual_objective_value": -32.87916894877984, - "duality_gap": -4.596500957632088e-11, - "primal_infeasibility": 1.4343967695977949e-12, - "dual_infeasibility": 2.2664637685921277e-11, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:22:39", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1256, + "id": 1777, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40162,14 +66403,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:50", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:23", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40177,14 +66421,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1257, + "id": 1779, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40206,14 +66455,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:50", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40221,14 +66473,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1258, + "id": 1780, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40250,14 +66507,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:50", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:25", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40265,14 +66525,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1259, + "id": 1778, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40294,14 +66559,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:50", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:24", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40309,14 +66577,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1254, + "id": 2234, "solver_name": "cvxpy_scs", "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40338,29 +66611,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:38", - "solve_time": 0.41171908378601074, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:22:49", + "solve_time": 8.415114879608154, "status": "OPTIMAL", - "primal_objective_value": -32.879092775414236, - "dual_objective_value": -32.87901385888463, - "duality_gap": -7.891652960267947e-05, - "primal_infeasibility": 1.00022956740785e-06, - "dual_infeasibility": 2.3274278129605833e-07, - "iterations": 350 - }, - { - "id": 1255, + "primal_objective_value": -63.477143052691204, + "dual_objective_value": -63.47716632190371, + "duality_gap": 2.3269212505283576e-05, + "primal_infeasibility": 1.793398850777613e-07, + "dual_infeasibility": 5.95964349077978e-08, + "iterations": 325, + "memo": { + "solver_solve_time": 6.774055375, + "problem_class": "SDP" + } + }, + { + "id": 2231, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40382,29 +66662,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:39", - "solve_time": 0.47716593742370605, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:18:36", + "solve_time": 10.462555885314941, "status": "OPTIMAL", - "primal_objective_value": -32.87916857824288, - "dual_objective_value": -32.87916905441676, - "duality_gap": 4.761738736647203e-07, - "primal_infeasibility": 4.57224779883188e-15, + "primal_objective_value": -63.477086010464404, + "dual_objective_value": -63.47708753548431, + "duality_gap": 1.5250199041361157e-06, + "primal_infeasibility": 1.2905179494861903e-14, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1647, + "id": 1661, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40426,6 +66714,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -40433,22 +66724,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:25", - "solve_time": 0.5580662916666667, + "timestamp": "2025-07-19T14:10:38", + "solve_time": 5.631308958333333, "status": "OPTIMAL", - "primal_objective_value": -32.87916893679436, - "dual_objective_value": -32.87916903116265, - "duality_gap": 9.436828918296669e-08, - "primal_infeasibility": 1.2482387284479412e-12, + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, "dual_infeasibility": 0.0, - "iterations": 13 + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 5.631308958333333, + "setup_time": [], + "iterations": 14, + "primal_objective_value": -63.47708709665152, + "dual_objective_value": -63.477087197659806, + "duality_gap": 1.010082826269354e-07, + "primal_infeasibility": 8.471542469613478e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:10:35", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1517, + "id": 1530, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40470,6 +66785,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -40477,22 +66795,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:01", - "solve_time": 0.631585375, + "timestamp": "2025-07-19T12:56:13", + "solve_time": 96.736359625, "status": "OPTIMAL", - "primal_objective_value": -32.879169040448566, - "dual_objective_value": -32.87916903780507, - "duality_gap": 2.643496088694519e-09, - "primal_infeasibility": 2.2690844865871237e-09, + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, "dual_infeasibility": 0.0, - "iterations": 20 - }, - { - "id": 1260, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 96.736359625, + "setup_time": [], + "iterations": 24, + "primal_objective_value": -63.47708710436236, + "dual_objective_value": -63.47708721576618, + "duality_gap": 1.1140382127905468e-07, + "primal_infeasibility": 9.370169346520279e-10, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:56:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1781, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "theta2", + "problem_name": "theta6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40514,14 +66856,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:12:50", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40529,14 +66874,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1263, + "id": 2236, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40558,29 +66908,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:24:54", - "solve_time": 67.7079222202301, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:23:21", + "solve_time": 14.389510154724121, "status": "OPTIMAL", - "primal_objective_value": -42.16698181950611, - "dual_objective_value": -42.16698175324743, - "duality_gap": -6.625868564924531e-08, - "primal_infeasibility": 2.566384582637676e-08, - "dual_infeasibility": 6.118994005248439e-14, - "iterations": 10 - }, - { - "id": 1264, + "primal_objective_value": -399.99997518390705, + "dual_objective_value": -399.9999722019107, + "duality_gap": -2.9819963742738764e-06, + "primal_infeasibility": 1.837354544732748e-08, + "dual_infeasibility": 1.1691283350191018e-10, + "iterations": 11, + "memo": { + "solver_solve_time": 4.544505209, + "problem_class": "SDP" + } + }, + { + "id": 2237, "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40602,29 +66959,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:02", - "solve_time": 7.798202753067017, - "status": "OPTIMAL", - "primal_objective_value": -42.166981272985936, - "dual_objective_value": -42.166981273163785, - "duality_gap": 1.7784884676075308e-10, - "primal_infeasibility": 3.401035803092698e-15, - "dual_infeasibility": 3.975102289462933e-11, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:25:22", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1267, + "id": 1782, "solver_name": "cvxpy_ecos", "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40646,14 +67010,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:15", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40661,14 +67028,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1268, + "id": 1784, "solver_name": "cvxpy_highs", "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40690,14 +67062,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:15", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:27", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40705,14 +67080,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1269, + "id": 1785, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40734,14 +67114,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:15", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:28", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40749,14 +67132,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1270, + "id": 1783, "solver_name": "cvxpy_scip", "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40778,14 +67166,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:15", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:27", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -40793,14 +67184,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1265, + "id": 2238, "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40822,29 +67218,36 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:03", - "solve_time": 1.58660888671875, - "status": "OPTIMAL", - "primal_objective_value": -42.166983999600596, - "dual_objective_value": -42.166985728095874, - "duality_gap": 1.7284952775753482e-06, - "primal_infeasibility": 2.2777817734753627e-08, - "dual_infeasibility": 6.1942128146186496e-09, - "iterations": 450 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:27:22", + "solve_time": 120.0, + "status": "TIMEOUT", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "timeout_duration": 120.0, + "problem_class": "SDP" + } }, { - "id": 1266, + "id": 2235, "solver_name": "cvxpy_sdpa", "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40866,29 +67269,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:05", - "solve_time": 1.048050880432129, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:23:05", + "solve_time": 14.341548681259155, "status": "OPTIMAL", - "primal_objective_value": -42.16698095442231, - "dual_objective_value": -42.166981616724364, - "duality_gap": 6.623020567531057e-07, - "primal_infeasibility": 2.3718112851955558e-15, + "primal_objective_value": -399.99999085524865, + "dual_objective_value": -400.0000000516816, + "duality_gap": 9.196432927183196e-06, + "primal_infeasibility": 2.8791527184913406e-11, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1648, + "id": 1678, "solver_name": "matlab_sdpt3", "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40910,6 +67321,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -40917,22 +67331,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:33", - "solve_time": 1.1650570833333334, + "timestamp": "2025-07-19T14:30:23", + "solve_time": 6.12120375, "status": "OPTIMAL", - "primal_objective_value": -42.16698130052295, - "dual_objective_value": -42.16698152368698, - "duality_gap": 2.2316402947808456e-07, - "primal_infeasibility": 6.941267860310931e-12, + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, "dual_infeasibility": 0.0, - "iterations": 14 + "iterations": 18, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 6.12120375, + "setup_time": [], + "iterations": 18, + "primal_objective_value": -399.9999948753643, + "dual_objective_value": -400.0000001208191, + "duality_gap": 5.2454548153946234e-06, + "primal_infeasibility": 5.104383506653095e-13, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:30:20", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1518, + "id": 1546, "solver_name": "matlab_sedumi", "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40954,6 +67392,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -40961,22 +67402,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:47:08", - "solve_time": 2.416633291666667, + "timestamp": "2025-07-19T13:10:16", + "solve_time": 69.43002633333333, "status": "OPTIMAL", - "primal_objective_value": -42.16698154577349, - "dual_objective_value": -42.16698155040591, - "duality_gap": 4.632418892924761e-09, - "primal_infeasibility": 4.565662075596726e-09, - "dual_infeasibility": 0.0, - "iterations": 20 - }, - { - "id": 1271, + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "iterations": 33, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 69.43002633333333, + "setup_time": [], + "iterations": 33, + "primal_objective_value": -399.9999995772125, + "dual_objective_value": -399.9999995761562, + "duality_gap": 1.0563212526903953e-09, + "primal_infeasibility": 2.5194124567833976e-09, + "dual_infeasibility": 1.777169568338365e-12, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:10:13", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 1786, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "theta3", + "problem_name": "thetaG11", "problem_type": "SDP", "environment_info": { "cpu": { @@ -40998,14 +67463,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T14:25:15", + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:28", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -41013,14 +67481,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1659, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2176, + "solver_name": "cvxpy_clarabel", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta4", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41042,29 +67515,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:10:09", - "solve_time": 1.6901592083333334, - "status": "OPTIMAL", - "primal_objective_value": -50.321221317087485, - "dual_objective_value": -50.32122203998839, - "duality_gap": 7.229009071352266e-07, - "primal_infeasibility": 3.4400304938930694e-13, - "dual_infeasibility": 0.0, - "iterations": 14 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:57", + "solve_time": 1.5410659313201904, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1528, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2177, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "theta4", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41086,29 +67568,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:53:42", - "solve_time": 9.029102375, - "status": "OPTIMAL", - "primal_objective_value": -50.32122201238018, - "dual_objective_value": -50.32122201939875, - "duality_gap": 7.018570613581687e-09, - "primal_infeasibility": 4.163130295345427e-09, - "dual_infeasibility": 0.0, - "iterations": 20 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:42:00", + "solve_time": 1.529308795928955, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1660, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1787, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "theta5", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41130,29 +67621,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:10:21", - "solve_time": 3.2877647083333335, - "status": "OPTIMAL", - "primal_objective_value": -57.23230683313342, - "dual_objective_value": -57.232307346760024, - "duality_gap": 5.136266025829173e-07, - "primal_infeasibility": 4.815986565890254e-13, - "dual_infeasibility": 0.0, - "iterations": 14 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:29", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1529, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1789, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "theta5", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41174,29 +67673,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:54:24", - "solve_time": 32.23979391666666, - "status": "OPTIMAL", - "primal_objective_value": -57.23230747485862, - "dual_objective_value": -57.232307354157946, - "duality_gap": 1.2070067612057755e-07, - "primal_infeasibility": 4.87171381111366e-09, - "dual_infeasibility": 0.0, - "iterations": 23 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:31", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1661, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1790, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "theta6", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41218,29 +67725,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:10:38", - "solve_time": 5.631308958333333, - "status": "OPTIMAL", - "primal_objective_value": -63.47708709665152, - "dual_objective_value": -63.477087197659806, - "duality_gap": 1.010082826269354e-07, - "primal_infeasibility": 8.471542469613478e-13, - "dual_infeasibility": 0.0, - "iterations": 14 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1530, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1788, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "theta6", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41262,29 +67777,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, "timestamp": 1752926592.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:56:13", - "solve_time": 96.736359625, - "status": "OPTIMAL", - "primal_objective_value": -63.47708710436236, - "dual_objective_value": -63.47708721576618, - "duality_gap": 1.1140382127905468e-07, - "primal_infeasibility": 9.370169346520279e-10, - "dual_infeasibility": 0.0, - "iterations": 24 + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:30", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1678, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2178, + "solver_name": "cvxpy_scs", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "thetaG11", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41306,29 +67829,38 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:30:23", - "solve_time": 6.12120375, - "status": "OPTIMAL", - "primal_objective_value": -399.9999948753643, - "dual_objective_value": -400.0000001208191, - "duality_gap": 5.2454548153946234e-06, - "primal_infeasibility": 5.104383506653095e-13, - "dual_infeasibility": 0.0, - "iterations": 18 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:42:02", + "solve_time": 1.5386550426483154, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { - "id": 1546, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2175, + "solver_name": "cvxpy_sdpa", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "thetaG11", + "problem_name": "thetaG51", "problem_type": "SDP", "environment_info": { "cpu": { @@ -41350,22 +67882,31 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:10:16", - "solve_time": 69.43002633333333, - "status": "OPTIMAL", - "primal_objective_value": -399.9999995772125, - "dual_objective_value": -399.9999995761562, - "duality_gap": 1.0563212526903953e-09, - "primal_infeasibility": 2.5194124567833976e-09, - "dual_infeasibility": 1.777169568338365e-12, - "iterations": 33 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T14:41:54", + "solve_time": 1.5419859886169434, + "status": "SUBPROCESS_ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "returncode": -6, + "error_type": "SUBPROCESS_ERROR", + "error_message": "libc++abi: terminating due to uncaught exception of type std::length_error: vector", + "problem_class": "SDP" + } }, { "id": 1679, @@ -41394,6 +67935,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41409,7 +67953,31 @@ "duality_gap": 5.724028312670271e-06, "primal_infeasibility": 1.8779632575768103e-08, "dual_infeasibility": 0.0, - "iterations": 39 + "iterations": 39, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 138.05433633333334, + "setup_time": [], + "iterations": 39, + "primal_objective_value": -348.9999945185722, + "dual_objective_value": -349.0000002426005, + "duality_gap": 5.724028312670271e-06, + "primal_infeasibility": 1.8779632575768103e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:36", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1281, @@ -41438,6 +68006,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41453,7 +68024,63 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "timeout_duration": 300, + "problem_class": "SDP" + } + }, + { + "id": 1791, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "thetaG51", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752926592.0 + }, + "commit_hash": "0d9be48d5161918e56908f73cddd63d9b51ecd84", + "timestamp": "2025-07-22T14:42:33", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1318, @@ -41482,6 +68109,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41497,7 +68127,11 @@ "duality_gap": -2.1557321261411744e-08, "primal_infeasibility": 1.8223965354693912e-08, "dual_infeasibility": 9.58875201462206e-11, - "iterations": 11 + "iterations": 11, + "memo": { + "solver_solve_time": 0.000160999, + "problem_class": "SDP" + } }, { "id": 1319, @@ -41526,49 +68160,112 @@ "version": "3.12.2", "version_info": "3.12.2" }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:51", - "solve_time": 0.027730941772460938, - "status": "OPTIMAL", - "primal_objective_value": 8.999996217101113, - "dual_objective_value": 8.999996231565662, - "duality_gap": -1.446454866993463e-08, - "primal_infeasibility": 2.1552454348135378e-08, - "dual_infeasibility": 1.3113686044545564e-09, - "iterations": null - }, - { - "id": 1342, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", - "problem_library": "SDPLIB", - "problem_name": "truss1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:08:51", + "solve_time": 0.027730941772460938, + "status": "OPTIMAL", + "primal_objective_value": 8.999996217101113, + "dual_objective_value": 8.999996231565662, + "duality_gap": -1.446454866993463e-08, + "primal_infeasibility": 2.1552454348135378e-08, + "dual_infeasibility": 1.3113686044545564e-09, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } + }, + { + "id": 1342, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1752416768.0 + }, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:09:35", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } + }, + { + "id": 1343, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "problem_library": "SDPLIB", + "problem_name": "truss1", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" }, "timezone": { "timezone_name": "UTC", @@ -41585,51 +68282,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1343, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", - "problem_library": "SDPLIB", - "problem_name": "truss1", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:35", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1344, @@ -41658,6 +68316,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41673,7 +68334,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1345, @@ -41702,6 +68368,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41717,7 +68386,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1320, @@ -41746,6 +68420,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41761,7 +68438,11 @@ "duality_gap": 6.547842961168726e-06, "primal_infeasibility": 7.190939502213777e-07, "dual_infeasibility": 2.017647402124318e-05, - "iterations": 175 + "iterations": 175, + "memo": { + "solver_solve_time": 0.000392291, + "problem_class": "SDP" + } }, { "id": 1321, @@ -41790,6 +68471,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41805,7 +68489,12 @@ "duality_gap": 2.5062702135869586e-07, "primal_infeasibility": 3.858578150973925e-14, "dual_infeasibility": 0.0, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 1640, @@ -41834,6 +68523,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41849,7 +68541,31 @@ "duality_gap": 2.2845683567140895e-07, "primal_infeasibility": 2.3112684240151632e-09, "dual_infeasibility": 0.0, - "iterations": 9 + "iterations": 9, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.24263908333333334, + "setup_time": [], + "iterations": 9, + "primal_objective_value": 8.999996513737967, + "dual_objective_value": 8.999996285281131, + "duality_gap": 2.2845683567140895e-07, + "primal_infeasibility": 2.3112684240151632e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:40", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1510, @@ -41878,6 +68594,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41893,7 +68612,31 @@ "duality_gap": 4.998518932097795e-09, "primal_infeasibility": 2.0925600974181833e-09, "dual_infeasibility": 0.0, - "iterations": 13 + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.279735125, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 8.999996304463258, + "dual_objective_value": 8.999996309461777, + "duality_gap": 4.998518932097795e-09, + "primal_infeasibility": 2.0925600974181833e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:15", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1346, @@ -41922,6 +68665,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41937,7 +68683,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1322, @@ -41966,6 +68717,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -41981,7 +68735,11 @@ "duality_gap": -6.241782983806843e-07, "primal_infeasibility": 4.5631147473518165e-07, "dual_infeasibility": 5.400635161301182e-09, - "iterations": 14 + "iterations": 14, + "memo": { + "solver_solve_time": 0.003692876, + "problem_class": "SDP" + } }, { "id": 1323, @@ -42010,6 +68768,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42025,7 +68786,12 @@ "duality_gap": -5.820908199893893e-09, "primal_infeasibility": 2.6424809145593065e-09, "dual_infeasibility": 3.955822371523896e-11, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 1347, @@ -42054,6 +68820,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42069,7 +68838,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1348, @@ -42098,6 +68872,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42113,7 +68890,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1349, @@ -42142,6 +68924,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42157,7 +68942,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1350, @@ -42186,6 +68976,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42201,7 +68994,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1324, @@ -42230,6 +69028,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42237,198 +69038,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:52", - "solve_time": 0.8349161148071289, - "status": "OPTIMAL", - "primal_objective_value": 123.38606688355063, - "dual_objective_value": 123.3860739362167, - "duality_gap": -7.052666077811409e-06, - "primal_infeasibility": 6.498518343337364e-06, - "dual_infeasibility": 0.0006916402494040062, - "iterations": 20875 - }, - { - "id": 1325, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", - "problem_library": "SDPLIB", - "problem_name": "truss2", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.07007503509521484, - "status": "OPTIMAL", - "primal_objective_value": 123.38036039934943, - "dual_objective_value": 123.38035581736214, - "duality_gap": 4.58198728381376e-06, - "primal_infeasibility": 4.557386001179585e-12, - "dual_infeasibility": 0.0, - "iterations": null - }, - { - "id": 1641, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "SDPLIB", - "problem_name": "truss2", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:05:49", - "solve_time": 0.36276016666666666, - "status": "OPTIMAL", - "primal_objective_value": 123.38035721605554, - "dual_objective_value": 123.38035631007274, - "duality_gap": 9.059828016688698e-07, - "primal_infeasibility": 9.364706977581974e-10, - "dual_infeasibility": 0.0, - "iterations": 13 - }, - { - "id": 1511, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", - "problem_library": "SDPLIB", - "problem_name": "truss2", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752926592.0 - }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:24", - "solve_time": 0.3927455833333333, - "status": "OPTIMAL", - "primal_objective_value": 123.38035631112416, - "dual_objective_value": 123.38035631802163, - "duality_gap": 6.897465709698736e-09, - "primal_infeasibility": 2.9604864720439395e-09, - "dual_infeasibility": 3.2852692607373415e-11, - "iterations": 20 - }, - { - "id": 1351, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", - "problem_library": "SDPLIB", - "problem_name": "truss2", - "problem_type": "SDP", - "environment_info": { - "cpu": { - "cpu_count": 8, - "cpu_count_physical": 8, - "processor": "arm", - "architecture": "64bit" - }, - "memory": { - "total_gb": 24.0 - }, - "os": { - "system": "Darwin", - "machine": "arm64", - "release": "23.5.0" - }, - "python": { - "implementation": "CPython", - "version": "3.12.2", - "version_info": "3.12.2" - }, - "timezone": { - "timezone_name": "UTC", - "utc_offset_hours": 0.0 - }, - "timestamp": 1752416768.0 - }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:08:52", + "solve_time": 0.8349161148071289, + "status": "OPTIMAL", + "primal_objective_value": 123.38606688355063, + "dual_objective_value": 123.3860739362167, + "duality_gap": -7.052666077811409e-06, + "primal_infeasibility": 6.498518343337364e-06, + "dual_infeasibility": 0.0006916402494040062, + "iterations": 20875, + "memo": { + "solver_solve_time": 0.810098083, + "problem_class": "SDP" + } }, { - "id": 1326, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1325, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -42450,6 +69079,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42458,21 +69090,26 @@ }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.007981061935424805, + "solve_time": 0.07007503509521484, "status": "OPTIMAL", - "primal_objective_value": 9.109996173192481, - "dual_objective_value": 9.109996174546737, - "duality_gap": -1.3542553745082841e-09, - "primal_infeasibility": 4.4855110956190985e-09, - "dual_infeasibility": 3.2774392518465433e-10, - "iterations": 12 + "primal_objective_value": 123.38036039934943, + "dual_objective_value": 123.38035581736214, + "duality_gap": 4.58198728381376e-06, + "primal_infeasibility": 4.557386001179585e-12, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1415, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1641, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -42494,29 +69131,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:41", - "solve_time": 0.008645772933959961, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:49", + "solve_time": 0.36276016666666666, "status": "OPTIMAL", - "primal_objective_value": 9.109996173192481, - "dual_objective_value": 9.109996174546737, - "duality_gap": -1.3542553745082841e-09, - "primal_infeasibility": 4.4855110956190985e-09, - "dual_infeasibility": 3.2774392518465433e-10, - "iterations": 12 + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0.0, + "iterations": 13, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.36276016666666666, + "setup_time": [], + "iterations": 13, + "primal_objective_value": 123.38035721605554, + "dual_objective_value": 123.38035631007274, + "duality_gap": 9.059828016688698e-07, + "primal_infeasibility": 9.364706977581974e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1327, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "id": 1511, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -42538,29 +69202,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.05614018440246582, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:24", + "solve_time": 0.3927455833333333, "status": "OPTIMAL", - "primal_objective_value": 9.10999614243476, - "dual_objective_value": 9.109996145768458, - "duality_gap": -3.333697762286647e-09, - "primal_infeasibility": 1.0593331383658811e-08, - "dual_infeasibility": 3.349913566356823e-10, - "iterations": null + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "iterations": 20, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.3927455833333333, + "setup_time": [], + "iterations": 20, + "primal_objective_value": 123.38035631112416, + "dual_objective_value": 123.38035631802163, + "duality_gap": 6.897465709698736e-09, + "primal_infeasibility": 2.9604864720439395e-09, + "dual_infeasibility": 3.2852692607373415e-11, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:21", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1416, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "id": 1351, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss2", "problem_type": "SDP", "environment_info": { "cpu": { @@ -42582,6 +69273,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42589,20 +69283,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:41", - "solve_time": 0.062148094177246094, - "status": "OPTIMAL", - "primal_objective_value": 9.10999614243476, - "dual_objective_value": 9.109996145768458, - "duality_gap": -3.333697762286647e-09, - "primal_infeasibility": 1.0593331383658811e-08, - "dual_infeasibility": 3.349913566356823e-10, - "iterations": null + "timestamp": "2025-07-18T16:09:36", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1352, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1415, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42626,6 +69325,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42633,20 +69335,24 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.008645772933959961, + "status": "OPTIMAL", + "primal_objective_value": 9.109996173192481, + "dual_objective_value": 9.109996174546737, + "duality_gap": -1.3542553745082841e-09, + "primal_infeasibility": 4.4855110956190985e-09, + "dual_infeasibility": 3.2774392518465433e-10, + "iterations": 12, + "memo": { + "solver_solve_time": 0.002515546, + "problem_class": "SDP" + } }, { - "id": 1419, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1416, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42670,6 +69376,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42677,20 +69386,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:48", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.062148094177246094, + "status": "OPTIMAL", + "primal_objective_value": 9.10999614243476, + "dual_objective_value": 9.109996145768458, + "duality_gap": -3.333697762286647e-09, + "primal_infeasibility": 1.0593331383658811e-08, + "dual_infeasibility": 3.349913566356823e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1353, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1419, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42714,6 +69428,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42721,7 +69438,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", + "timestamp": "2025-07-18T16:33:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -42729,7 +69446,12 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { "id": 1420, @@ -42758,6 +69480,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42773,10 +69498,15 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1354, + "id": 1421, "solver_name": "cvxpy_osqp", "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", @@ -42802,6 +69532,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42809,7 +69542,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", + "timestamp": "2025-07-18T16:33:48", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -42817,12 +69550,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1421, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1422, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42846,6 +69584,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42861,12 +69602,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1355, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1417, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42890,6 +69636,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42897,20 +69646,24 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.5392508506774902, + "status": "OPTIMAL", + "primal_objective_value": 9.110041972462652, + "dual_objective_value": 9.110042582572902, + "duality_gap": -6.101102503208722e-07, + "primal_infeasibility": 1.529861449889821e-06, + "dual_infeasibility": 1.7591794995023966e-05, + "iterations": 44625, + "memo": { + "solver_solve_time": 0.533749833, + "problem_class": "SDP" + } }, { - "id": 1422, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1418, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42934,6 +69687,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -42941,20 +69697,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:48", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:33:41", + "solve_time": 0.01682901382446289, + "status": "OPTIMAL", + "primal_objective_value": 9.109996393410452, + "dual_objective_value": 9.109996016151454, + "duality_gap": 3.7725899737495183e-07, + "primal_infeasibility": 2.3142072741567036e-13, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1328, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1642, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -42978,27 +69739,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.5332508087158203, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:05:54", + "solve_time": 0.291210125, "status": "OPTIMAL", - "primal_objective_value": 9.110041972462652, - "dual_objective_value": 9.110042582572902, - "duality_gap": -6.101102503208722e-07, - "primal_infeasibility": 1.529861449889821e-06, - "dual_infeasibility": 1.7591794995023966e-05, - "iterations": 44625 + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0.0, + "iterations": 12, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.291210125, + "setup_time": [], + "iterations": 12, + "primal_objective_value": 9.109996269927667, + "dual_objective_value": 9.109996132678651, + "duality_gap": 1.3724901570810744e-07, + "primal_infeasibility": 4.320402504061065e-14, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:51", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1417, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1512, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -43022,27 +69810,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:41", - "solve_time": 0.5392508506774902, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:29", + "solve_time": 0.2865194166666667, "status": "OPTIMAL", - "primal_objective_value": 9.110041972462652, - "dual_objective_value": 9.110042582572902, - "duality_gap": -6.101102503208722e-07, - "primal_infeasibility": 1.529861449889821e-06, - "dual_infeasibility": 1.7591794995023966e-05, - "iterations": 44625 + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.2865194166666667, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 9.109996156256061, + "dual_objective_value": 9.109996162091624, + "duality_gap": 5.835563143818945e-09, + "primal_infeasibility": 7.261145648868141e-09, + "dual_infeasibility": 3.548770555535088e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1329, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1423, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", "problem_name": "truss3", "problem_type": "SDP", @@ -43066,6 +69881,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43073,22 +69891,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.0164947509765625, - "status": "OPTIMAL", - "primal_objective_value": 9.109996393410452, - "dual_objective_value": 9.109996016151454, - "duality_gap": 3.7725899737495183e-07, - "primal_infeasibility": 2.3142072741567036e-13, - "dual_infeasibility": 0.0, - "iterations": null + "timestamp": "2025-07-18T16:33:48", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1418, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1440, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43110,6 +69933,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43117,22 +69943,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:41", - "solve_time": 0.01682901382446289, + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.005716085433959961, "status": "OPTIMAL", - "primal_objective_value": 9.109996393410452, - "dual_objective_value": 9.109996016151454, - "duality_gap": 3.7725899737495183e-07, - "primal_infeasibility": 2.3142072741567036e-13, - "dual_infeasibility": 0.0, - "iterations": null + "primal_objective_value": 9.00999593358179, + "dual_objective_value": 9.00999596605511, + "duality_gap": -3.2473320032977426e-08, + "primal_infeasibility": 4.6640533097330856e-08, + "dual_infeasibility": 2.7918005083928495e-09, + "iterations": 10, + "memo": { + "solver_solve_time": 0.000377085, + "problem_class": "SDP" + } }, { - "id": 1642, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1441, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43154,29 +69984,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:05:54", - "solve_time": 0.291210125, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:12", + "solve_time": 0.03877997398376465, "status": "OPTIMAL", - "primal_objective_value": 9.109996269927667, - "dual_objective_value": 9.109996132678651, - "duality_gap": 1.3724901570810744e-07, - "primal_infeasibility": 4.320402504061065e-14, - "dual_infeasibility": 0.0, - "iterations": 12 + "primal_objective_value": 9.009995897864977, + "dual_objective_value": 9.009995926940062, + "duality_gap": -2.907508545035853e-08, + "primal_infeasibility": 4.360070834724522e-08, + "dual_infeasibility": 9.499477870988926e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1512, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1444, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43198,29 +70036,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:29", - "solve_time": 0.2865194166666667, - "status": "OPTIMAL", - "primal_objective_value": 9.109996156256061, - "dual_objective_value": 9.109996162091624, - "duality_gap": 5.835563143818945e-09, - "primal_infeasibility": 7.261145648868141e-09, - "dual_infeasibility": 3.548770555535088e-10, - "iterations": 15 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1356, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1445, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43242,6 +70088,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43249,7 +70098,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", + "timestamp": "2025-07-18T16:43:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43257,14 +70106,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1423, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1446, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "truss3", + "problem_name": "truss4", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43286,6 +70140,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43293,7 +70150,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:33:48", + "timestamp": "2025-07-18T16:43:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43301,12 +70158,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1330, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1447, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43330,6 +70192,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43337,20 +70202,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:08:53", - "solve_time": 0.005547046661376953, - "status": "OPTIMAL", - "primal_objective_value": 9.00999593358179, - "dual_objective_value": 9.00999596605511, - "duality_gap": -3.2473320032977426e-08, - "primal_infeasibility": 4.6640533097330856e-08, - "dual_infeasibility": 2.7918005083928495e-09, - "iterations": 10 + "timestamp": "2025-07-18T16:43:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1440, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1442, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43374,6 +70244,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43382,19 +70255,23 @@ }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", "timestamp": "2025-07-18T16:43:12", - "solve_time": 0.005716085433959961, + "solve_time": 0.0063629150390625, "status": "OPTIMAL", - "primal_objective_value": 9.00999593358179, - "dual_objective_value": 9.00999596605511, - "duality_gap": -3.2473320032977426e-08, - "primal_infeasibility": 4.6640533097330856e-08, - "dual_infeasibility": 2.7918005083928495e-09, - "iterations": 10 + "primal_objective_value": 9.009997345729218, + "dual_objective_value": 9.00999656325741, + "duality_gap": 7.82471808236096e-07, + "primal_infeasibility": 1.658167187900526e-07, + "dual_infeasibility": 6.101049682851663e-06, + "iterations": 225, + "memo": { + "solver_solve_time": 0.001095791, + "problem_class": "SDP" + } }, { - "id": 1441, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "id": 1443, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43418,6 +70295,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43426,19 +70306,24 @@ }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", "timestamp": "2025-07-18T16:43:12", - "solve_time": 0.03877997398376465, + "solve_time": 0.014675140380859375, "status": "OPTIMAL", - "primal_objective_value": 9.009995897864977, - "dual_objective_value": 9.009995926940062, - "duality_gap": -2.907508545035853e-08, - "primal_infeasibility": 4.360070834724522e-08, - "dual_infeasibility": 9.499477870988926e-10, - "iterations": null + "primal_objective_value": 9.009996558636908, + "dual_objective_value": 9.009996064429895, + "duality_gap": 4.94207013090886e-07, + "primal_infeasibility": 5.460020736031756e-14, + "dual_infeasibility": 0.0, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1357, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1643, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43462,27 +70347,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:00", + "solve_time": 0.2855519166666667, + "status": "OPTIMAL", + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0.0, + "iterations": 11, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 0.2855519166666667, + "setup_time": [], + "iterations": 11, + "primal_objective_value": 9.009996446153833, + "dual_objective_value": 9.009996290338277, + "duality_gap": 1.5581555601329455e-07, + "primal_infeasibility": 3.83955719920538e-09, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:05:57", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1444, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1513, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43506,27 +70418,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:18", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:35", + "solve_time": 0.26377516666666667, + "status": "OPTIMAL", + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "iterations": 14, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.26377516666666667, + "setup_time": [], + "iterations": 14, + "primal_objective_value": 9.00999626294251, + "dual_objective_value": 9.009996268263059, + "duality_gap": 5.320549334442148e-09, + "primal_infeasibility": 3.507575669410203e-09, + "dual_infeasibility": 2.959835844803862e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:32", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1358, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1448, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", "problem_name": "truss4", "problem_type": "SDP", @@ -43550,6 +70489,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43557,7 +70499,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", + "timestamp": "2025-07-18T16:43:18", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43565,14 +70507,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1445, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1434, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43594,6 +70541,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43601,22 +70551,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:18", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:34:38", + "solve_time": 0.49745821952819824, + "status": "OPTIMAL", + "primal_objective_value": 132.63566253199446, + "dual_objective_value": 132.6356626115363, + "duality_gap": -7.954184866321157e-08, + "primal_infeasibility": 1.2653383845157188e-07, + "dual_infeasibility": 2.366013540423536e-09, + "iterations": 18, + "memo": { + "solver_solve_time": 0.382465791, + "problem_class": "SDP" + } }, { - "id": 1359, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1435, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43638,6 +70592,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43645,22 +70602,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:34:40", + "solve_time": 1.2629749774932861, + "status": "OPTIMAL", + "primal_objective_value": 132.6356762279693, + "dual_objective_value": 132.6356762370283, + "duality_gap": -9.058993555299821e-09, + "primal_infeasibility": 1.4424052246283952e-08, + "dual_infeasibility": 3.0183302558080747e-10, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1446, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 2347, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43682,14 +70644,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:18", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:15", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43697,14 +70662,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1360, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2349, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43726,14 +70696,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:21", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43741,14 +70714,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1447, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 2350, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43770,14 +70748,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:18", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:24", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -43785,14 +70766,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1442, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 2348, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43814,29 +70800,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:12", - "solve_time": 0.0063629150390625, - "status": "OPTIMAL", - "primal_objective_value": 9.009997345729218, - "dual_objective_value": 9.00999656325741, - "duality_gap": 7.82471808236096e-07, - "primal_infeasibility": 1.658167187900526e-07, - "dual_infeasibility": 6.101049682851663e-06, - "iterations": 225 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:18", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1443, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1436, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43858,6 +70852,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43865,22 +70862,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:12", - "solve_time": 0.014675140380859375, + "timestamp": "2025-07-18T16:35:03", + "solve_time": 22.394976139068604, "status": "OPTIMAL", - "primal_objective_value": 9.009996558636908, - "dual_objective_value": 9.009996064429895, - "duality_gap": 4.94207013090886e-07, - "primal_infeasibility": 5.460020736031756e-14, - "dual_infeasibility": 0.0, - "iterations": null + "primal_objective_value": 132.67027858454858, + "dual_objective_value": 132.67028269707538, + "duality_gap": -4.112526795552185e-06, + "primal_infeasibility": 2.547895198115238e-06, + "dual_infeasibility": 0.002408958215925523, + "iterations": 83775, + "memo": { + "solver_solve_time": 22.277485625, + "problem_class": "SDP" + } }, { - "id": 1643, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1437, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43902,29 +70903,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:00", - "solve_time": 0.2855519166666667, + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:35:04", + "solve_time": 0.2245340347290039, "status": "OPTIMAL", - "primal_objective_value": 9.009996446153833, - "dual_objective_value": 9.009996290338277, - "duality_gap": 1.5581555601329455e-07, - "primal_infeasibility": 3.83955719920538e-09, + "primal_objective_value": 132.63567945392438, + "dual_objective_value": 132.63567502877513, + "duality_gap": 4.4251492568037065e-06, + "primal_infeasibility": 2.494296172882748e-11, "dual_infeasibility": 0.0, - "iterations": 11 + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1513, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1680, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43946,6 +70955,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -43953,22 +70965,46 @@ "timestamp": 1752926592.0 }, "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:35", - "solve_time": 0.26377516666666667, + "timestamp": "2025-07-19T14:34:48", + "solve_time": 1.0470835833333334, "status": "OPTIMAL", - "primal_objective_value": 9.00999626294251, - "dual_objective_value": 9.009996268263059, - "duality_gap": 5.320549334442148e-09, - "primal_infeasibility": 3.507575669410203e-09, - "dual_infeasibility": 2.959835844803862e-10, - "iterations": 14 + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0.0, + "iterations": 15, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0470835833333334, + "setup_time": [], + "iterations": 15, + "primal_objective_value": 132.63567802335663, + "dual_objective_value": 132.63567787176257, + "duality_gap": 1.5159406530074193e-07, + "primal_infeasibility": 1.5244236469370746e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:44", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1361, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1547, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -43990,29 +71026,56 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:09:36", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null - }, - { - "id": 1448, + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T13:15:22", + "solve_time": 0.5942775, + "status": "OPTIMAL", + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "iterations": 23, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 0.5942775, + "setup_time": [], + "iterations": 23, + "primal_objective_value": 132.63567716018326, + "dual_objective_value": 132.63567716469151, + "duality_gap": 4.508251549850684e-09, + "primal_infeasibility": 6.3849327558778055e-09, + "dual_infeasibility": 1.2707989194505613e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:15:19", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2351, "solver_name": "scipy_linprog", "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", - "problem_name": "truss4", + "problem_name": "truss5_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44034,14 +71097,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:43:18", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:26", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -44049,14 +71115,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1434, + "id": 1395, "solver_name": "cvxpy_clarabel", "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44078,6 +71149,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44085,22 +71159,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:34:38", - "solve_time": 0.49745821952819824, + "timestamp": "2025-07-18T16:27:33", + "solve_time": 0.2537209987640381, "status": "OPTIMAL", - "primal_objective_value": 132.63566253199446, - "dual_objective_value": 132.6356626115363, - "duality_gap": -7.954184866321157e-08, - "primal_infeasibility": 1.2653383845157188e-07, - "dual_infeasibility": 2.366013540423536e-09, - "iterations": 18 + "primal_objective_value": 901.0002651409602, + "dual_objective_value": 901.0002705585873, + "duality_gap": -5.41762710781768e-06, + "primal_infeasibility": 1.4882091019913554e-06, + "dual_infeasibility": 6.463946489176919e-09, + "iterations": 25, + "memo": { + "solver_solve_time": 0.023302585, + "problem_class": "SDP" + } }, { - "id": 1435, + "id": 1396, "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44122,6 +71200,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44129,22 +71210,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:34:40", - "solve_time": 1.2629749774932861, - "status": "OPTIMAL", - "primal_objective_value": 132.6356762279693, - "dual_objective_value": 132.6356762370283, - "duality_gap": -9.058993555299821e-09, - "primal_infeasibility": 1.4424052246283952e-08, - "dual_infeasibility": 3.0183302558080747e-10, - "iterations": null + "timestamp": "2025-07-18T16:27:37", + "solve_time": 1.9965460300445557, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1436, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1399, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44166,6 +71251,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44173,22 +71261,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:35:03", - "solve_time": 22.394976139068604, - "status": "OPTIMAL", - "primal_objective_value": 132.67027858454858, - "dual_objective_value": 132.67028269707538, - "duality_gap": -4.112526795552185e-06, - "primal_infeasibility": 2.547895198115238e-06, - "dual_infeasibility": 0.002408958215925523, - "iterations": 83775 + "timestamp": "2025-07-18T16:28:05", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1437, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1400, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44210,6 +71303,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44217,22 +71313,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:35:04", - "solve_time": 0.2245340347290039, - "status": "OPTIMAL", - "primal_objective_value": 132.63567945392438, - "dual_objective_value": 132.63567502877513, - "duality_gap": 4.4251492568037065e-06, - "primal_infeasibility": 2.494296172882748e-11, - "dual_infeasibility": 0.0, - "iterations": null + "timestamp": "2025-07-18T16:28:07", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1680, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1401, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44254,29 +71355,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:34:48", - "solve_time": 1.0470835833333334, - "status": "OPTIMAL", - "primal_objective_value": 132.63567802335663, - "dual_objective_value": 132.63567787176257, - "duality_gap": 1.5159406530074193e-07, - "primal_infeasibility": 1.5244236469370746e-10, - "dual_infeasibility": 0.0, - "iterations": 15 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:08", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1547, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1402, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "truss5_sdp", + "problem_name": "truss6", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44298,27 +71407,35 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T13:15:22", - "solve_time": 0.5942775, - "status": "OPTIMAL", - "primal_objective_value": 132.63567716018326, - "dual_objective_value": 132.63567716469151, - "duality_gap": 4.508251549850684e-09, - "primal_infeasibility": 6.3849327558778055e-09, - "dual_infeasibility": 1.2707989194505613e-10, - "iterations": 23 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:10", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1395, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1397, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", "problem_name": "truss6", "problem_type": "SDP", @@ -44342,6 +71459,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44349,20 +71469,24 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:27:33", - "solve_time": 0.2537209987640381, + "timestamp": "2025-07-18T16:27:53", + "solve_time": 14.329941987991333, "status": "OPTIMAL", - "primal_objective_value": 901.0002651409602, - "dual_objective_value": 901.0002705585873, - "duality_gap": -5.41762710781768e-06, - "primal_infeasibility": 1.4882091019913554e-06, - "dual_infeasibility": 6.463946489176919e-09, - "iterations": 25 + "primal_objective_value": 901.0950988636213, + "dual_objective_value": 901.0950990173255, + "duality_gap": -1.537042635391117e-07, + "primal_infeasibility": 8.45148707615466e-06, + "dual_infeasibility": 0.013751596838046476, + "iterations": 99775, + "memo": { + "solver_solve_time": 14.097880625, + "problem_class": "SDP" + } }, { - "id": 1396, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 1398, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", "problem_name": "truss6", "problem_type": "SDP", @@ -44386,6 +71510,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44393,20 +71520,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:27:37", - "solve_time": 1.9965460300445557, - "status": "ERROR", + "timestamp": "2025-07-18T16:27:56", + "solve_time": 0.29096198081970215, + "status": "INFEASIBLE", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1399, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1644, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss6", "problem_type": "SDP", @@ -44430,27 +71562,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:05", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:06", + "solve_time": 0.5691390416666666, + "status": "MAX_ITER", + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0.0, + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "max_iter", + "solve_time": 0.5691390416666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 901.0014346379526, + "dual_objective_value": 901.0013611282227, + "duality_gap": 7.3509729872967e-05, + "primal_infeasibility": 2.233921215694808e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:03", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1400, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1514, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss6", "problem_type": "SDP", @@ -44474,27 +71633,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:07", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:42", + "solve_time": 0.98678925, + "status": "NUM_ERROR", + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "num_error", + "solve_time": 0.98678925, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 901.0013890792242, + "dual_objective_value": 901.0013891465655, + "duality_gap": 6.734137514285976e-08, + "primal_infeasibility": 1.8145947199046974e-08, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:38", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1401, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1403, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", "problem_name": "truss6", "problem_type": "SDP", @@ -44518,6 +71704,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44525,7 +71714,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:08", + "timestamp": "2025-07-18T16:28:12", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -44533,14 +71722,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1402, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1406, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44562,6 +71756,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44569,22 +71766,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:10", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:28:38", + "solve_time": 0.13422012329101562, + "status": "OPTIMAL", + "primal_objective_value": 900.0010893310988, + "dual_objective_value": 900.0010944910015, + "duality_gap": -5.159902684681583e-06, + "primal_infeasibility": 7.752164593566989e-07, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "solver_solve_time": 0.006702831, + "problem_class": "SDP" + } }, { - "id": 1397, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1407, + "solver_name": "cvxpy_cvxopt", + "solver_version": "unknown", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44606,6 +71807,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44613,22 +71817,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:27:53", - "solve_time": 14.329941987991333, - "status": "OPTIMAL", - "primal_objective_value": 901.0950988636213, - "dual_objective_value": 901.0950990173255, - "duality_gap": -1.537042635391117e-07, - "primal_infeasibility": 8.45148707615466e-06, - "dual_infeasibility": 0.013751596838046476, - "iterations": 99775 + "timestamp": "2025-07-18T16:28:40", + "solve_time": 1.2562849521636963, + "status": "ERROR", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "error_message": "Solver 'CVXOPT' failed. Try another solver, or solve with verbose=True for more information.", + "problem_class": "SDP" + } }, { - "id": 1398, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 1410, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44650,6 +71858,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44657,22 +71868,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:27:56", - "solve_time": 0.29096198081970215, - "status": "INFEASIBLE", + "timestamp": "2025-07-18T16:28:54", + "solve_time": null, + "status": "UNSUPPORTED", "primal_objective_value": null, "dual_objective_value": null, "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1644, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1411, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44694,29 +71910,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:06", - "solve_time": 0.5691390416666666, - "status": "MAX_ITER", - "primal_objective_value": 901.0014346379526, - "dual_objective_value": 901.0013611282227, - "duality_gap": 7.3509729872967e-05, - "primal_infeasibility": 2.233921215694808e-08, - "dual_infeasibility": 0.0, - "iterations": 24 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1514, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 1412, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44738,29 +71962,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1752416768.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:42", - "solve_time": 0.98678925, - "status": "NUM_ERROR", - "primal_objective_value": 901.0013890792242, - "dual_objective_value": 901.0013891465655, - "duality_gap": 6.734137514285976e-08, - "primal_infeasibility": 1.8145947199046974e-08, - "dual_infeasibility": 0.0, - "iterations": 27 + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", + "timestamp": "2025-07-18T16:28:56", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1403, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 1413, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "truss6", + "problem_name": "truss7", "problem_type": "SDP", "environment_info": { "cpu": { @@ -44782,6 +72014,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44789,7 +72024,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:12", + "timestamp": "2025-07-18T16:28:57", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -44797,12 +72032,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1406, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 1408, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", "problem_name": "truss7", "problem_type": "SDP", @@ -44826,6 +72066,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44833,20 +72076,24 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:38", - "solve_time": 0.13422012329101562, + "timestamp": "2025-07-18T16:28:45", + "solve_time": 3.86313796043396, "status": "OPTIMAL", - "primal_objective_value": 900.0010893310988, - "dual_objective_value": 900.0010944910015, - "duality_gap": -5.159902684681583e-06, - "primal_infeasibility": 7.752164593566989e-07, - "dual_infeasibility": 0.0, - "iterations": 22 + "primal_objective_value": 900.0356340281699, + "dual_objective_value": 900.0356340614165, + "duality_gap": -3.3246692510147113e-08, + "primal_infeasibility": 9.397384533448782e-06, + "dual_infeasibility": 0.007035153135339471, + "iterations": 59000, + "memo": { + "solver_solve_time": 3.7472856660000002, + "problem_class": "SDP" + } }, { - "id": 1407, - "solver_name": "cvxpy_cvxopt", - "solver_version": "unknown", + "id": 1409, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", "problem_name": "truss7", "problem_type": "SDP", @@ -44870,6 +72117,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -44877,20 +72127,25 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:40", - "solve_time": 1.2562849521636963, - "status": "ERROR", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:28:46", + "solve_time": 0.33388805389404297, + "status": "OPTIMAL (INACCURATE)", + "primal_objective_value": 900.0013051383315, + "dual_objective_value": 900.0014232785333, + "duality_gap": -0.00011814020172096207, + "primal_infeasibility": 3.7841041393477322e-06, + "dual_infeasibility": 2.3476799902441506e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1410, - "solver_name": "cvxpy_ecos", - "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", + "id": 1645, + "solver_name": "matlab_sdpt3", + "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss7", "problem_type": "SDP", @@ -44914,27 +72169,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:54", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T14:06:13", + "solve_time": 0.544207125, + "status": "UNKNOWN", + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0.0, + "iterations": 22, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "unknown", + "solve_time": 0.544207125, + "setup_time": [], + "iterations": 22, + "primal_objective_value": 900.001408675485, + "dual_objective_value": 900.0013926810119, + "duality_gap": 1.5994473073988047e-05, + "primal_infeasibility": 2.362075343263456e-08, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:06:09", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1411, - "solver_name": "cvxpy_highs", - "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", + "id": 1515, + "solver_name": "matlab_sedumi", + "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", "problem_library": "SDPLIB", "problem_name": "truss7", "problem_type": "SDP", @@ -44958,27 +72240,54 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1752926592.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:55", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", + "timestamp": "2025-07-19T12:46:50", + "solve_time": 1.1931540833333334, + "status": "OPTIMAL", + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0.0, + "iterations": 27, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1931540833333334, + "setup_time": [], + "iterations": 27, + "primal_objective_value": 900.0013983712862, + "dual_objective_value": 900.0013984344562, + "duality_gap": 6.316997769317823e-08, + "primal_infeasibility": 7.3597907002225245e-09, + "dual_infeasibility": 0, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 21:46:46", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { - "id": 1412, - "solver_name": "cvxpy_osqp", - "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", + "id": 1414, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", "problem_library": "SDPLIB", "problem_name": "truss7", "problem_type": "SDP", @@ -45002,6 +72311,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -45009,7 +72321,7 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:56", + "timestamp": "2025-07-18T16:28:58", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -45017,14 +72329,19 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1413, - "solver_name": "cvxpy_scip", - "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", + "id": 1438, + "solver_name": "cvxpy_clarabel", + "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45046,6 +72363,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -45053,22 +72373,26 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:57", - "solve_time": null, - "status": "UNSUPPORTED", - "primal_objective_value": null, - "dual_objective_value": null, - "duality_gap": null, - "primal_infeasibility": null, - "dual_infeasibility": null, - "iterations": null + "timestamp": "2025-07-18T16:35:13", + "solve_time": 8.423373937606812, + "status": "OPTIMAL", + "primal_objective_value": 133.1145235740515, + "dual_objective_value": 133.11452372670436, + "duality_gap": -1.5265285924215277e-07, + "primal_infeasibility": 5.798818510869592e-07, + "dual_infeasibility": 1.8795571691601026e-08, + "iterations": 20, + "memo": { + "solver_solve_time": 7.601113419, + "problem_class": "SDP" + } }, { - "id": 1408, - "solver_name": "cvxpy_scs", - "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", + "id": 1439, + "solver_name": "cvxpy_cvxopt", + "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45090,6 +72414,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -45097,22 +72424,27 @@ "timestamp": 1752416768.0 }, "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:45", - "solve_time": 3.86313796043396, + "timestamp": "2025-07-18T16:35:20", + "solve_time": 5.338012933731079, "status": "OPTIMAL", - "primal_objective_value": 900.0356340281699, - "dual_objective_value": 900.0356340614165, - "duality_gap": -3.3246692510147113e-08, - "primal_infeasibility": 9.397384533448782e-06, - "dual_infeasibility": 0.007035153135339471, - "iterations": 59000 + "primal_objective_value": 133.1145887359414, + "dual_objective_value": 133.1145887345484, + "duality_gap": 1.3930048226029612e-09, + "primal_infeasibility": 4.487143094483282e-09, + "dual_infeasibility": 9.45481793646842e-11, + "iterations": null, + "memo": { + "iteration_info_limitation": "CVXOPT does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { - "id": 1409, - "solver_name": "cvxpy_sdpa", - "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", + "id": 2352, + "solver_name": "cvxpy_ecos", + "solver_version": "cvxpy-1.6.5-ECOS-2.0.14", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45134,29 +72466,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:46", - "solve_time": 0.33388805389404297, - "status": "OPTIMAL (INACCURATE)", - "primal_objective_value": 900.0013051383315, - "dual_objective_value": 900.0014232785333, - "duality_gap": -0.00011814020172096207, - "primal_infeasibility": 3.7841041393477322e-06, - "dual_infeasibility": 2.3476799902441506e-08, - "iterations": null + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:32", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1645, - "solver_name": "matlab_sdpt3", - "solver_version": "SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2354, + "solver_name": "cvxpy_highs", + "solver_version": "cvxpy-1.6.5-HIGHS-1.11.0", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45178,29 +72518,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T14:06:13", - "solve_time": 0.544207125, - "status": "UNKNOWN", - "primal_objective_value": 900.001408675485, - "dual_objective_value": 900.0013926810119, - "duality_gap": 1.5994473073988047e-05, - "primal_infeasibility": 2.362075343263456e-08, - "dual_infeasibility": 0.0, - "iterations": 22 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:44", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1515, - "solver_name": "matlab_sedumi", - "solver_version": "SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a))", + "id": 2355, + "solver_name": "cvxpy_osqp", + "solver_version": "cvxpy-1.6.5-OSQP-1.0.4", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45222,29 +72570,37 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752926592.0 + "timestamp": 1753515904.0 }, - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "timestamp": "2025-07-19T12:46:50", - "solve_time": 1.1931540833333334, - "status": "OPTIMAL", - "primal_objective_value": 900.0013983712862, - "dual_objective_value": 900.0013984344562, - "duality_gap": 6.316997769317823e-08, - "primal_infeasibility": 7.3597907002225245e-09, - "dual_infeasibility": 0.0, - "iterations": 27 + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:49", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1414, - "solver_name": "scipy_linprog", - "solver_version": "scipy-1.15.3", + "id": 2353, + "solver_name": "cvxpy_scip", + "solver_version": "cvxpy-1.6.5-SCIP-5.5.0", "problem_library": "SDPLIB", - "problem_name": "truss7", + "problem_name": "truss8_sdp", "problem_type": "SDP", "environment_info": { "cpu": { @@ -45266,14 +72622,17 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:28:58", + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:37", "solve_time": null, "status": "UNSUPPORTED", "primal_objective_value": null, @@ -45281,12 +72640,17 @@ "duality_gap": null, "primal_infeasibility": null, "dual_infeasibility": null, - "iterations": null + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } }, { - "id": 1438, - "solver_name": "cvxpy_clarabel", - "solver_version": "cvxpy-1.6.5-CLARABEL-0.11.0", + "id": 2278, + "solver_name": "cvxpy_scs", + "solver_version": "cvxpy-1.6.5-SCS-3.2.7.post2", "problem_library": "SDPLIB", "problem_name": "truss8_sdp", "problem_type": "SDP", @@ -45310,27 +72674,34 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:35:13", - "solve_time": 8.423373937606812, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:44:58", + "solve_time": 79.17252993583679, "status": "OPTIMAL", - "primal_objective_value": 133.1145235740515, - "dual_objective_value": 133.11452372670436, - "duality_gap": -1.5265285924215277e-07, - "primal_infeasibility": 5.798818510869592e-07, - "dual_infeasibility": 1.8795571691601026e-08, - "iterations": 20 - }, - { - "id": 1439, - "solver_name": "cvxpy_cvxopt", - "solver_version": "cvxpy-1.6.5-CVXOPT-1.3.2", + "primal_objective_value": 133.206451029218, + "dual_objective_value": 133.20645457503971, + "duality_gap": -3.5458217269024317e-06, + "primal_infeasibility": 1.8067377045067828e-06, + "dual_infeasibility": 0.0026439582371736107, + "iterations": 91025, + "memo": { + "solver_solve_time": 78.408837208, + "problem_class": "SDP" + } + }, + { + "id": 2280, + "solver_name": "cvxpy_sdpa", + "solver_version": "cvxpy-1.6.5-SDPA-0.2.2", "problem_library": "SDPLIB", "problem_name": "truss8_sdp", "problem_type": "SDP", @@ -45354,22 +72725,30 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 }, - "timestamp": 1752416768.0 + "timestamp": 1753515904.0 }, - "commit_hash": "443b599dca6666ab5976e2cf184c9398d48cda2b", - "timestamp": "2025-07-18T16:35:20", - "solve_time": 5.338012933731079, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-04T15:47:05", + "solve_time": 1.3373730182647705, "status": "OPTIMAL", - "primal_objective_value": 133.1145887359414, - "dual_objective_value": 133.1145887345484, - "duality_gap": 1.3930048226029612e-09, - "primal_infeasibility": 4.487143094483282e-09, - "dual_infeasibility": 9.45481793646842e-11, - "iterations": null + "primal_objective_value": 133.114594530196, + "dual_objective_value": 133.1145927303965, + "duality_gap": 1.7997994916640891e-06, + "primal_infeasibility": 7.29630106610369e-11, + "dual_infeasibility": 2.0041498867041285e-08, + "iterations": null, + "memo": { + "iteration_info_limitation": "SDPA does not provide iteration count through CVXPY", + "solver_solve_time": null, + "problem_class": "SDP" + } }, { "id": 1681, @@ -45398,6 +72777,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -45413,7 +72795,31 @@ "duality_gap": 7.417236247420078e-08, "primal_infeasibility": 1.8201739000684703e-10, "dual_infeasibility": 0.0, - "iterations": 16 + "iterations": 16, + "memo": { + "matlab_output": { + "solver_name": "SDPT3", + "status": "optimal", + "solve_time": 1.0130884583333333, + "setup_time": [], + "iterations": 16, + "primal_objective_value": 133.11458916487112, + "dual_objective_value": 133.11458909069876, + "duality_gap": 7.417236247420078e-08, + "primal_infeasibility": 1.8201739000684703e-10, + "dual_infeasibility": 0, + "solver_version": "SDPT3-4.0-20240410", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 23:34:52", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sdpt3", + "execution_environment": "matlab", + "problem_class": "SDP" + } }, { "id": 1548, @@ -45442,6 +72848,9 @@ "version": "3.12.2", "version_info": "3.12.2" }, + "git": { + "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04" + }, "timezone": { "timezone_name": "UTC", "utc_offset_hours": 0.0 @@ -45457,7 +72866,83 @@ "duality_gap": 2.426929768262198e-09, "primal_infeasibility": 7.281149777057451e-09, "dual_infeasibility": 2.2946480299761797e-10, - "iterations": 24 + "iterations": 24, + "memo": { + "matlab_output": { + "solver_name": "SeDuMi", + "status": "optimal", + "solve_time": 1.1123747916666666, + "setup_time": [], + "iterations": 24, + "primal_objective_value": 133.11458828413384, + "dual_objective_value": 133.11458828656077, + "duality_gap": 2.426929768262198e-09, + "primal_infeasibility": 7.281149777057451e-09, + "dual_infeasibility": 2.2946480299761797e-10, + "solver_version": "SeDuMi-1.3.7", + "solver_options": {}, + "termination_reason": "", + "error_message": "", + "timestamp": "2025-07-19 22:15:26", + "matlab_version": "24.1.0.2537033 (R2024a)" + }, + "matlab_version": "24.1.0.2537033 (R2024a)", + "solver_backend": "sedumi", + "execution_environment": "matlab", + "problem_class": "SDP" + } + }, + { + "id": 2356, + "solver_name": "scipy_linprog", + "solver_version": "scipy-1.15.3", + "problem_library": "SDPLIB", + "problem_name": "truss8_sdp", + "problem_type": "SDP", + "environment_info": { + "cpu": { + "cpu_count": 8, + "cpu_count_physical": 8, + "processor": "arm", + "architecture": "64bit" + }, + "memory": { + "total_gb": 24.0 + }, + "os": { + "system": "Darwin", + "machine": "arm64", + "release": "23.5.0" + }, + "python": { + "implementation": "CPython", + "version": "3.12.2", + "version_info": "3.12.2" + }, + "git": { + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e" + }, + "timezone": { + "timezone_name": "UTC", + "utc_offset_hours": 0.0 + }, + "timestamp": 1753515904.0 + }, + "commit_hash": "f95b7a823790a2de8d950f0b890edf003d50e81e", + "timestamp": "2025-08-05T12:34:55", + "solve_time": null, + "status": "UNSUPPORTED", + "primal_objective_value": null, + "dual_objective_value": null, + "duality_gap": null, + "primal_infeasibility": null, + "dual_infeasibility": null, + "iterations": null, + "memo": { + "reason": "Solver does not support SDP problems", + "problem_type": "SDP", + "problem_class": "SDP" + } } ] } \ No newline at end of file diff --git a/docs/pages/data/index.html b/docs/pages/data/index.html new file mode 100644 index 0000000..60fe000 --- /dev/null +++ b/docs/pages/data/index.html @@ -0,0 +1,236 @@ + + + + + + Optimization Solver Benchmark - Data Exports + + + + + ๐ฌ Optimization Solver Benchmark + Data Exports - Download Benchmark Results + Generated: 2025-08-05 16:09:43 UTC + + + + Overview + Results Matrix + Raw Data + Data Exports + + + + + ๐ Available Data Files + + + Download complete benchmark results in various formats for further analysis and research. + + + + ๐ Latest Results (JSON) + Most recent benchmark results with solver information, problem details, and performance metrics. Best for analyzing current solver performance. + ๐ฅ Download Latest JSON + Latest run only + + + + ๐ Latest Results (CSV) + Most recent benchmark results in CSV format for spreadsheet analysis. Contains the latest solver-problem combinations. + ๐ฅ Download Latest CSV + Latest run only + + + + ๐๏ธ All Results (JSON) + Complete historical benchmark results including all runs. Sorted by ID for database restoration. Ideal for comprehensive analysis and backup. + ๐ฅ Download All JSON + Full database export + + + + ๐ All Results (CSV) + Complete historical benchmark results in CSV format. Sorted by ID for database restoration. Perfect for time-series analysis and research. + ๐ฅ Download All CSV + Full database export + + + + + + + ๐ Data Format Documentation + + JSON Structure + + benchmark_results_latest.json: Latest benchmark run with metadata, summary statistics, and results array + benchmark_results_all.json: Complete database export sorted by ID for restoration purposes + Each contains: metadata, summary statistics, solver comparison, and detailed results + + + CSV Format + + benchmark_results_latest.csv: Latest run in tabular format, sorted by problem and solver + benchmark_results_all.csv: All historical data sorted by ID (ascending) for database restoration + Headers include: id, solver_name, solver_version, problem_library, problem_name, problem_type, solve_time, status, etc. + + + + + + + + \ No newline at end of file diff --git a/docs/pages/data/summary.json b/docs/pages/data/summary.json deleted file mode 100644 index ea7a9f0..0000000 --- a/docs/pages/data/summary.json +++ /dev/null @@ -1,320 +0,0 @@ -{ - "metadata": { - "generated_at": "2025-07-19T23:39:48.346008", - "total_results": 1026, - "format": "summary_only" - }, - "overall_statistics": { - "total_results": 1026, - "total_solvers": 11, - "total_problems": 138, - "success_rate": 0.4, - "avg_solve_time": 12.413195807016402, - "successful_results": 232, - "unsupported_results": 446, - "applicable_results": 580, - "problem_type_distribution": { - "UNKNOWN": 69, - "SDP": 809, - "SOCP": 148 - }, - "library_distribution": { - "DIMACS": 330, - "SDPLIB": 696 - }, - "status_distribution": { - "ERROR": 145, - "NUM_ERROR": 40, - "OPTIMAL (INACCURATE)": 86, - "OPTIMAL": 232, - "UNSUPPORTED": 446, - "TIMEOUT": 3, - "MAX_ITER": 10, - "INFEASIBLE": 16, - "UNKNOWN": 33, - "UNBOUNDED (INACCURATE)": 1, - "UNBOUNDED": 12, - "INFEASIBLE (INACCURATE)": 2 - }, - "solver_names": [ - "cvxpy_clarabel", - "cvxpy_cvxopt", - "cvxpy_ecos", - "cvxpy_highs", - "cvxpy_osqp", - "cvxpy_scip", - "cvxpy_scs", - "cvxpy_sdpa", - "matlab_sdpt3", - "matlab_sedumi", - "scipy_linprog" - ], - "problem_names": [ - "arch0", - "arch2", - "arch4", - "arch8", - "biomedP", - "bm1", - "control1", - "control10", - "control11", - "control2", - "control3", - "control4", - "control5", - "control6", - "control7", - "control8", - "control9", - "copo14", - "copo23", - "equalG11", - "equalG51", - "fap09", - "fap36", - "filter48", - "filtinf1", - "gpp100", - "gpp124-1", - "gpp124-2", - "gpp124-3", - "gpp124-4", - "gpp250-1", - "gpp250-2", - "gpp250-3", - "gpp250-4", - "gpp500-1", - "gpp500-2", - "gpp500-3", - "gpp500-4", - "hamming_11_2", - "hamming_7_5_6", - "hamming_8_3_4", - "hamming_9_5_6", - "hamming_9_8", - "hinf1", - "hinf10", - "hinf11", - "hinf12", - "hinf12_sdp", - "hinf13", - "hinf13_sdp", - "hinf14", - "hinf15", - "hinf2", - "hinf3", - "hinf4", - "hinf5", - "hinf6", - "hinf7", - "hinf8", - "hinf9", - "industry2", - "infd1", - "infd2", - "infp1", - "infp2", - "maxG11", - "maxG32", - "maxG51", - "maxG55", - "maxG60", - "mcp100", - "mcp124-1", - "mcp124-2", - "mcp124-3", - "mcp124-4", - "mcp250-1", - "mcp250-2", - "mcp250-3", - "mcp250-4", - "mcp500-1", - "mcp500-2", - "mcp500-3", - "mcp500-4", - "minphase", - "nb", - "nb_L1", - "nb_L2", - "nb_L2_bessel", - "nql180", - "nql180old", - "nql30", - "nql30old", - "nql60", - "nql60old", - "qap10", - "qap5", - "qap6", - "qap7", - "qap8", - "qap9", - "qpG11", - "qpG51", - "qssp180old", - "qssp30", - "qssp30old", - "qssp60", - "qssp60old", - "sched_100_100_orig", - "sched_100_100_scaled", - "sched_100_50_orig", - "sched_100_50_scaled", - "sched_200_100_orig", - "sched_200_100_scaled", - "sched_50_50_orig", - "sched_50_50_scaled", - "ss30", - "theta1", - "theta2", - "theta3", - "theta4", - "theta5", - "theta6", - "thetaG11", - "thetaG51", - "torusg3-15", - "torusg3-8", - "toruspm3-15-50", - "toruspm3-8-50", - "truss1", - "truss2", - "truss3", - "truss4", - "truss5", - "truss5_sdp", - "truss6", - "truss7", - "truss8", - "truss8_sdp" - ] - }, - "solver_performance": [ - { - "solver_name": "cvxpy_scip", - "problems_attempted": 81, - "problems_applicable": 3, - "problems_solved": 2, - "problems_unsupported": 78, - "success_rate": 0.6666666666666666, - "avg_solve_time": 54.10598909854889, - "min_solve_time": 50.8220100402832, - "max_solve_time": 57.389968156814575 - }, - { - "solver_name": "cvxpy_clarabel", - "problems_attempted": 79, - "problems_applicable": 79, - "problems_solved": 47, - "problems_unsupported": 0, - "success_rate": 0.5949367088607594, - "avg_solve_time": 8.219515762831035, - "min_solve_time": 0.00506281852722168, - "max_solve_time": 116.92459893226624 - }, - { - "solver_name": "cvxpy_scs", - "problems_attempted": 62, - "problems_applicable": 62, - "problems_solved": 31, - "problems_unsupported": 0, - "success_rate": 0.5, - "avg_solve_time": 14.027361787733485, - "min_solve_time": 0.005390167236328125, - "max_solve_time": 92.80738425254822 - }, - { - "solver_name": "matlab_sdpt3", - "problems_attempted": 135, - "problems_applicable": 135, - "problems_solved": 50, - "problems_unsupported": 0, - "success_rate": 0.37037037037037035, - "avg_solve_time": 8.737274696712733, - "min_solve_time": 0.24263908333333334, - "max_solve_time": 138.05433633333334 - }, - { - "solver_name": "matlab_sedumi", - "problems_attempted": 138, - "problems_applicable": 138, - "problems_solved": 51, - "problems_unsupported": 0, - "success_rate": 0.3695652173913043, - "avg_solve_time": 19.24742645824121, - "min_solve_time": 0.18138175, - "max_solve_time": 300.0 - }, - { - "solver_name": "cvxpy_cvxopt", - "problems_attempted": 74, - "problems_applicable": 74, - "problems_solved": 25, - "problems_unsupported": 0, - "success_rate": 0.33783783783783783, - "avg_solve_time": 12.945587092882967, - "min_solve_time": 0.027730941772460938, - "max_solve_time": 228.55329608917236 - }, - { - "solver_name": "cvxpy_ecos", - "problems_attempted": 90, - "problems_applicable": 12, - "problems_solved": 4, - "problems_unsupported": 78, - "success_rate": 0.3333333333333333, - "avg_solve_time": 13.632525010542436, - "min_solve_time": 0.17055892944335938, - "max_solve_time": 52.14936709403992 - }, - { - "solver_name": "cvxpy_sdpa", - "problems_attempted": 74, - "problems_applicable": 74, - "problems_solved": 22, - "problems_unsupported": 0, - "success_rate": 0.2972972972972973, - "avg_solve_time": 9.483143959959893, - "min_solve_time": 0.007824182510375977, - "max_solve_time": 104.95400619506836 - }, - { - "solver_name": "cvxpy_highs", - "problems_attempted": 98, - "problems_applicable": 1, - "problems_solved": 0, - "problems_unsupported": 97, - "success_rate": 0.0, - "avg_solve_time": 0.0, - "min_solve_time": 0.0, - "max_solve_time": 0.0 - }, - { - "solver_name": "cvxpy_osqp", - "problems_attempted": 98, - "problems_applicable": 1, - "problems_solved": 0, - "problems_unsupported": 97, - "success_rate": 0.0, - "avg_solve_time": 0.0, - "min_solve_time": 0.0, - "max_solve_time": 0.0 - }, - { - "solver_name": "scipy_linprog", - "problems_attempted": 97, - "problems_applicable": 1, - "problems_solved": 0, - "problems_unsupported": 96, - "success_rate": 0.0, - "avg_solve_time": 0.0, - "min_solve_time": 0.0, - "max_solve_time": 0.0 - } - ], - "environment": { - "commit_hash": "96ca043787ef8c38515cfa8d108d16b61b823e04", - "platform": "Darwin" - } -} \ No newline at end of file diff --git a/docs/pages/index.html b/docs/pages/index.html index 2f7e4dd..435c010 100644 --- a/docs/pages/index.html +++ b/docs/pages/index.html @@ -255,7 +255,7 @@ ๐ฌ Optimization Solver Benchmark Overview Dashboard - Latest Results - Generated: 2025-07-19 23:39:48 + Generated: 2025-08-05 16:09:43 UTC @@ -271,472 +271,99 @@ ๐ฌ Optimization Solver Benchmark ๐ Project Overview - Project Vision -Create the leading open-source platform for benchmarking optimization solvers across multiple problem types, providing researchers and practitioners with comprehensive performance insights through automated execution, transparent reporting, and fair baseline comparisons. + A reproducible benchmarking framework for optimization solvers across LP, QP, SOCP, and SDP problems using standardized libraries (DIMACS, SDPLIB). The system conducts systematic performance evaluation establishing "out of the box" performance baselines rather than optimized configurations, and publishes transparent results for research community use. -Core Mission -"Regularly benchmark publicly available solvers and publish the results as data" - -This system prioritizes unbiased solver comparison through minimal configuration, establishing "out of the box" performance baselines rather than optimized configurations. +The benchmarking code is available at https://github.com/napinoco/optimization-solver-benchmark๐ค Author: Naoki Ito - - Total Results - 1026 - Solvers Tested 11 Problems Tested - 138 + 120 - Success Rate - 40.0% + Libraries + 2 + + + Problem Types + 2 - + - ๐ Status Distribution + ๐ง Solvers Tested - - - ERROR - - 145 - (14.1%) - - - - INFEASIBLE - - 16 - (1.6%) - - - - INFEASIBLE (INACCURATE) - - 2 - (0.2%) - - - - MAX_ITER - - 10 - (1.0%) - - - - NUM_ERROR - - 40 - (3.9%) - - - - OPTIMAL - - 232 - (22.6%) - - - - OPTIMAL (INACCURATE) - - 86 - (8.4%) - - - - TIMEOUT - - 3 - (0.3%) - - - - UNBOUNDED - - 12 - (1.2%) - - - - UNBOUNDED (INACCURATE) - - 1 - (0.1%) - - - - UNKNOWN - - 33 - (3.2%) - - - - UNSUPPORTED - - 446 - (43.5%) - - + Total Solvers: 11 + + Solver Names: + cvxpy_clarabelcvxpy_cvxoptcvxpy_ecoscvxpy_highscvxpy_osqpcvxpy_scipcvxpy_scscvxpy_sdpamatlab_sdpt3matlab_sedumiscipy_linprog + + - ๐ Solver Comparison by Problem Type + ๐ Problems Tested by Library and Type - UNKNOWN Problems - Solver - Problems Attempted - Problems Solved - Success Rate - Avg Solve Time + Library + Problem Type + Count - - matlab_sdpt3 - 28 - 0 - 0.0% - 0.0000s - - - cvxpy_clarabel - 3 - 0 - 0.0% - 0.0000s - - - cvxpy_cvxopt - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_ecos - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_highs - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_osqp - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_scip - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_scs - 1 - 0 - 0.0% - 0.0000s - - - cvxpy_sdpa - 1 - 0 - 0.0% - 0.0000s - - - scipy_linprog - 1 - 0 - 0.0% - 0.0000s - - - matlab_sedumi - 30 - 0 - 0.0% - 4.2789s - - - - - SDP Problems - - - Solver - Problems Attempted - Problems Solved - Success Rate - Avg Solve Time + DIMACS + SDP + 17 - - - - cvxpy_clarabel - 65 - 42 - 64.6% - 5.8926s - - - cvxpy_scs - 53 - 27 - 50.9% - 11.0948s - - - matlab_sdpt3 - 85 - 39 - 45.9% - 8.6853s - - - matlab_sedumi - 85 - 36 - 42.4% - 23.1333s - - - cvxpy_cvxopt - 65 - 23 - 35.4% - 8.2868s - - - cvxpy_sdpa - 67 - 22 - 32.8% - 5.0452s - - - cvxpy_ecos - 78 - 0 - 0.0% - 0.0000s - - - cvxpy_highs - 78 - 0 - 0.0% - 0.0000s - - - cvxpy_osqp - 78 - 0 - 0.0% - 0.0000s - - - cvxpy_scip - 78 - 0 - 0.0% - 0.0000s - - - scipy_linprog - 77 - 0 - 0.0% - 0.0000s - - - - - SOCP Problems - - - Solver - Problems Attempted - Problems Solved - Success Rate - Avg Solve Time + DIMACS + SOCP + 17 - - - - cvxpy_scip - 2 - 2 - 100.0% - 54.1060s - - - matlab_sedumi - 23 - 15 - 65.2% - 7.3959s - - - matlab_sdpt3 - 22 - 11 - 50.0% - 8.9241s - - - cvxpy_scs - 8 - 4 - 50.0% - 33.4558s - - - cvxpy_clarabel - 11 - 5 - 45.5% - 21.9695s - - - cvxpy_ecos - 11 - 4 - 36.4% - 13.6325s - - - cvxpy_cvxopt - 8 - 2 - 25.0% - 50.7982s - - - cvxpy_highs - 19 - 0 - 0.0% - 0.0000s - - - cvxpy_osqp - 19 - 0 - 0.0% - 0.0000s - - - scipy_linprog - 19 - 0 - 0.0% - 0.0000s - - - cvxpy_sdpa - 6 - 0 - 0.0% - 59.0400s - - - - - - - - - ๐ Problem Type Distribution - - - - Problem Type - Count - Percentage + SDPLIB + SDP + 86 - - - - UNKNOWN - 69 - 6.7% - - - SDP - 809 - 78.8% - - - SOCP - 148 - 14.4% - + - ๐ Library Distribution + ๐ Performance Analysis - - - - Library - Count - Percentage - - - - - DIMACS - 330 - 32.2% - - - SDPLIB - 696 - 67.8% - - - + + ๐ง To Be Determined + + Performance ranking methodology is currently under development. + Evaluation criteria for determining "best performers" are being established + to ensure fair and meaningful comparisons across different solver types. + + + Please refer to the Results Matrix + for detailed performance data in the meantime. + + ๐ง Environment Information - Commit Hashes: 443b599d, 96ca0437โ ๏ธ Multiple environments detected: Results from 2 different Git commitsPlatform: Darwin (8CPU, 24GB)Python Version: 3.12.2 + Git Commit Hashes: 0d9be48d, 2ef15f0b, 443b599d, 86bfae9b, 96ca0437, d31cb753, f95b7a82โ ๏ธ Multiple environments detected: Results from 7 different Git commitsPlatform: Darwin (8CPU, 24GB)Python Version: CPython 3.12.2Operating System: Darwin 23.5.0CPU: arm (8 cores)Memory: 24.0 GBMATLAB: Available (version detection via solver results) diff --git a/docs/pages/raw_data.html b/docs/pages/raw_data.html index e775e3b..32644a6 100644 --- a/docs/pages/raw_data.html +++ b/docs/pages/raw_data.html @@ -277,7 +277,7 @@ ๐ฌ Optimization Solver Benchmark Raw Data - Detailed Results Table - Generated: 2025-07-19 23:39:48 | Total Results: 1026 + Generated: 2025-08-05 16:09:43 UTC | Total Results: 1320 @@ -311,6 +311,126 @@ ๐ Detailed Results + + cvxpy_clarabel + unknown + bm1 + SDP + DIMACS + SIGKILL + 30.6044 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:20:43 + + + cvxpy_cvxopt + unknown + bm1 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:23:46 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + bm1 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:35:07 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + bm1 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:35:08 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + bm1 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:35:09 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + bm1 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:35:08 + + + cvxpy_scs + unknown + bm1 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:26:26 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + bm1 + SDP + DIMACS + OPTIMAL + 121.1319 + 2.343982e+01 + โ + 5.393634e-07 + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:29:14 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -341,6 +461,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 11:12:04 + + scipy_linprog + scipy-1.15.3 + bm1 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:35:09 + cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 @@ -348,13 +483,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 0.2343 + 0.2296 -1.640107e-08 14 1.393496e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:32 + 2025-08-03 14:27:52 cvxpy_cvxopt @@ -363,13 +498,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 2.3531 + 2.1925 -2.497697e-08 โ 1.446726e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:34 + 2025-08-03 14:27:54 cvxpy_ecos @@ -382,9 +517,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-04 15:35:10 cvxpy_highs @@ -397,9 +532,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-04 15:35:11 cvxpy_osqp @@ -412,9 +547,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-04 15:35:11 cvxpy_scip @@ -427,9 +562,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-04 15:35:10 cvxpy_scs @@ -438,13 +573,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 0.0998 + 0.1001 2.763797e-06 275 2.162907e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-03 14:27:55 cvxpy_sdpa @@ -453,13 +588,13 @@ ๐ Detailed Results SDP DIMACS ERROR - 0.1397 + 0.1937 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:35 + 2025-08-03 14:27:51 matlab_sdpt3 @@ -476,21 +611,6 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 13:59:15 - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - copo14 - SDP - DIMACS - OPTIMAL - 5.5311 - -6.648660e-09 - 17 - 1.657832e-11 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:46 - matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) @@ -517,9 +637,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:08:46 + 2025-08-04 15:35:12 cvxpy_clarabel @@ -528,13 +648,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 4.2579 + 4.0747 -4.488470e-08 16 2.078702e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:10:40 + 2025-08-03 14:28:02 cvxpy_cvxopt @@ -543,13 +663,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 62.8191 + 58.7002 -2.482776e-08 โ 9.099449e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:43 + 2025-08-03 14:29:02 cvxpy_ecos @@ -562,9 +682,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:43 + 2025-08-04 15:35:13 cvxpy_highs @@ -577,9 +697,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:43 + 2025-08-04 15:35:14 cvxpy_osqp @@ -592,9 +712,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:43 + 2025-08-04 15:35:14 cvxpy_scip @@ -607,9 +727,9 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:43 + 2025-08-04 15:35:13 cvxpy_scs @@ -618,13 +738,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 1.2642 + 1.2210 -7.956280e-06 300 -4.759089e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:45 + 2025-08-03 14:29:05 cvxpy_sdpa @@ -633,13 +753,13 @@ ๐ Detailed Results SDP DIMACS ERROR - 2.2467 + 1.9145 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:11:48 + 2025-08-03 14:27:57 matlab_sdpt3 @@ -656,21 +776,6 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 13:59:27 - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - copo23 - SDP - DIMACS - OPTIMAL - 28.6621 - -1.894007e-08 - 20 - 1.286454e-11 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:12:28 - matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) @@ -697,59 +802,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:12:28 + 2025-08-04 15:35:15 - matlab_sedumi + cvxpy_clarabel unknown fap09 SDP DIMACS TIMEOUT - 300.0000 + 120.0000 โ โ โ - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 11:54:06 - - - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - filter48 - SDP - DIMACS - OPTIMAL (INACCURATE) - 1.4588 - 1.416102e+00 - 31 - -1.220505e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:48:11 + 2025-08-03 14:32:13 cvxpy_cvxopt unknown - filter48 + fap09 SDP DIMACS - ERROR - 7.2100 + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:48:18 + 2025-08-03 14:34:14 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - filter48 + fap09 SDP DIMACS UNSUPPORTED @@ -757,14 +847,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:48:18 + 2025-07-22 14:48:51 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - filter48 + fap09 SDP DIMACS UNSUPPORTED @@ -772,14 +862,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:48:18 + 2025-07-22 14:36:13 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - filter48 + fap09 SDP DIMACS UNSUPPORTED @@ -787,14 +877,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:48:18 + 2025-07-22 14:36:13 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - filter48 + fap09 SDP DIMACS UNSUPPORTED @@ -802,74 +892,74 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:48:18 + 2025-07-22 14:48:52 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - filter48 + fap09 SDP DIMACS - OPTIMAL (INACCURATE) - 31.4729 - 1.409074e+00 - 100000 - -6.981162e-06 - 443b599d + OPTIMAL + 89.2841 + 1.079790e+01 + 16325 + 6.900337e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:48:49 + 2025-08-03 14:35:56 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - filter48 + fap09 SDP DIMACS - OPTIMAL (INACCURATE) - 40.1349 - 1.416130e+00 + INFEASIBLE + 65.8300 โ - 1.073397e-06 - 443b599d + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:49:30 + 2025-08-03 14:30:13 matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - filter48 + unknown + fap09 SDP DIMACS - MAX_ITER - 3.3855 - 1.416129e+00 - 42 - 4.916332e-07 - 96ca0437 + TIMEOUT + 300.0000 + โ + โ + โ + 86bfae9b Darwin (8CPU, 24GB) - 2025-07-19 13:59:35 + 2025-07-22 15:24:49 matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - filter48 + unknown + fap09 SDP DIMACS - OPTIMAL - 0.8318 - 1.416129e+00 - 37 - 2.352820e-09 + TIMEOUT + 300.0000 + โ + โ + โ 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:38:07 + 2025-07-19 11:54:06 scipy_linprog scipy-1.15.3 - filter48 + fap09 SDP DIMACS UNSUPPORTED @@ -877,44 +967,44 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:49:30 + 2025-07-22 14:36:13 cvxpy_clarabel - unknown - filtinf1 + cvxpy-1.6.5-CLARABEL-0.11.0 + filter48 SDP DIMACS - ERROR - 3.7226 - โ - โ - โ - 443b599d + OPTIMAL (INACCURATE) + 1.3734 + 1.416102e+00 + 31 + -1.220505e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:50:48 + 2025-08-03 14:36:39 cvxpy_cvxopt unknown - filtinf1 + filter48 SDP DIMACS ERROR - 17.9445 + 6.7139 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:51:06 + 2025-08-03 14:36:46 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - filtinf1 + filter48 SDP DIMACS UNSUPPORTED @@ -922,14 +1012,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:51:06 + 2025-07-22 14:48:52 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - filtinf1 + filter48 SDP DIMACS UNSUPPORTED @@ -937,14 +1027,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:51:06 + 2025-07-22 14:40:11 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - filtinf1 + filter48 SDP DIMACS UNSUPPORTED @@ -952,14 +1042,14 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:51:06 + 2025-07-22 14:40:11 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - filtinf1 + filter48 SDP DIMACS UNSUPPORTED @@ -967,179 +1057,74 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:51:06 + 2025-07-22 14:48:52 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - filtinf1 + filter48 SDP DIMACS OPTIMAL (INACCURATE) - 37.5676 - 0.000000e+00 + 30.7407 + 1.409074e+00 100000 - -1.421697e-06 - 443b599d + -6.981162e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:51:44 + 2025-08-03 14:37:17 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - filtinf1 + filter48 SDP DIMACS - INFEASIBLE - 34.2711 - โ - โ + OPTIMAL (INACCURATE) + 39.7937 + 1.416130e+00 โ - 443b599d + 1.073397e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:52:18 + 2025-08-03 14:36:37 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - filtinf1 - SDP - DIMACS - INFEASIBLE - 2.7789 - 0.000000e+00 - 34 - 1.000000e+00 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 13:59:43 - - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB unknown) - filtinf1 + filter48 SDP DIMACS - ERROR - โ - โ - โ - โ + MAX_ITER + 3.3855 + 1.416129e+00 + 42 + 4.916332e-07 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:38:13 - - - scipy_linprog - scipy-1.15.3 - filtinf1 - SDP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:52:18 - - - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - hamming_11_2 - SDP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:43:11 - - - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - hamming_11_2 - SDP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:43:19 - - - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - hamming_11_2 - SDP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:43:19 - - - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - hamming_11_2 - SDP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:43:19 - - - matlab_sdpt3 - unknown - hamming_11_2 - SDP - DIMACS - ERROR - 16.6145 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:42:43 + 2025-07-19 13:59:35 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hamming_11_2 + filter48 SDP DIMACS - ERROR - 0.0000 - โ - โ - โ + OPTIMAL + 0.8318 + 1.416129e+00 + 37 + 2.352820e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:36:37 + 2025-07-19 12:38:07 scipy_linprog scipy-1.15.3 - hamming_11_2 + filter48 SDP DIMACS UNSUPPORTED @@ -1147,9 +1132,9 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 15:43:20 + 2025-07-22 14:40:11 cvxpy_clarabel @@ -1158,13 +1143,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 18.8752 + 20.0235 -4.266667e+01 6 -5.770531e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:46:05 + 2025-08-03 14:40:39 cvxpy_cvxopt @@ -1173,13 +1158,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 6.3819 + 5.8530 -4.266667e+01 โ 1.274337e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:45:38 + 2025-08-03 14:40:46 cvxpy_ecos @@ -1248,13 +1233,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 0.3216 + 0.2785 -4.266664e+01 150 5.372828e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:45:18 + 2025-08-03 14:40:47 cvxpy_sdpa @@ -1263,13 +1248,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 0.6073 + 0.5974 -4.266666e+01 โ 3.079536e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:45:25 + 2025-08-03 14:40:19 matlab_sdpt3 @@ -1278,13 +1263,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 6.9019 + 1.0727 -4.266667e+01 8 7.208454e-07 - 443b599d + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-13 15:44:47 + 2025-07-19 14:42:19 matlab_sedumi @@ -1316,6 +1301,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-13 15:45:11 + + cvxpy_clarabel + unknown + hamming_8_3_4 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:44:49 + + + cvxpy_cvxopt + unknown + hamming_8_3_4 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:46:49 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -1383,13 +1398,28 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 5.7121 + 5.4577 -2.560000e+01 225 -8.862151e-07 - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:47:01 + + + cvxpy_sdpa + unknown + hamming_8_3_4 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:50:36 + 2025-08-03 14:42:47 matlab_sdpt3 @@ -1398,13 +1428,28 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 86.8849 + 151.3344 -2.560000e+01 9 2.533675e-07 - 443b599d + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:44:56 + + + matlab_sedumi + unknown + hamming_8_3_4 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:48:04 + 2025-08-03 14:50:06 scipy_linprog @@ -1422,34 +1467,34 @@ ๐ Detailed Results 2025-07-13 15:50:18 - matlab_sdpt3 + cvxpy_clarabel unknown - hamming_9_5_6 + hamming_9_8 SDP DIMACS - ERROR - 12.2403 + SIGKILL + 25.8614 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:53:40 + 2025-08-03 14:37:50 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hamming_9_5_6 + cvxpy_cvxopt + unknown + hamming_9_8 SDP DIMACS - ERROR - 0.0000 + TIMEOUT + 120.0000 โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:36:51 + 2025-08-03 14:39:51 cvxpy_ecos @@ -1462,9 +1507,9 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 15:30:36 + 2025-07-22 14:48:52 cvxpy_highs @@ -1507,9 +1552,9 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 15:30:36 + 2025-07-22 14:48:52 cvxpy_scs @@ -1518,13 +1563,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 21.9878 + 22.1571 -2.240003e+02 325 5.131564e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:31:13 + 2025-08-03 14:40:18 cvxpy_sdpa @@ -1533,13 +1578,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 2.6725 + 2.5427 -2.240000e+02 โ 5.380919e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:31:20 + 2025-08-03 14:37:24 matlab_sdpt3 @@ -1548,13 +1593,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 6.8282 + 2.2588 -2.240000e+02 9 3.642753e-06 - 443b599d + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-13 15:21:49 + 2025-07-19 14:46:48 matlab_sedumi @@ -1758,13 +1803,13 @@ ๐ Detailed Results SDP DIMACS ERROR - 0.0138 + 0.0157 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:56:50 + 2025-08-03 15:00:12 cvxpy_cvxopt @@ -1773,13 +1818,13 @@ ๐ Detailed Results SDP DIMACS ERROR - 0.0793 + 0.0812 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:57:04 + 2025-08-03 15:00:12 cvxpy_ecos @@ -1848,13 +1893,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 2.8321 + 2.8234 -3.033855e+01 100000 -5.507434e-04 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:56:50 + 2025-08-03 15:00:16 cvxpy_sdpa @@ -1863,13 +1908,13 @@ ๐ Detailed Results SDP DIMACS INFEASIBLE - 0.0114 + 0.0115 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 15:57:04 + 2025-08-03 15:00:11 matlab_sdpt3 @@ -1886,21 +1931,6 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 13:59:59 - - matlab_sedumi - unknown - hinf13 - SDP - DIMACS - ERROR - 4.4101 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 15:57:04 - matlab_sedumi unknown @@ -1938,13 +1968,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 1.3531 + 1.4263 5.966248e+00 38 -1.082246e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:53:19 + 2025-08-03 14:59:51 cvxpy_cvxopt @@ -1953,13 +1983,13 @@ ๐ Detailed Results SDP DIMACS ERROR - 0.5625 + 0.5794 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:53:20 + 2025-08-03 14:59:52 cvxpy_ecos @@ -1972,9 +2002,9 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:53:20 + 2025-07-22 14:48:52 cvxpy_highs @@ -2017,9 +2047,9 @@ ๐ Detailed Results โ โ โ - 443b599d + 0d9be48d Darwin (8CPU, 24GB) - 2025-07-13 14:53:20 + 2025-07-22 14:48:52 cvxpy_scs @@ -2028,13 +2058,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 18.2933 + 18.5307 5.942592e+00 100000 -4.852110e-03 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:53:38 + 2025-08-03 15:00:11 cvxpy_sdpa @@ -2043,13 +2073,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 0.1333 + 0.1397 5.971317e+00 โ -5.618462e-03 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-13 14:53:39 + 2025-08-03 14:59:49 matlab_sdpt3 @@ -2097,23 +2127,53 @@ ๐ Detailed Results 2025-07-13 14:53:39 - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 + cvxpy_clarabel + unknown torusg3-15 SDP DIMACS - UNSUPPORTED - โ + SIGKILL + 18.8889 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:09:21 + 2025-08-03 15:35:46 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 + cvxpy_cvxopt + unknown + torusg3-15 + SDP + DIMACS + SIGKILL + 18.9863 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:36:05 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + torusg3-15 + SDP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-16 10:09:21 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 torusg3-15 SDP DIMACS @@ -2156,6 +2216,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:09:21 + + cvxpy_scs + unknown + torusg3-15 + SDP + DIMACS + SIGKILL + 19.0286 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:36:24 + + + cvxpy_sdpa + unknown + torusg3-15 + SDP + DIMACS + SIGKILL + 18.8035 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:35:27 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -2171,6 +2261,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 14:29:50 + + matlab_sedumi + unknown + torusg3-15 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:36:14 + scipy_linprog scipy-1.15.3 @@ -2186,6 +2291,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:09:21 + + cvxpy_clarabel + unknown + torusg3-8 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:34:51 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + torusg3-8 + SDP + DIMACS + INFEASIBLE + 15.6184 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:35:07 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -2246,6 +2381,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:06:36 + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + torusg3-8 + SDP + DIMACS + INFEASIBLE + 0.3026 + โ + 0 + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:35:08 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + torusg3-8 + SDP + DIMACS + OPTIMAL + 0.8718 + -4.834095e+07 + โ + 5.284690e-01 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:32:50 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -2291,6 +2456,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:06:36 + + cvxpy_clarabel + unknown + toruspm3-15-50 + SDP + DIMACS + SIGKILL + 19.0040 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:32:10 + + + cvxpy_cvxopt + unknown + toruspm3-15-50 + SDP + DIMACS + SIGKILL + 19.0381 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:32:29 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -2351,6 +2546,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:05:31 + + cvxpy_scs + unknown + toruspm3-15-50 + SDP + DIMACS + SIGKILL + 19.1055 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:32:48 + + + cvxpy_sdpa + unknown + toruspm3-15-50 + SDP + DIMACS + SIGKILL + 18.8757 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:31:50 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -2358,13 +2583,28 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 75.3175 + 82.7619 -3.474794e+03 15 2.336895e-05 - 443b599d + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:48:56 + + + matlab_sedumi + unknown + toruspm3-15-50 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:04:34 + 2025-08-04 12:33:59 scipy_linprog @@ -2381,6 +2621,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:05:31 + + cvxpy_clarabel + unknown + toruspm3-8-50 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:28:35 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + toruspm3-8-50 + SDP + DIMACS + OPTIMAL + 54.6946 + -5.278086e+02 + โ + -2.692923e-08 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:29:31 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -2441,6 +2711,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:02:28 + + cvxpy_scs + unknown + toruspm3-8-50 + SDP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:31:31 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + toruspm3-8-50 + SDP + DIMACS + OPTIMAL + 0.6449 + -5.278086e+02 + โ + 2.929774e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:26:35 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -2448,13 +2748,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 6.5414 + 2.0341 -5.278087e+02 14 2.502804e-06 - 443b599d + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-16 09:59:50 + 2025-07-19 14:47:24 matlab_sedumi @@ -2493,13 +2793,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL (INACCURATE) - 0.4248 + 0.4209 1.326353e+02 19 -1.859510e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:12:32 + 2025-08-04 13:48:57 cvxpy_cvxopt @@ -2508,13 +2808,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 1.2075 + 1.1821 1.326357e+02 โ -9.013348e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:12:43 + 2025-08-04 13:48:59 cvxpy_ecos @@ -2583,13 +2883,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 21.9329 + 22.0592 1.326703e+02 83675 -4.136353e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:13:05 + 2025-08-04 13:49:22 cvxpy_sdpa @@ -2598,43 +2898,43 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 0.1508 + 0.1478 1.326357e+02 โ 4.425084e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:13:05 + 2025-08-04 13:48:56 matlab_sdpt3 - unknown + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) truss5 SDP DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.6745 + 1.326357e+02 + 15 + 1.469985e-07 + 86bfae9b Darwin (8CPU, 24GB) - 2025-07-19 14:37:09 + 2025-07-22 15:17:54 matlab_sedumi - unknown + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) truss5 SDP DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.6298 + 1.326357e+02 + 23 + 4.508877e-09 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 13:17:42 + 2025-07-22 15:32:38 scipy_linprog @@ -2658,13 +2958,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 7.3340 + 7.1673 1.331145e+02 20 -1.563147e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:14:25 + 2025-08-04 13:49:30 cvxpy_cvxopt @@ -2673,13 +2973,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 4.5419 + 4.4580 1.331146e+02 โ 1.595481e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:14:30 + 2025-08-04 13:49:35 cvxpy_ecos @@ -2748,13 +3048,13 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 78.3102 + 78.7392 1.332064e+02 90650 -3.532815e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:15:48 + 2025-08-04 13:50:55 cvxpy_sdpa @@ -2763,43 +3063,43 @@ ๐ Detailed Results SDP DIMACS OPTIMAL - 0.6188 + 0.6237 1.331146e+02 โ 1.800076e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:15:49 + 2025-08-04 13:49:23 matlab_sdpt3 - unknown + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) truss8 SDP DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.8213 + 1.331146e+02 + 16 + 6.819968e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:37:13 + 2025-07-22 15:31:53 matlab_sedumi - unknown + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) truss8 SDP DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 1.0172 + 1.331146e+02 + 24 + 2.428095e-09 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 13:17:47 + 2025-07-22 15:32:44 scipy_linprog @@ -2817,144 +3117,219 @@ ๐ Detailed Results 2025-07-16 10:15:49 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 nb SOCP DIMACS OPTIMAL - 0.9657 + 13.8800 -5.070309e-02 - 25 - 9.046876e-09 - 96ca0437 + 21 + 1.858028e-13 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:58:40 + 2025-08-03 14:53:45 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 nb SOCP DIMACS OPTIMAL - 0.5916 + 14.2568 + -5.070309e-02 + โ + 3.360170e-11 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:54:00 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + nb + SOCP + DIMACS + OPTIMAL + 14.2321 -5.070309e-02 20 - 4.364627e-12 - 96ca0437 + 1.681294e-14 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 11:10:47 + 2025-08-04 15:29:15 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L1 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + nb + SOCP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:29:57 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + nb + SOCP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:29:57 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + nb SOCP DIMACS OPTIMAL - 1.7669 - -1.301227e+01 - 35 - 1.141563e-07 - 96ca0437 + 41.2828 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:58:47 + 2025-08-04 15:29:56 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L1 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + nb SOCP DIMACS OPTIMAL - 0.8813 - -1.301227e+01 - 18 - 2.974918e-09 - 96ca0437 + 15.1381 + -5.070258e-02 + 5425 + -1.968661e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 11:10:53 + 2025-08-03 14:54:16 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + nb + SOCP + DIMACS + OPTIMAL (INACCURATE) + 28.0211 + -2.033657e-03 + โ + 1.875184e+00 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:53:31 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L2 + nb SOCP DIMACS OPTIMAL - 0.9697 - -1.628972e+00 - 18 - 1.085572e-08 + 0.9657 + -5.070309e-02 + 25 + 9.046876e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:58:52 + 2025-07-19 13:58:40 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L2 + nb SOCP DIMACS OPTIMAL - 0.6029 - -1.628972e+00 - 16 - 6.599223e-10 + 0.5916 + -5.070309e-02 + 20 + 4.364627e-12 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 11:10:58 + 2025-07-19 11:10:47 + + + scipy_linprog + scipy-1.15.3 + nb + SOCP + DIMACS + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:29:58 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 16.7466 - -1.025695e-01 - 14 - 1.589562e-13 - 443b599d + 16.3646 + -1.301227e+01 + 17 + 2.201855e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:56:46 + 2025-08-03 14:55:08 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 17.0253 - -1.025695e-01 + 17.5134 + -1.301227e+01 โ - 5.487534e-09 - 443b599d + 1.966539e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:57:03 + 2025-08-03 14:55:26 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 16.9100 - -1.025695e-01 - 13 - 6.804807e-12 - 443b599d + 16.2214 + -1.301227e+01 + 19 + 5.597833e-11 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:57:20 + 2025-08-04 15:30:15 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - nb_L2_bessel + nb_L1 SOCP DIMACS UNSUPPORTED @@ -2962,14 +3337,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:57:20 + 2025-08-04 15:31:20 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nb_L2_bessel + nb_L1 SOCP DIMACS UNSUPPORTED @@ -2977,89 +3352,89 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:57:20 + 2025-08-04 15:31:20 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 50.8220 + 63.7242 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:58:11 + 2025-08-04 15:31:19 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 17.1421 - -1.025694e-01 - 950 - 1.680114e-06 - 443b599d + 21.8786 + -1.301224e+01 + 20575 + -3.843133e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:58:59 + 2025-08-03 14:55:49 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - nb_L2_bessel + nb_L1 SOCP DIMACS - OPTIMAL (INACCURATE) - 37.4555 - -1.025694e-01 + OPTIMAL + 35.2468 + -1.301215e+01 โ - 5.900011e-08 - 443b599d + 2.309264e-14 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:59:46 + 2025-08-03 14:54:51 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 0.7736 - -1.025695e-01 - 19 - 2.612966e-09 + 1.7669 + -1.301227e+01 + 35 + 1.141563e-07 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:58:59 + 2025-07-19 13:58:47 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nb_L2_bessel + nb_L1 SOCP DIMACS OPTIMAL - 0.6094 - -1.025695e-01 - 16 - 1.329222e-08 + 0.8813 + -1.301227e+01 + 18 + 2.974918e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 11:11:04 + 2025-07-19 11:10:53 scipy_linprog scipy-1.15.3 - nb_L2_bessel + nb_L1 SOCP DIMACS UNSUPPORTED @@ -3067,14 +3442,59 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:31:21 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + nb_L2 + SOCP + DIMACS + OPTIMAL + 35.3564 + -1.628972e+00 + 12 + 1.968265e-09 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:58:25 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + nb_L2 + SOCP + DIMACS + OPTIMAL + 41.3180 + -1.628972e+00 + โ + 2.490828e-07 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 14:59:07 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + nb_L2 + SOCP + DIMACS + OPTIMAL + 33.7065 + -1.628972e+00 + 11 + 5.515299e-11 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:59:58 + 2025-08-04 15:31:55 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - nql180 + nb_L2 SOCP DIMACS UNSUPPORTED @@ -3082,14 +3502,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:27:33 + 2025-08-04 15:33:55 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nql180 + nb_L2 SOCP DIMACS UNSUPPORTED @@ -3097,119 +3517,89 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:27:34 + 2025-08-04 15:33:56 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql180 - SOCP - DIMACS - OPTIMAL - 36.7403 - -9.277286e-01 - 58 - 7.801500e-09 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 14:16:46 - - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql180 - SOCP - DIMACS - OPTIMAL - 12.1829 - -9.277237e-01 - 16 - 9.757390e-06 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 12:56:38 - - - scipy_linprog - scipy-1.15.3 - nql180 + cvxpy_scip + unknown + nb_L2 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:27:34 + 2025-08-04 15:33:55 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - nql180old + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + nb_L2 SOCP DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d + OPTIMAL + 40.1457 + -1.628971e+00 + 775 + 1.050011e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:53:35 + 2025-08-03 14:59:48 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - nql180old + cvxpy_sdpa + unknown + nb_L2 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:53:35 + 2025-08-03 14:57:49 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql180old + nb_L2 SOCP DIMACS - UNKNOWN - 84.6976 - 9.277652e-01 - 48 - 3.667969e-05 + OPTIMAL + 0.9697 + -1.628972e+00 + 18 + 1.085572e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:18:27 + 2025-07-19 13:58:52 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql180old + nb_L2 SOCP DIMACS - NUM_ERROR - 29.9804 - 1.705876e+01 - 15 - 1.301594e+01 + OPTIMAL + 0.6029 + -1.628972e+00 + 16 + 6.599223e-10 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:57:22 + 2025-07-19 11:10:58 scipy_linprog scipy-1.15.3 - nql180old + nb_L2 SOCP DIMACS UNSUPPORTED @@ -3217,74 +3607,59 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:53:36 + 2025-08-04 15:33:56 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - nql30 + nb_L2_bessel SOCP DIMACS OPTIMAL - 21.5101 - -9.460281e-01 - 15 - 2.449261e-09 - 443b599d + 16.3127 + -1.025695e-01 + 14 + 1.589562e-13 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:05:58 + 2025-08-04 11:46:58 cvxpy_cvxopt - unknown - nql30 + cvxpy-1.6.5-CVXOPT-1.3.2 + nb_L2_bessel SOCP DIMACS - ERROR - 22.2996 - โ - โ + OPTIMAL + 16.3792 + -1.025695e-01 โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-14 13:06:20 - - - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - nql30 - SOCP - DIMACS - OPTIMAL (INACCURATE) - 21.2980 - -9.460285e-01 - 63 - -7.064005e-11 - 443b599d + 5.487534e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:06:42 + 2025-08-04 11:47:15 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - nql30 + nb_L2_bessel SOCP DIMACS - OPTIMAL (INACCURATE) - 21.1141 - -9.460285e-01 - 63 - -7.064005e-11 - 443b599d + OPTIMAL + 16.7709 + -1.025695e-01 + 13 + 6.804807e-12 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:10:22 + 2025-08-04 15:34:14 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - nql30 + nb_L2_bessel SOCP DIMACS UNSUPPORTED @@ -3292,14 +3667,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:06:42 + 2025-08-04 15:35:05 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nql30 + nb_L2_bessel SOCP DIMACS UNSUPPORTED @@ -3307,89 +3682,89 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:06:42 + 2025-08-04 15:35:06 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - nql30 + nb_L2_bessel SOCP DIMACS OPTIMAL - 57.3900 + 50.6469 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:09:57 + 2025-08-04 15:35:05 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - nql30 + nb_L2_bessel SOCP DIMACS OPTIMAL - 20.9565 - -9.460028e-01 - 475 - -4.627949e-06 - 443b599d + 17.0360 + -1.025694e-01 + 950 + 1.680114e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:08:05 + 2025-08-04 11:47:33 cvxpy_sdpa - unknown - nql30 + cvxpy-1.6.5-SDPA-0.2.2 + nb_L2_bessel SOCP DIMACS - ERROR - 42.3472 - โ - โ + OPTIMAL (INACCURATE) + 38.0311 + -1.025694e-01 โ - 443b599d + 5.900011e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:08:54 + 2025-08-04 11:46:41 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql30 + nb_L2_bessel SOCP DIMACS OPTIMAL - 0.9405 - -9.460285e-01 - 37 - 1.254561e-08 + 0.7736 + -1.025695e-01 + 19 + 2.612966e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:06:39 + 2025-07-19 13:58:59 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql30 + nb_L2_bessel SOCP DIMACS OPTIMAL - 0.4045 - -9.460279e-01 - 15 - 3.222697e-07 + 0.6094 + -1.025695e-01 + 16 + 1.329222e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:47:15 + 2025-07-19 11:11:04 scipy_linprog scipy-1.15.3 - nql30 + nb_L2_bessel SOCP DIMACS UNSUPPORTED @@ -3397,59 +3772,59 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:11:21 + 2025-08-04 15:35:06 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - nql30old + unknown + nql180 SOCP DIMACS - OPTIMAL (INACCURATE) - 27.3507 - 9.460382e-01 - 14 - 1.108632e-05 - 443b599d + SIGKILL + 39.6709 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:29:25 + 2025-08-03 15:11:56 cvxpy_cvxopt unknown - nql30old + nql180 SOCP DIMACS - ERROR - 50.3666 + SIGKILL + 41.0532 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:30:55 + 2025-08-03 15:12:38 cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - nql30old + unknown + nql180 SOCP DIMACS - OPTIMAL - 28.6467 - 9.460285e-01 - 24 - 2.191862e-10 - 443b599d + SIGKILL + 41.5645 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:31:24 + 2025-08-05 13:15:08 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - nql30old + nql180 SOCP DIMACS UNSUPPORTED @@ -3459,12 +3834,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:32:12 + 2025-07-14 13:27:33 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nql30old + nql180 SOCP DIMACS UNSUPPORTED @@ -3474,72 +3849,87 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:32:12 + 2025-07-14 13:27:34 + + + cvxpy_scip + unknown + nql180 + SOCP + DIMACS + SIGKILL + 40.5333 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:15:49 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - nql30old + unknown + nql180 SOCP DIMACS - OPTIMAL - 27.0904 - 9.460313e-01 - 825 - -1.238352e-05 - 443b599d + SIGKILL + 40.4082 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:29:59 + 2025-08-03 15:13:19 cvxpy_sdpa - cvxpy-1.6.5-SDPA-0.2.2 - nql30old + unknown + nql180 SOCP DIMACS - OPTIMAL (INACCURATE) - 54.4172 - 9.907335e-01 + SIGKILL + 55.1006 โ - 5.269336e-02 - 443b599d + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 13:35:18 + 2025-08-03 15:11:16 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql30old + nql180 SOCP DIMACS OPTIMAL - 1.1295 - 9.460289e-01 - 32 - 3.635140e-07 + 36.7403 + -9.277286e-01 + 58 + 7.801500e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:06:44 + 2025-07-19 14:16:46 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql30old + nql180 SOCP DIMACS - NUM_ERROR - 0.7443 - 9.460480e-01 - 18 - 1.264794e-08 + OPTIMAL + 12.1829 + -9.277237e-01 + 16 + 9.757390e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:47:21 + 2025-07-19 12:56:38 scipy_linprog scipy-1.15.3 - nql30old + nql180 SOCP DIMACS UNSUPPORTED @@ -3549,12 +3939,57 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:32:12 + 2025-07-14 13:27:34 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - nql60 + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + nql30 + SOCP + DIMACS + OPTIMAL + 26.7663 + -9.460281e-01 + 15 + 2.449261e-09 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:01:31 + + + cvxpy_cvxopt + unknown + nql30 + SOCP + DIMACS + ERROR + 24.0017 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:01:56 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + nql30 + SOCP + DIMACS + OPTIMAL (INACCURATE) + 21.1141 + -9.460285e-01 + 63 + -7.064005e-11 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-14 13:10:22 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + nql30 SOCP DIMACS UNSUPPORTED @@ -3564,12 +3999,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:16:42 + 2025-07-14 13:06:42 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nql60 + nql30 SOCP DIMACS UNSUPPORTED @@ -3579,42 +4014,87 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:16:42 + 2025-07-14 13:06:42 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + nql30 + SOCP + DIMACS + OPTIMAL + 57.3900 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-14 13:09:57 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + nql30 + SOCP + DIMACS + OPTIMAL + 23.5265 + -9.460028e-01 + 475 + -4.627949e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:02:20 + + + cvxpy_sdpa + unknown + nql30 + SOCP + DIMACS + ERROR + 47.5253 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:01:04 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql60 + nql30 SOCP DIMACS OPTIMAL - 4.5348 - -9.350529e-01 - 42 - 2.139271e-08 + 0.9405 + -9.460285e-01 + 37 + 1.254561e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:16:03 + 2025-07-19 14:06:39 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql60 + nql30 SOCP DIMACS OPTIMAL - 0.9664 - -9.350512e-01 - 14 - 2.684202e-06 + 0.4045 + -9.460279e-01 + 15 + 3.222697e-07 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:56:19 + 2025-07-19 12:47:15 scipy_linprog scipy-1.15.3 - nql60 + nql30 SOCP DIMACS UNSUPPORTED @@ -3624,12 +4104,57 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:16:42 + 2025-07-14 13:11:21 + + + cvxpy_clarabel + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:06:20 + + + cvxpy_cvxopt + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:08:21 + + + cvxpy_ecos + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:53:06 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - nql60old + nql60 SOCP DIMACS UNSUPPORTED @@ -3639,12 +4164,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:46:47 + 2025-07-14 13:16:42 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - nql60old + nql60 SOCP DIMACS UNSUPPORTED @@ -3654,42 +4179,87 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:46:47 + 2025-07-14 13:16:42 + + + cvxpy_scip + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 12:59:31 + + + cvxpy_scs + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:10:21 + + + cvxpy_sdpa + unknown + nql60 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:04:20 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - nql60old + nql60 SOCP DIMACS - UNKNOWN - 5.3272 - 9.350535e-01 - 43 - 5.143074e-07 + OPTIMAL + 4.5348 + -9.350529e-01 + 42 + 2.139271e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:16:57 + 2025-07-19 14:16:03 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - nql60old + nql60 SOCP DIMACS - NUM_ERROR - 3.4915 - 9.351615e-01 - 22 - 1.619015e-08 + OPTIMAL + 0.9664 + -9.350512e-01 + 14 + 2.684202e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:56:46 + 2025-07-19 12:56:19 scipy_linprog scipy-1.15.3 - nql60old + nql60 SOCP DIMACS UNSUPPORTED @@ -3699,22 +4269,7 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 13:46:47 - - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qssp180old - SOCP - DIMACS - NUM_ERROR - 84.5162 - 3.162926e+02 - 5 - 3.123366e+02 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 13:00:13 + 2025-07-14 13:16:42 cvxpy_clarabel @@ -3723,13 +4278,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL - 52.3884 + 52.1299 -6.496675e+00 19 4.401990e-11 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:04:07 + 2025-08-04 11:50:11 cvxpy_cvxopt @@ -3738,13 +4293,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL - 77.0623 + 82.5669 -6.496674e+00 โ -5.892749e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:05:37 + 2025-08-04 11:51:34 cvxpy_ecos @@ -3791,6 +4346,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-14 14:07:41 + + cvxpy_scip + unknown + qssp30 + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:01:31 + cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 @@ -3798,13 +4368,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL - 57.1771 + 58.0423 -6.496663e+00 14375 -3.442923e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:12:59 + 2025-08-04 11:52:33 cvxpy_sdpa @@ -3813,13 +4383,13 @@ ๐ Detailed Results SOCP DIMACS ERROR - 104.9540 + 105.0474 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:14:57 + 2025-08-04 11:49:18 matlab_sdpt3 @@ -3868,93 +4438,48 @@ ๐ Detailed Results cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - qssp30old + unknown + qssp60 SOCP DIMACS - OPTIMAL - 116.9246 - 6.496676e+00 - 19 - 1.337228e-08 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:48:52 + 2025-08-03 15:17:19 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - qssp30old + cvxpy_cvxopt + unknown + qssp60 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-14 14:51:17 - - - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - qssp30old - SOCP - DIMACS - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-14 14:51:17 - - - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qssp30old - SOCP - DIMACS - OPTIMAL - 3.2443 - 6.496676e+00 - 24 - 2.261058e-09 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 14:07:00 - - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qssp30old - SOCP - DIMACS - NUM_ERROR - 1.9425 - 6.524364e+00 - 20 - 5.618965e-02 - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 12:47:34 + 2025-08-03 15:19:19 - scipy_linprog - scipy-1.15.3 - qssp30old + cvxpy_ecos + unknown + qssp60 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:51:17 + 2025-08-05 13:55:06 cvxpy_highs @@ -3987,114 +4512,84 @@ ๐ Detailed Results 2025-07-14 14:24:38 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qssp60 - SOCP - DIMACS - UNKNOWN - 2.3680 - -6.562707e+00 - 24 - 1.625646e-06 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 14:18:35 - - - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qssp60 - SOCP - DIMACS - OPTIMAL - 1.6149 - -6.562697e+00 - 27 - 1.163308e-08 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 12:57:30 - - - scipy_linprog - scipy-1.15.3 + cvxpy_scip + unknown qssp60 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 14:24:38 + 2025-08-05 13:03:31 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - qssp60old + cvxpy_scs + unknown + qssp60 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:21:35 + 2025-08-03 15:21:19 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - qssp60old + cvxpy_sdpa + unknown + qssp60 SOCP DIMACS - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:21:35 + 2025-08-03 15:15:19 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qssp60old + qssp60 SOCP DIMACS - OPTIMAL - 32.2715 - 6.562707e+00 - 27 - 1.983662e-07 + UNKNOWN + 2.3680 + -6.562707e+00 + 24 + 1.625646e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:20:24 + 2025-07-19 14:18:35 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qssp60old + qssp60 SOCP DIMACS - NUM_ERROR - 7.3427 - 8.254139e+00 - 13 - 2.510713e+00 + OPTIMAL + 1.6149 + -6.562697e+00 + 27 + 1.163308e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:58:42 + 2025-07-19 12:57:30 scipy_linprog scipy-1.15.3 - qssp60old + qssp60 SOCP DIMACS UNSUPPORTED @@ -4104,7 +4599,7 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-14 15:21:35 + 2025-07-14 14:24:38 cvxpy_clarabel @@ -4113,13 +4608,28 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 1.0301 + 0.9232 7.173680e+05 29 8.972094e-05 - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:00:16 + + + cvxpy_cvxopt + unknown + sched_100_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 22:24:34 + 2025-08-04 12:02:16 cvxpy_ecos @@ -4166,6 +4676,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-14 22:24:44 + + cvxpy_scip + unknown + sched_100_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:22:38 + cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 @@ -4173,13 +4698,28 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 69.6901 + 69.4116 1.426694e+06 100000 6.332423e+02 - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:03:26 + + + cvxpy_sdpa + unknown + sched_100_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 22:28:41 + 2025-08-04 12:00:14 matlab_sdpt3 @@ -4226,6 +4766,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-14 22:24:44 + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + sched_100_100_scaled + SOCP + DIMACS + OPTIMAL (INACCURATE) + 0.8149 + 2.733079e+01 + 27 + 8.313350e-13 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:23:21 + + + cvxpy_cvxopt + unknown + sched_100_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:25:21 + + + cvxpy_ecos + unknown + sched_100_100_scaled + SOCP + DIMACS + ERROR + 1.6578 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:55:08 + cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 @@ -4256,6 +4841,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 09:33:21 + + cvxpy_scip + unknown + sched_100_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:49:05 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + sched_100_100_scaled + SOCP + DIMACS + OPTIMAL (INACCURATE) + 70.4793 + 2.743253e+01 + 100000 + 2.465889e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:26:33 + + + cvxpy_sdpa + unknown + sched_100_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-03 15:23:20 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -4308,13 +4938,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 0.3953 + 0.3930 1.818899e+05 30 4.543064e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:50:18 + 2025-08-04 11:55:55 cvxpy_cvxopt @@ -4323,13 +4953,13 @@ ๐ Detailed Results SOCP DIMACS ERROR - 108.7561 + 99.6453 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:52:07 + 2025-08-04 11:57:36 cvxpy_ecos @@ -4376,6 +5006,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-14 15:52:20 + + cvxpy_scip + unknown + sched_100_50_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:20:38 + cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 @@ -4383,13 +5028,28 @@ ๐ Detailed Results SOCP DIMACS UNBOUNDED (INACCURATE) - 38.6428 + 37.7517 โ 100000 โ - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 11:58:14 + + + cvxpy_sdpa + unknown + sched_100_50_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:52:59 + 2025-08-04 11:55:54 matlab_sdpt3 @@ -4443,13 +5103,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL - 0.3411 + 0.3935 6.716503e+01 28 1.020339e-11 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 09:27:58 + 2025-08-04 12:13:46 cvxpy_cvxopt @@ -4457,14 +5117,14 @@ ๐ Detailed Results sched_100_50_scaled SOCP DIMACS - ERROR - 89.2142 + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 09:29:28 + 2025-08-04 12:15:46 cvxpy_ecos @@ -4511,6 +5171,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 09:30:07 + + cvxpy_scip + unknown + sched_100_50_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:47:05 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + sched_100_50_scaled + SOCP + DIMACS + OPTIMAL (INACCURATE) + 39.4944 + 6.719516e+01 + 100000 + 5.801998e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:16:27 + + + cvxpy_sdpa + unknown + sched_100_50_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:13:45 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -4563,13 +5268,28 @@ ๐ Detailed Results SOCP DIMACS ERROR - 4.7007 + 3.7139 โ โ โ - 443b599d + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:05:31 + + + cvxpy_cvxopt + unknown + sched_200_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 05:49:21 + 2025-08-04 12:07:31 cvxpy_ecos @@ -4616,6 +5336,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 05:52:52 + + cvxpy_scip + unknown + sched_200_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:24:39 + + + cvxpy_scs + unknown + sched_200_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:09:32 + + + cvxpy_sdpa + unknown + sched_200_100_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:05:27 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -4661,6 +5426,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 05:52:52 + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + sched_200_100_scaled + SOCP + DIMACS + OPTIMAL (INACCURATE) + 3.0633 + 5.181196e+01 + 27 + 1.470823e-12 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:18:32 + + + cvxpy_cvxopt + unknown + sched_200_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:20:32 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + sched_200_100_scaled + SOCP + DIMACS + OPTIMAL (INACCURATE) + 5.0868 + 9.381516e+01 + 60 + -6.504129e-08 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:55:15 + cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 @@ -4691,6 +5501,51 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 09:34:32 + + cvxpy_scip + unknown + sched_200_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:51:05 + + + cvxpy_scs + unknown + sched_200_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:22:32 + + + cvxpy_sdpa + unknown + sched_200_100_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 12:18:27 + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) @@ -4743,13 +5598,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 0.1522 + 0.1500 2.667300e+04 29 -1.677108e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:41:56 + 2025-08-04 11:53:12 cvxpy_cvxopt @@ -4758,13 +5613,13 @@ ๐ Detailed Results SOCP DIMACS ERROR - 23.2838 + 22.9040 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:42:19 + 2025-08-04 11:53:35 cvxpy_ecos @@ -4811,6 +5666,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-14 15:42:19 + + cvxpy_scip + unknown + sched_50_50_orig + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:18:38 + cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 @@ -4818,13 +5688,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 18.2832 + 17.8512 3.580949e+04 100000 -2.596394e+02 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:46:34 + 2025-08-04 11:53:54 cvxpy_sdpa @@ -4833,13 +5703,13 @@ ๐ Detailed Results SOCP DIMACS INFEASIBLE - 36.9821 + 37.0863 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-14 15:47:26 + 2025-08-04 11:53:11 matlab_sdpt3 @@ -4893,13 +5763,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 0.1252 + 0.1479 7.852038e+00 26 8.881784e-15 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 05:57:19 + 2025-08-04 12:10:58 cvxpy_cvxopt @@ -4908,13 +5778,13 @@ ๐ Detailed Results SOCP DIMACS ERROR - 18.3780 + 27.3363 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 05:57:38 + 2025-08-04 12:11:26 cvxpy_ecos @@ -4961,6 +5831,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 05:58:08 + + cvxpy_scip + unknown + sched_50_50_scaled + SOCP + DIMACS + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 13:45:05 + cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 @@ -4968,13 +5853,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 18.6645 + 18.6894 7.852068e+00 100000 -5.452853e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 05:57:57 + 2025-08-04 12:11:45 cvxpy_sdpa @@ -4983,13 +5868,13 @@ ๐ Detailed Results SOCP DIMACS OPTIMAL (INACCURATE) - 78.0842 + 84.6623 7.852039e+00 โ -5.446000e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 06:05:24 + 2025-08-04 12:10:57 matlab_sdpt3 @@ -5037,308 +5922,83 @@ ๐ Detailed Results 2025-07-16 06:03:59 - matlab_sdpt3 - unknown - biomedP - UNKNOWN - DIMACS - ERROR - โ - โ - โ + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + arch0 + SDP + SDPLIB + OPTIMAL + 8.2009 + -5.665173e-01 + 22 + -3.421520e-10 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 13:54:17 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + arch0 + SDP + SDPLIB + OPTIMAL + 9.0650 + -5.665173e-01 โ - 96ca0437 + -1.268382e-10 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:59:03 + 2025-08-04 13:54:27 - matlab_sedumi - unknown - biomedP - UNKNOWN - DIMACS - ERROR + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + arch0 + SDP + SDPLIB + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 11:12:08 + 2025-07-16 10:17:22 - matlab_sedumi - unknown - fap36 - UNKNOWN - DIMACS - ERROR + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + arch0 + SDP + SDPLIB + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:47:07 + 2025-07-16 10:17:22 - cvxpy_clarabel - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + arch0 + SDP + SDPLIB + UNSUPPORTED + โ โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_cvxopt - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_ecos - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_highs - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_osqp - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 + 2025-07-16 10:17:22 cvxpy_scip - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_scs - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - cvxpy_sdpa - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:09 - - - matlab_sdpt3 - unknown - industry2 - UNKNOWN - DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 13:59:08 - - - matlab_sedumi - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 4.2789 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:17 - - - matlab_sedumi - unknown - industry2 - UNKNOWN - DIMACS - ERROR - โ - โ - โ - โ - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 11:12:13 - - - scipy_linprog - unknown - industry2 - UNKNOWN - DIMACS - ERROR - 0.0000 - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-13 14:08:17 - - - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - arch0 - SDP - SDPLIB - OPTIMAL - 8.2069 - -5.665173e-01 - 22 - -3.421520e-10 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:12:17 - - - cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - arch0 - SDP - SDPLIB - OPTIMAL - 8.4387 - -5.665173e-01 - โ - -1.268382e-10 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-16 10:17:22 - - - cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - arch0 - SDP - SDPLIB - OPTIMAL - 8.3867 - -5.665173e-01 - โ - -1.268382e-10 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:12:25 - - - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - arch0 - SDP - SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-16 10:17:22 - - - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - arch0 - SDP - SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-16 10:17:22 - - - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 + cvxpy-1.6.5-SCIP-5.5.0 arch0 SDP SDPLIB @@ -5352,19 +6012,19 @@ ๐ Detailed Results 2025-07-16 10:17:22 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 + cvxpy_scs + unknown arch0 SDP SDPLIB - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:17:22 + 2025-08-04 13:56:27 cvxpy_sdpa @@ -5373,13 +6033,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 3.5877 + 3.5686 -5.665173e-01 โ 5.766852e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:21:23 + 2025-08-04 13:54:08 matlab_sdpt3 @@ -5388,13 +6048,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 1.8912 + 1.6936 -5.665173e-01 26 3.178414e-09 - 96ca0437 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 14:00:06 + 2025-07-22 16:08:58 matlab_sedumi @@ -5433,13 +6093,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 5.1509 + 5.3541 -6.715154e-01 24 -2.053869e-10 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:22:51 + 2025-08-04 13:56:37 cvxpy_cvxopt @@ -5448,13 +6108,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 7.6467 + 7.8506 -6.715154e-01 โ -7.313050e-11 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:22:59 + 2025-08-04 13:56:46 cvxpy_ecos @@ -5516,6 +6176,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:23:13 + + cvxpy_scs + unknown + arch2 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 13:58:46 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -5523,13 +6198,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 3.7066 + 3.9591 -6.715150e-01 โ 4.599756e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:23:03 + 2025-08-04 13:56:31 matlab_sdpt3 @@ -5583,13 +6258,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 4.8659 + 4.9688 -9.726274e-01 20 -7.505416e-10 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:26:32 + 2025-08-04 13:58:56 cvxpy_cvxopt @@ -5598,13 +6273,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 7.3402 + 7.2850 -9.726274e-01 โ -5.753642e-10 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:26:40 + 2025-08-04 13:59:04 cvxpy_ecos @@ -5666,6 +6341,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:26:40 + + cvxpy_scs + unknown + arch4 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:01:04 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -5673,13 +6363,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 3.6738 + 3.6847 -9.726273e-01 โ 1.754581e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:26:44 + 2025-08-04 13:58:50 matlab_sdpt3 @@ -5733,13 +6423,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 5.2114 + 5.1614 -7.056986e+00 24 -2.496496e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:28:09 + 2025-08-04 14:01:14 cvxpy_cvxopt @@ -5748,13 +6438,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 8.0976 + 8.1750 -7.056980e+00 โ -2.110218e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:28:17 + 2025-08-04 14:01:23 cvxpy_ecos @@ -5816,6 +6506,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 10:28:28 + + cvxpy_scs + unknown + arch8 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:03:23 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -5823,13 +6528,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 3.7247 + 3.7702 -7.056980e+00 โ 1.274881e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:28:21 + 2025-08-04 14:01:08 matlab_sdpt3 @@ -5883,13 +6588,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.0144 + 0.0145 -1.805769e+01 56 -1.518135e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:30:38 + 2025-08-04 14:03:24 cvxpy_cvxopt @@ -5898,13 +6603,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 0.1695 + 0.1641 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:30:40 + 2025-08-04 14:03:24 cvxpy_ecos @@ -5973,13 +6678,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 0.9244 + 0.9191 -2.878233e-03 100000 2.047778e+01 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:30:39 + 2025-08-04 14:03:26 cvxpy_sdpa @@ -5988,13 +6693,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.0117 + 0.0114 -1.778463e+01 โ 9.556358e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:30:40 + 2025-08-04 14:03:23 matlab_sdpt3 @@ -6048,13 +6753,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 56.1580 + 58.7432 -3.853311e+01 44 -3.595549e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:13:49 + 2025-08-04 14:58:53 cvxpy_cvxopt @@ -6063,13 +6768,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 27.1507 + 31.4171 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:14:51 + 2025-08-04 14:59:27 cvxpy_ecos @@ -6131,6 +6836,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:14:15 + + cvxpy_scs + unknown + control10 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:01:28 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -6138,13 +6858,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 11.4824 + 11.5823 -3.853288e+01 โ 1.955557e-04 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:14:01 + 2025-08-04 14:57:53 matlab_sdpt3 @@ -6191,6 +6911,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:14:15 + + cvxpy_clarabel + unknown + control11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:03:49 + cvxpy_cvxopt unknown @@ -6198,13 +6933,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 38.3472 + 43.2286 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:20:14 + 2025-08-04 15:04:35 cvxpy_ecos @@ -6266,6 +7001,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:19:27 + + cvxpy_scs + unknown + control11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:06:36 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -6273,13 +7023,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 17.3845 + 17.9481 -3.195851e+01 โ 1.946588e-04 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:19:11 + 2025-08-04 15:01:48 matlab_sdpt3 @@ -6333,13 +7083,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.0503 + 0.0506 -8.300001e+00 25 -3.757695e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:32:02 + 2025-08-04 14:45:51 cvxpy_cvxopt @@ -6348,13 +7098,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 0.1693 + 0.1698 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:32:07 + 2025-08-04 14:45:52 cvxpy_ecos @@ -6423,13 +7173,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 4.8820 + 4.8752 -1.966667e-03 100000 1.661141e+00 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:32:07 + 2025-08-04 14:45:57 cvxpy_sdpa @@ -6438,13 +7188,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.0375 + 0.0355 -8.299999e+00 โ 5.617627e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:32:07 + 2025-08-04 14:45:51 matlab_sdpt3 @@ -6498,13 +7248,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.2282 + 0.2301 -1.363327e+01 29 -3.222068e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:33:05 + 2025-08-04 14:45:59 cvxpy_cvxopt @@ -6513,13 +7263,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 0.3842 + 0.3478 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:33:19 + 2025-08-04 14:46:00 cvxpy_ecos @@ -6588,13 +7338,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 14.1029 + 14.1002 -3.773583e-02 100000 2.351563e-01 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:33:19 + 2025-08-04 14:46:14 cvxpy_sdpa @@ -6603,13 +7353,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 0.1596 + 0.1613 -1.363326e+01 โ 3.145210e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:33:20 + 2025-08-04 14:45:58 matlab_sdpt3 @@ -6663,13 +7413,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 0.8667 + 0.8591 -1.979423e+01 32 -3.190352e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:34:14 + 2025-08-04 14:46:17 cvxpy_cvxopt @@ -6678,13 +7428,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 1.2851 + 1.2683 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:34:44 + 2025-08-04 14:46:19 cvxpy_ecos @@ -6753,13 +7503,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 27.7016 + 28.0451 -2.563906e-03 100000 2.110372e+00 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:34:42 + 2025-08-04 14:46:48 cvxpy_sdpa @@ -6768,13 +7518,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 0.3332 + 0.3364 -1.979423e+01 โ 5.778276e-06 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:34:44 + 2025-08-04 14:46:15 matlab_sdpt3 @@ -6828,13 +7578,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 2.2983 + 2.2632 -1.688365e+01 35 -4.087493e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:35:41 + 2025-08-04 14:46:52 cvxpy_cvxopt @@ -6843,13 +7593,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 2.2808 + 2.0964 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:36:37 + 2025-08-04 14:46:55 cvxpy_ecos @@ -6918,13 +7668,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 53.7872 + 53.7048 -1.780790e-01 100000 5.467576e-02 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:36:35 + 2025-08-04 14:47:49 cvxpy_sdpa @@ -6933,13 +7683,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 0.6724 + 0.6715 -1.688358e+01 โ 2.958617e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:36:39 + 2025-08-04 14:46:49 matlab_sdpt3 @@ -6993,13 +7743,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 5.7788 + 5.6728 -3.730447e+01 42 -6.555268e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:50:59 + 2025-08-04 14:47:58 cvxpy_cvxopt @@ -7008,13 +7758,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 4.9762 + 4.2641 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:50:18 + 2025-08-04 14:48:03 cvxpy_ecos @@ -7083,13 +7833,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 92.8074 + 91.9072 -5.214729e-01 100000 4.939949e-01 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:50:12 + 2025-08-04 14:49:36 cvxpy_sdpa @@ -7098,13 +7848,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 1.3344 + 1.3168 -3.730435e+01 โ 8.949376e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 10:51:01 + 2025-08-04 14:47:51 matlab_sdpt3 @@ -7136,6 +7886,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-19 12:44:24 + + scipy_linprog + scipy-1.15.3 + control6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:40:55 + cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 @@ -7143,13 +7908,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 10.6456 + 10.4147 -2.062508e+01 39 -8.645202e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:01:51 + 2025-08-04 14:49:51 cvxpy_cvxopt @@ -7158,13 +7923,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 8.1021 + 8.0961 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:02:09 + 2025-08-04 14:50:00 cvxpy_ecos @@ -7226,6 +7991,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:04:12 + + cvxpy_scs + unknown + control7 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:52:00 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -7233,13 +8013,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 2.5579 + 2.5043 -2.062505e+01 โ 2.495872e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:01:53 + 2025-08-04 14:49:40 matlab_sdpt3 @@ -7293,13 +8073,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 19.9969 + 19.3016 -2.028637e+01 40 -1.201698e-07 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:05:50 + 2025-08-04 14:52:26 cvxpy_cvxopt @@ -7308,13 +8088,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 12.6408 + 11.9858 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:06:26 + 2025-08-04 14:52:40 cvxpy_ecos @@ -7376,6 +8156,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:06:03 + + cvxpy_scs + unknown + control8 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:54:40 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -7383,13 +8178,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 4.0786 + 4.0156 -2.028632e+01 โ 5.698142e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:05:55 + 2025-08-04 14:52:06 matlab_sdpt3 @@ -7443,13 +8238,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 29.0599 + 29.2631 -1.467543e+01 35 -6.315624e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:10:34 + 2025-08-04 14:55:19 cvxpy_cvxopt @@ -7458,13 +8253,13 @@ ๐ Detailed Results SDP SDPLIB ERROR - 17.6462 + 18.0550 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:11:20 + 2025-08-04 14:55:39 cvxpy_ecos @@ -7526,6 +8321,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:10:52 + + cvxpy_scs + unknown + control9 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:57:39 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -7533,13 +8343,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL (INACCURATE) - 6.4581 + 6.5528 -1.467540e+01 โ 2.910812e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:10:41 + 2025-08-04 14:54:48 matlab_sdpt3 @@ -7586,6 +8396,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:10:52 + + cvxpy_clarabel + unknown + equalG11 + SDP + SDPLIB + SIGKILL + 32.2937 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:08:01 + + + cvxpy_cvxopt + unknown + equalG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:10:02 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -7646,6 +8486,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-18 16:17:53 + + cvxpy_scs + unknown + equalG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:12:02 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -7653,13 +8508,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 51.4591 + 50.8600 -6.291553e+02 โ 2.716283e-05 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:26:15 + 2025-08-04 15:07:28 matlab_sdpt3 @@ -7706,6 +8561,36 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-18 16:17:54 + + cvxpy_clarabel + unknown + equalG51 + SDP + SDPLIB + SIGKILL + 36.0378 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:14:20 + + + cvxpy_cvxopt + unknown + equalG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:16:20 + cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 @@ -7766,6 +8651,21 @@ ๐ Detailed Results Darwin (8CPU, 24GB) 2025-07-16 11:33:11 + + cvxpy_scs + unknown + equalG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:18:21 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 @@ -7773,13 +8673,13 @@ ๐ Detailed Results SDP SDPLIB OPTIMAL - 97.7746 + 98.0002 -4.005601e+03 โ 1.263933e-04 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:32:58 + 2025-08-04 15:13:43 matlab_sdpt3 @@ -7829,37 +8729,37 @@ ๐ Detailed Results cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf1 + gpp100 SDP SDPLIB OPTIMAL - 0.0056 - -2.032668e+00 - 27 - -5.983141e-09 - 443b599d + 24.4204 + 4.494352e+01 + 26 + 2.336012e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:01 + 2025-08-04 12:40:10 cvxpy_cvxopt - unknown - hinf1 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp100 SDP SDPLIB - ERROR - 0.0538 - โ - โ + OPTIMAL + 1.3194 + 4.494352e+01 โ - 443b599d + 6.784762e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:01 + 2025-08-04 12:40:12 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf1 + gpp100 SDP SDPLIB UNSUPPORTED @@ -7867,14 +8767,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:13 + 2025-08-05 12:30:58 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf1 + gpp100 SDP SDPLIB UNSUPPORTED @@ -7882,14 +8782,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:13 + 2025-08-05 12:31:00 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf1 + gpp100 SDP SDPLIB UNSUPPORTED @@ -7897,14 +8797,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:13 + 2025-08-05 12:31:01 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf1 + gpp100 SDP SDPLIB UNSUPPORTED @@ -7912,74 +8812,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:13 + 2025-08-05 12:30:59 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - hinf1 + gpp100 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.5455 - -2.034026e+00 - 100000 - -1.606785e-04 - 443b599d + OPTIMAL + 20.5949 + 4.494370e+01 + 19450 + -1.980334e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:02 + 2025-08-04 12:40:33 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf1 + gpp100 SDP SDPLIB OPTIMAL - 0.0085 - -2.032616e+00 + 0.4166 + 4.494355e+01 โ - 0.000000e+00 - 443b599d + 2.664786e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:02 + 2025-08-04 12:39:45 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf1 + gpp100 SDP SDPLIB - UNKNOWN - 0.3722 - -2.032730e+00 - 22 - 5.098327e-05 - 96ca0437 + OPTIMAL + 0.4444 + 4.494355e+01 + 14 + 9.921287e-07 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 14:02:34 + 2025-07-22 15:51:34 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf1 + gpp100 SDP SDPLIB NUM_ERROR - 0.3809 - -2.032703e+00 - 24 - 4.529411e-05 - 96ca0437 + 0.7722 + 4.494352e+01 + 21 + 1.488228e-04 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:38:35 + 2025-07-22 15:44:53 scipy_linprog scipy-1.15.3 - hinf1 + gpp100 SDP SDPLIB UNSUPPORTED @@ -7987,44 +8887,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:55:13 + 2025-08-05 12:31:02 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf10 + gpp124-1 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0065 - -1.087874e+02 - 24 - -5.735941e-06 - 443b599d + OPTIMAL + 73.5324 + 7.343057e+00 + 30 + 5.199553e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:22:57 + 2025-08-04 12:41:48 cvxpy_cvxopt - unknown - hinf10 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp124-1 SDP SDPLIB - ERROR - 0.0597 - โ - โ + OPTIMAL + 2.9412 + 7.343069e+00 โ - 443b599d + -1.303448e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:22:57 + 2025-08-04 12:41:52 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf10 + gpp124-1 SDP SDPLIB UNSUPPORTED @@ -8032,14 +8932,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:23:11 + 2025-08-05 12:32:08 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf10 + gpp124-1 SDP SDPLIB UNSUPPORTED @@ -8047,14 +8947,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:23:11 + 2025-08-05 12:32:10 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf10 + gpp124-1 SDP SDPLIB UNSUPPORTED @@ -8062,14 +8962,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:23:11 + 2025-08-05 12:32:11 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf10 + gpp124-1 SDP SDPLIB UNSUPPORTED @@ -8077,74 +8977,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:23:11 + 2025-08-05 12:32:09 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf10 + unknown + gpp124-1 SDP SDPLIB - OPTIMAL - 0.7690 - -1.096707e+02 - 97050 - -6.193458e-04 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:22:57 + 2025-08-04 12:43:52 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf10 + gpp124-1 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0124 - -1.088635e+02 + 0.6314 + 7.343080e+00 โ - -7.673795e-02 - 443b599d + 3.410490e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:22:57 + 2025-08-04 12:40:34 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf10 + gpp124-1 SDP SDPLIB - UNKNOWN - 0.3654 - -1.087683e+02 - 23 - 9.877239e-03 - 96ca0437 + OPTIMAL + 0.5800 + 7.343075e+00 + 17 + 4.910737e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:23 + 2025-07-22 15:41:10 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf10 + gpp124-1 SDP SDPLIB NUM_ERROR - 0.3626 - -1.087599e+02 - 24 - 8.675357e-03 - 96ca0437 + 1.0113 + 7.343040e+00 + 23 + 2.831557e-04 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:24 + 2025-07-22 15:44:59 scipy_linprog scipy-1.15.3 - hinf10 + gpp124-1 SDP SDPLIB UNSUPPORTED @@ -8152,44 +9052,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:23:11 + 2025-08-05 12:32:12 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf11 + gpp124-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0097 - -6.590991e+01 - 25 - -9.621966e-06 - 443b599d + OPTIMAL + 69.6970 + 4.686226e+01 + 28 + 3.367301e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:14 + 2025-08-04 12:45:03 cvxpy_cvxopt - unknown - hinf11 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp124-2 SDP SDPLIB - ERROR - 0.0675 - โ - โ + OPTIMAL + 2.4338 + 4.686227e+01 โ - 443b599d + 5.548235e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:14 + 2025-08-04 12:45:06 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf11 + gpp124-2 SDP SDPLIB UNSUPPORTED @@ -8197,14 +9097,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:48 + 2025-08-05 12:32:13 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf11 + gpp124-2 SDP SDPLIB UNSUPPORTED @@ -8212,14 +9112,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:48 + 2025-08-05 12:32:15 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf11 + gpp124-2 SDP SDPLIB UNSUPPORTED @@ -8227,14 +9127,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:48 + 2025-08-05 12:32:15 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf11 + gpp124-2 SDP SDPLIB UNSUPPORTED @@ -8242,74 +9142,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:48 + 2025-08-05 12:32:14 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf11 + unknown + gpp124-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 1.2248 - -6.703265e+01 - 100000 - -9.015038e-02 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:15 + 2025-08-04 12:47:06 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf11 + gpp124-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0127 - -6.596092e+01 + OPTIMAL + 0.6150 + 4.686230e+01 โ - -4.885726e-02 - 443b599d + 3.345806e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:15 + 2025-08-04 12:43:53 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf11 + gpp124-2 SDP SDPLIB - UNKNOWN - 0.4292 - -6.591623e+01 - 25 - 2.282379e-02 - 96ca0437 + OPTIMAL + 0.5534 + 4.686229e+01 + 15 + 4.714758e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:29 + 2025-07-22 15:41:15 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf11 + gpp124-2 SDP SDPLIB NUM_ERROR - 0.3755 - -6.588284e+01 - 26 - 2.743780e-03 - 96ca0437 + 1.0674 + 4.686230e+01 + 23 + 9.581227e-06 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:30 + 2025-07-22 15:45:05 scipy_linprog scipy-1.15.3 - hinf11 + gpp124-2 SDP SDPLIB UNSUPPORTED @@ -8317,44 +9217,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 15:24:48 + 2025-08-05 12:32:16 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf12_sdp + gpp124-3 SDP SDPLIB OPTIMAL - 0.0175 - -3.243363e-05 - 44 - -1.054678e-09 - 443b599d + 66.1656 + 1.530141e+02 + 27 + 1.215611e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:25 + 2025-08-04 12:48:14 cvxpy_cvxopt - unknown - hinf12_sdp + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp124-3 SDP SDPLIB - ERROR - 0.3970 - โ - โ + OPTIMAL + 2.3795 + 1.530141e+02 โ - 443b599d + 1.858366e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:26 + 2025-08-04 12:48:17 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf12_sdp + gpp124-3 SDP SDPLIB UNSUPPORTED @@ -8362,14 +9262,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:36 + 2025-08-05 12:32:17 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf12_sdp + gpp124-3 SDP SDPLIB UNSUPPORTED @@ -8377,14 +9277,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:36 + 2025-08-05 12:32:19 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf12_sdp + gpp124-3 SDP SDPLIB UNSUPPORTED @@ -8392,14 +9292,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:36 + 2025-08-05 12:32:20 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf12_sdp + gpp124-3 SDP SDPLIB UNSUPPORTED @@ -8407,74 +9307,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:37 + 2025-08-05 12:32:18 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf12_sdp + unknown + gpp124-3 SDP SDPLIB - OPTIMAL (INACCURATE) - 1.8517 - -1.566089e+00 - 100000 - -1.511645e-02 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:28 + 2025-08-04 12:50:17 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf12_sdp + gpp124-3 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0134 - -2.628462e+01 + OPTIMAL + 0.6218 + 1.530141e+02 โ - -2.306586e+01 - 443b599d + 1.330394e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:28 + 2025-08-04 12:47:08 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf12_sdp + gpp124-3 SDP SDPLIB - UNKNOWN - 0.5893 - -2.257156e-05 - 61 - 7.000564e-06 - 96ca0437 + OPTIMAL + 0.5226 + 1.530141e+02 + 14 + 1.550277e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:34 + 2025-07-22 15:41:21 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf12_sdp + gpp124-3 SDP SDPLIB - OPTIMAL - 0.3087 - -1.179123e-01 - 29 - 1.885370e-02 - 96ca0437 + NUM_ERROR + 1.3415 + 1.530141e+02 + 23 + 1.224848e-05 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:35 + 2025-07-22 15:45:12 scipy_linprog scipy-1.15.3 - hinf12_sdp + gpp124-3 SDP SDPLIB UNSUPPORTED @@ -8482,44 +9382,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:48:37 + 2025-08-05 12:32:21 cvxpy_clarabel - unknown - hinf13_sdp + cvxpy-1.6.5-CLARABEL-0.11.0 + gpp124-4 SDP SDPLIB - ERROR - 0.0145 - โ - โ - โ - 443b599d + OPTIMAL + 95.0749 + 4.189875e+02 + 32 + 9.484276e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:39 + 2025-08-04 12:51:54 cvxpy_cvxopt - unknown - hinf13_sdp + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp124-4 SDP SDPLIB - ERROR - 0.0835 - โ - โ + OPTIMAL + 2.8320 + 4.189875e+02 โ - 443b599d + 1.396031e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:39 + 2025-08-04 12:51:58 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf13_sdp + gpp124-4 SDP SDPLIB UNSUPPORTED @@ -8527,14 +9427,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:49 + 2025-08-05 12:32:22 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf13_sdp + gpp124-4 SDP SDPLIB UNSUPPORTED @@ -8542,14 +9442,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:49 + 2025-08-05 12:32:24 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf13_sdp + gpp124-4 SDP SDPLIB UNSUPPORTED @@ -8557,14 +9457,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:49 + 2025-08-05 12:32:25 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf13_sdp + gpp124-4 SDP SDPLIB UNSUPPORTED @@ -8572,74 +9472,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:49 + 2025-08-05 12:32:23 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf13_sdp + unknown + gpp124-4 SDP SDPLIB - OPTIMAL (INACCURATE) - 2.7371 - -3.033855e+01 - 100000 - -5.516264e-04 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:42 + 2025-08-04 12:53:58 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf13_sdp + gpp124-4 SDP SDPLIB - INFEASIBLE - 0.0122 - โ - โ + OPTIMAL + 0.6178 + 4.189876e+02 โ - 443b599d + 9.955271e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:42 + 2025-08-04 12:50:18 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf13_sdp + gpp124-4 SDP SDPLIB - UNKNOWN - 0.5202 - -4.436055e+01 - 31 - 7.811813e-03 - 96ca0437 + OPTIMAL + 0.7190 + 4.189876e+02 + 15 + 1.534988e-05 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:40 + 2025-07-22 15:41:27 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf13_sdp + gpp124-4 SDP SDPLIB NUM_ERROR - 0.3435 - -4.498783e+01 - 16 - 2.527025e-01 - 96ca0437 + 1.2991 + 4.189878e+02 + 25 + 6.114823e-05 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:41 + 2025-07-22 15:45:19 scipy_linprog scipy-1.15.3 - hinf13_sdp + gpp124-4 SDP SDPLIB UNSUPPORTED @@ -8647,44 +9547,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:50:49 + 2025-08-05 12:32:26 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf14 + unknown + gpp250-1 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0299 - -1.299162e+01 - 25 - -1.845475e-07 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:12 + 2025-08-04 12:56:02 cvxpy_cvxopt - unknown - hinf14 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp250-1 SDP SDPLIB - ERROR - 0.1548 - โ - โ + OPTIMAL + 14.7271 + 1.544490e+01 โ - 443b599d + 3.827613e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:12 + 2025-08-04 12:56:18 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf14 + gpp250-1 SDP SDPLIB UNSUPPORTED @@ -8692,14 +9592,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:26 + 2025-08-05 12:32:27 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf14 + gpp250-1 SDP SDPLIB UNSUPPORTED @@ -8707,14 +9607,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:26 + 2025-08-05 12:32:29 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf14 + gpp250-1 SDP SDPLIB UNSUPPORTED @@ -8722,14 +9622,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:26 + 2025-08-05 12:32:30 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf14 + gpp250-1 SDP SDPLIB UNSUPPORTED @@ -8737,74 +9637,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:26 + 2025-08-05 12:32:28 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf14 + unknown + gpp250-1 SDP SDPLIB - OPTIMAL - 0.2602 - -1.301669e+01 - 7350 - -1.720073e-05 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:12 + 2025-08-04 12:58:18 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf14 + gpp250-1 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0181 - -1.297713e+01 + 2.7382 + 1.544661e+01 โ - 2.510862e-02 - 443b599d + 1.699120e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:13 + 2025-08-04 12:54:01 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf14 + gpp250-1 SDP SDPLIB UNKNOWN - 0.5132 - -1.298996e+01 - 31 - 2.587007e-05 - 96ca0437 + 1.3053 + 1.544492e+01 + 18 + 4.570066e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:46 + 2025-07-22 15:41:33 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf14 + gpp250-1 SDP SDPLIB NUM_ERROR - 0.4244 - -1.299443e+01 - 24 - 5.751181e-04 - 96ca0437 + 3.5782 + 1.544488e+01 + 25 + 1.447415e-04 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:47 + 2025-07-22 15:45:27 scipy_linprog scipy-1.15.3 - hinf14 + gpp250-1 SDP SDPLIB UNSUPPORTED @@ -8812,44 +9712,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:52:26 + 2025-08-05 12:32:31 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf15 + unknown + gpp250-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0334 - -2.482380e+01 - 19 - -1.561378e-04 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:23 + 2025-08-04 13:00:23 cvxpy_cvxopt - unknown - hinf15 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp250-2 SDP SDPLIB - ERROR - 0.1206 - โ - โ + OPTIMAL + 15.7327 + 8.186893e+01 โ - 443b599d + 1.185204e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:23 + 2025-08-04 13:00:39 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf15 + gpp250-2 SDP SDPLIB UNSUPPORTED @@ -8857,14 +9757,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:37 + 2025-08-05 12:32:32 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf15 + gpp250-2 SDP SDPLIB UNSUPPORTED @@ -8872,14 +9772,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:37 + 2025-08-05 12:32:34 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf15 + gpp250-2 SDP SDPLIB UNSUPPORTED @@ -8887,14 +9787,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:37 + 2025-08-05 12:32:35 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf15 + gpp250-2 SDP SDPLIB UNSUPPORTED @@ -8902,74 +9802,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:37 + 2025-08-05 12:32:33 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf15 + unknown + gpp250-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 4.8169 - -6.535900e+00 - 100000 - -1.611087e-04 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 11:53:28 + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 13:02:39 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf15 + gpp250-2 SDP SDPLIB - INFEASIBLE - 0.0186 - โ - โ + OPTIMAL + 2.7719 + 8.186896e+01 โ - 443b599d + 2.765425e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:28 + 2025-08-04 12:58:21 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf15 + gpp250-2 SDP SDPLIB - UNKNOWN - 0.5514 - -2.398784e+01 - 29 - 1.326282e-02 - 96ca0437 + OPTIMAL + 1.0700 + 8.186896e+01 + 16 + 1.385511e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:52 + 2025-07-22 15:41:41 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf15 + gpp250-2 SDP SDPLIB NUM_ERROR - 0.3234 - -2.483998e+01 - 16 - 6.250582e-01 - 96ca0437 + 3.7947 + 8.186902e+01 + 25 + 4.288530e-04 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:52 + 2025-07-22 15:45:36 scipy_linprog scipy-1.15.3 - hinf15 + gpp250-2 SDP SDPLIB UNSUPPORTED @@ -8977,44 +9877,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:53:37 + 2025-08-05 12:32:36 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf2 + unknown + gpp250-3 SDP SDPLIB - OPTIMAL - 0.0051 - -1.096760e+01 - 17 - -5.680853e-08 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:35 + 2025-08-04 13:04:44 cvxpy_cvxopt - unknown - hinf2 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp250-3 SDP SDPLIB - ERROR - 0.0372 - โ - โ + OPTIMAL + 14.4653 + 3.035393e+02 โ - 443b599d + 2.847260e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:35 + 2025-08-04 13:04:59 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf2 + gpp250-3 SDP SDPLIB UNSUPPORTED @@ -9022,14 +9922,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:53 + 2025-08-05 12:32:37 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf2 + gpp250-3 SDP SDPLIB UNSUPPORTED @@ -9037,14 +9937,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:53 + 2025-08-05 12:32:39 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf2 + gpp250-3 SDP SDPLIB UNSUPPORTED @@ -9052,14 +9952,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:53 + 2025-08-05 12:32:40 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf2 + gpp250-3 SDP SDPLIB UNSUPPORTED @@ -9067,74 +9967,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:53 + 2025-08-05 12:32:38 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf2 + unknown + gpp250-3 SDP SDPLIB - OPTIMAL - 0.4676 - -1.095601e+01 - 74125 - -3.051206e-05 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:36 + 2025-08-04 13:06:59 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf2 + gpp250-3 SDP SDPLIB OPTIMAL - 0.0090 - -1.096706e+01 + 2.7532 + 3.035393e+02 โ - 1.776357e-15 - 443b599d + 1.043291e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:36 + 2025-08-04 13:02:43 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf2 + gpp250-3 SDP SDPLIB - UNKNOWN - 0.3056 - -1.096925e+01 + OPTIMAL + 1.0687 + 3.035393e+02 15 - 1.100493e-03 - 96ca0437 + 3.165784e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:02:40 + 2025-07-22 15:41:48 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf2 + gpp250-3 SDP SDPLIB NUM_ERROR - 0.2912 - -1.096725e+01 - 18 - 3.190084e-05 - 96ca0437 + 4.0215 + 3.035393e+02 + 26 + 9.131295e-04 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:38:40 + 2025-07-22 15:45:46 scipy_linprog scipy-1.15.3 - hinf2 + gpp250-3 SDP SDPLIB UNSUPPORTED @@ -9142,44 +10042,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:57:53 + 2025-08-05 12:32:41 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf3 + unknown + gpp250-4 SDP SDPLIB - OPTIMAL - 0.0055 - -5.695458e+01 - 21 - -7.088310e-08 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:27 + 2025-08-04 13:09:04 cvxpy_cvxopt - unknown - hinf3 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp250-4 SDP SDPLIB - ERROR - 0.0408 - โ - โ + OPTIMAL + 14.8353 + 7.473282e+02 โ - 443b599d + 3.022269e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:27 + 2025-08-04 13:09:20 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf3 + gpp250-4 SDP SDPLIB UNSUPPORTED @@ -9187,14 +10087,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:37 + 2025-08-05 12:32:43 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf3 + gpp250-4 SDP SDPLIB UNSUPPORTED @@ -9202,14 +10102,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:37 + 2025-08-05 12:32:45 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf3 + gpp250-4 SDP SDPLIB UNSUPPORTED @@ -9217,14 +10117,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:37 + 2025-08-05 12:32:46 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf3 + gpp250-4 SDP SDPLIB UNSUPPORTED @@ -9232,74 +10132,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:37 + 2025-08-05 12:32:44 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf3 + unknown + gpp250-4 SDP SDPLIB - OPTIMAL - 0.0536 - -5.695291e+01 - 7875 - -3.346276e-04 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:27 + 2025-08-04 13:11:20 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf3 + gpp250-4 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0095 - -5.694602e+01 + OPTIMAL + 2.7318 + 7.473283e+02 โ - -2.608644e-03 - 443b599d + 1.145546e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:27 + 2025-08-04 13:07:03 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf3 + gpp250-4 SDP SDPLIB OPTIMAL - 0.3676 - -5.696786e+01 - 20 - 1.353149e-02 - 96ca0437 + 0.9968 + 7.473283e+02 + 14 + 8.683713e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:02:45 + 2025-07-22 15:41:54 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf3 + gpp250-4 SDP SDPLIB NUM_ERROR - 0.2846 - -5.694167e+01 - 18 - 5.037431e-03 - 96ca0437 + 3.3964 + 7.473286e+02 + 24 + 5.703929e-06 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:38:46 + 2025-07-22 15:45:55 scipy_linprog scipy-1.15.3 - hinf3 + gpp250-4 SDP SDPLIB UNSUPPORTED @@ -9307,44 +10207,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-16 11:35:37 + 2025-08-05 12:32:47 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf4 + unknown + gpp500-1 SDP SDPLIB - OPTIMAL - 0.0055 - -2.747658e+02 - 22 - -1.086951e-07 - 443b599d + SIGKILL + 28.5375 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:42 + 2025-08-04 13:12:04 cvxpy_cvxopt - unknown - hinf4 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp500-1 SDP SDPLIB - ERROR - 0.0526 - โ - โ + OPTIMAL + 117.9682 + 2.532053e+01 โ - 443b599d + 2.954251e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:42 + 2025-08-04 13:14:04 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf4 + gpp500-1 SDP SDPLIB UNSUPPORTED @@ -9352,14 +10252,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:51 + 2025-08-05 12:32:48 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf4 + gpp500-1 SDP SDPLIB UNSUPPORTED @@ -9367,14 +10267,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:51 + 2025-08-05 12:32:52 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf4 + gpp500-1 SDP SDPLIB UNSUPPORTED @@ -9382,14 +10282,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:51 + 2025-08-05 12:32:53 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf4 + gpp500-1 SDP SDPLIB UNSUPPORTED @@ -9397,74 +10297,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:51 + 2025-08-05 12:32:50 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf4 + unknown + gpp500-1 SDP SDPLIB - OPTIMAL - 0.0510 - -2.748170e+02 - 7175 - 5.325187e-04 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:42 + 2025-08-04 13:16:04 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf4 + gpp500-1 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0100 - -2.747643e+02 + OPTIMAL + 14.7587 + 2.532054e+01 โ - -1.815545e-04 - 443b599d + 1.079669e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:42 + 2025-08-04 13:11:36 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf4 + gpp500-1 SDP SDPLIB - MAX_ITER - 0.3484 - -2.747657e+02 - 21 - 9.511062e-04 - 96ca0437 + NUM_ERROR + 2.9479 + 2.532055e+01 + 22 + 2.430755e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:02:51 + 2025-07-22 15:42:04 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf4 + gpp500-1 SDP SDPLIB - OPTIMAL - 0.3486 - -2.747640e+02 - 27 - 8.773852e-06 - 96ca0437 + NUM_ERROR + 15.3771 + 2.532063e+01 + 28 + 2.297520e-03 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:38:51 + 2025-07-22 15:46:18 scipy_linprog scipy-1.15.3 - hinf4 + gpp500-1 SDP SDPLIB UNSUPPORTED @@ -9472,44 +10372,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:58:51 + 2025-08-05 12:32:55 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf5 + unknown + gpp500-2 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0061 - -3.624299e+02 - 18 - -3.269039e-04 - 443b599d + SIGKILL + 28.7456 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:59:50 + 2025-08-04 13:16:49 cvxpy_cvxopt - unknown - hinf5 + cvxpy-1.6.5-CVXOPT-1.3.2 + gpp500-2 SDP SDPLIB - ERROR - 0.0458 - โ - โ + OPTIMAL + 114.0492 + 1.560604e+02 โ - 443b599d + 1.133138e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:59:50 + 2025-08-04 13:18:44 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf5 + gpp500-2 SDP SDPLIB UNSUPPORTED @@ -9517,14 +10417,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:00:00 + 2025-08-05 12:32:56 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf5 + gpp500-2 SDP SDPLIB UNSUPPORTED @@ -9532,14 +10432,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:00:00 + 2025-08-05 12:32:59 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf5 + gpp500-2 SDP SDPLIB UNSUPPORTED @@ -9547,14 +10447,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:00:00 + 2025-08-05 12:33:01 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf5 + gpp500-2 SDP SDPLIB UNSUPPORTED @@ -9562,74 +10462,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:00:00 + 2025-08-05 12:32:58 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf5 + unknown + gpp500-2 SDP SDPLIB - OPTIMAL - 0.0822 - -3.209234e+02 - 13300 - 1.537852e-03 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:59:50 + 2025-08-04 13:20:44 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf5 + gpp500-2 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0089 - -3.630884e+02 + 14.8963 + 1.560604e+02 โ - -4.352485e-01 - 443b599d + 5.431513e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 11:59:50 + 2025-08-04 13:16:20 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf5 + gpp500-2 SDP SDPLIB - UNKNOWN - 0.3070 - -3.628408e+02 - 16 - 2.944352e-01 - 96ca0437 + OPTIMAL + 2.7828 + 1.560604e+02 + 18 + 2.725487e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:02:56 + 2025-07-22 15:42:15 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf5 + gpp500-2 SDP SDPLIB NUM_ERROR - 0.2958 - -3.621390e+02 - 19 - 6.030036e-02 - 96ca0437 + 15.8420 + 1.560607e+02 + 27 + 4.713789e-03 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:38:57 + 2025-07-22 15:46:41 scipy_linprog scipy-1.15.3 - hinf5 + gpp500-2 SDP SDPLIB UNSUPPORTED @@ -9637,44 +10537,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:00:00 + 2025-08-05 12:33:02 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - hinf6 + unknown + gpp500-3 SDP SDPLIB - OPTIMAL - 0.0055 - -4.489502e+02 - 23 - -3.112008e-06 - 443b599d + SIGKILL + 30.8091 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:31 + 2025-08-04 13:21:32 cvxpy_cvxopt unknown - hinf6 + gpp500-3 SDP SDPLIB - ERROR - 0.0551 + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:31 + 2025-08-04 13:23:32 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf6 + gpp500-3 SDP SDPLIB UNSUPPORTED @@ -9682,14 +10582,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:41 + 2025-08-05 12:33:04 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf6 + gpp500-3 SDP SDPLIB UNSUPPORTED @@ -9697,14 +10597,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:41 + 2025-08-05 12:33:07 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf6 + gpp500-3 SDP SDPLIB UNSUPPORTED @@ -9712,14 +10612,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:41 + 2025-08-05 12:33:09 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf6 + gpp500-3 SDP SDPLIB UNSUPPORTED @@ -9727,74 +10627,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:41 + 2025-08-05 12:33:06 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf6 + unknown + gpp500-3 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.6322 - -2.459011e+02 - 100000 - -4.376018e-02 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:32 + 2025-08-04 13:25:32 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf6 + gpp500-3 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0113 - -4.489788e+02 + OPTIMAL + 14.9477 + 5.130176e+02 โ - -2.308969e-02 - 443b599d + 9.670139e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:32 + 2025-08-04 13:21:00 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf6 + gpp500-3 SDP SDPLIB - MAX_ITER - 0.3866 - -4.489485e+02 - 26 - 1.058239e-02 - 96ca0437 + OPTIMAL + 2.2795 + 5.130176e+02 + 16 + 7.010860e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:02 + 2025-07-22 15:42:26 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf6 + gpp500-3 SDP SDPLIB NUM_ERROR - 0.3450 - -4.489387e+02 - 23 - 1.306223e-03 - 96ca0437 + 18.1657 + 5.130181e+02 + 27 + 1.350092e-06 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:02 + 2025-07-22 15:47:06 scipy_linprog scipy-1.15.3 - hinf6 + gpp500-3 SDP SDPLIB UNSUPPORTED @@ -9802,44 +10702,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:02:41 + 2025-08-05 12:33:10 cvxpy_clarabel unknown - hinf7 + gpp500-4 SDP SDPLIB - ERROR - 0.0051 + SIGKILL + 30.2128 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:23 + 2025-08-04 13:26:19 cvxpy_cvxopt unknown - hinf7 + gpp500-4 SDP SDPLIB - ERROR - 0.0392 + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:23 + 2025-08-04 13:28:19 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf7 + gpp500-4 SDP SDPLIB UNSUPPORTED @@ -9847,14 +10747,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:32 + 2025-08-05 12:33:12 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf7 + gpp500-4 SDP SDPLIB UNSUPPORTED @@ -9862,14 +10762,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:32 + 2025-08-05 12:33:15 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf7 + gpp500-4 SDP SDPLIB UNSUPPORTED @@ -9877,14 +10777,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:32 + 2025-08-05 12:33:17 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf7 + gpp500-4 SDP SDPLIB UNSUPPORTED @@ -9892,74 +10792,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:32 + 2025-08-05 12:33:14 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - hinf7 + unknown + gpp500-4 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.6557 - -3.893250e+02 - 100000 - -1.837412e-02 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 12:03:24 - + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 13:30:19 + cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf7 + gpp500-4 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0078 - -3.862730e+02 + OPTIMAL + 15.0223 + 1.567019e+03 โ - 7.844985e+00 - 443b599d + 6.746857e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:24 + 2025-08-04 13:25:48 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf7 + gpp500-4 SDP SDPLIB OPTIMAL - 0.3210 - -3.908268e+02 - 19 - 7.254617e-03 - 96ca0437 + 2.6421 + 1.567019e+03 + 17 + 3.394041e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:03:07 + 2025-07-22 15:42:37 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf7 + gpp500-4 SDP SDPLIB NUM_ERROR - 0.3002 - -3.904187e+02 - 20 - 1.447412e+00 - 96ca0437 + 15.8195 + 1.567019e+03 + 26 + 7.217041e-03 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:39:08 + 2025-07-22 15:47:28 scipy_linprog scipy-1.15.3 - hinf7 + gpp500-4 SDP SDPLIB UNSUPPORTED @@ -9967,44 +10867,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 12:03:32 + 2025-08-05 12:33:18 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf8 + hinf1 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0065 - -1.161624e+02 - 29 - -3.169690e-07 + OPTIMAL + 0.0056 + -2.032668e+00 + 27 + -5.983141e-09 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:07 + 2025-07-18 11:55:01 cvxpy_cvxopt unknown - hinf8 + hinf1 SDP SDPLIB ERROR - 0.0365 + 0.0538 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:07 + 2025-07-18 11:55:01 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf8 + hinf1 SDP SDPLIB UNSUPPORTED @@ -10014,12 +10914,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:25 + 2025-07-18 11:55:13 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf8 + hinf1 SDP SDPLIB UNSUPPORTED @@ -10029,12 +10929,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:25 + 2025-07-18 11:55:13 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf8 + hinf1 SDP SDPLIB UNSUPPORTED @@ -10044,12 +10944,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:25 + 2025-07-18 11:55:13 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf8 + hinf1 SDP SDPLIB UNSUPPORTED @@ -10059,72 +10959,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:25 + 2025-07-18 11:55:13 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - hinf8 + hinf1 SDP SDPLIB - OPTIMAL - 0.2218 - -1.134663e+02 - 33450 - 1.035981e-03 + OPTIMAL (INACCURATE) + 0.5455 + -2.034026e+00 + 100000 + -1.606785e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:07 + 2025-07-18 11:55:02 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf8 + hinf1 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.0086 - -1.161808e+02 + OPTIMAL + 0.0085 + -2.032616e+00 โ - -7.871024e-03 + 0.000000e+00 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:07 + 2025-07-18 11:55:02 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf8 + hinf1 SDP SDPLIB - MAX_ITER - 0.3581 - -1.161891e+02 - 21 - 2.143125e-02 + UNKNOWN + 0.3722 + -2.032730e+00 + 22 + 5.098327e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:03:13 + 2025-07-19 14:02:34 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf8 + hinf1 SDP SDPLIB NUM_ERROR - 0.3128 - -1.161480e+02 - 18 - 3.670388e-04 + 0.3809 + -2.032703e+00 + 24 + 4.529411e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:39:13 + 2025-07-19 12:38:35 scipy_linprog scipy-1.15.3 - hinf8 + hinf1 SDP SDPLIB UNSUPPORTED @@ -10134,42 +11034,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:21:25 + 2025-07-18 11:55:13 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - hinf9 + hinf10 SDP SDPLIB - OPTIMAL - 0.0063 - -2.362493e+02 - 27 - -2.111383e-06 + OPTIMAL (INACCURATE) + 0.0065 + -1.087874e+02 + 24 + -5.735941e-06 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:05 + 2025-07-16 15:22:57 cvxpy_cvxopt unknown - hinf9 + hinf10 SDP SDPLIB ERROR - 0.0758 + 0.0597 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:05 + 2025-07-16 15:22:57 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - hinf9 + hinf10 SDP SDPLIB UNSUPPORTED @@ -10179,12 +11079,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:23 + 2025-07-16 15:23:11 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - hinf9 + hinf10 SDP SDPLIB UNSUPPORTED @@ -10194,12 +11094,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:23 + 2025-07-16 15:23:11 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - hinf9 + hinf10 SDP SDPLIB UNSUPPORTED @@ -10209,12 +11109,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:23 + 2025-07-16 15:23:11 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - hinf9 + hinf10 SDP SDPLIB UNSUPPORTED @@ -10224,72 +11124,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:23 + 2025-07-16 15:23:11 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - hinf9 + hinf10 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.6299 - -2.399599e+01 - 100000 - -2.629195e-01 + OPTIMAL + 0.7690 + -1.096707e+02 + 97050 + -6.193458e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:06 + 2025-07-16 15:22:57 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - hinf9 + hinf10 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0273 - -2.362493e+02 + 0.0124 + -1.088635e+02 โ - -4.034887e-05 + -7.673795e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:06 + 2025-07-16 15:22:57 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - hinf9 + hinf10 SDP SDPLIB UNKNOWN - 0.3678 - -2.362493e+02 + 0.3654 + -1.087683e+02 23 - 3.178988e-06 + 9.877239e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:03:19 + 2025-07-19 14:03:23 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - hinf9 + hinf10 SDP SDPLIB - OPTIMAL - 0.3177 - -2.362474e+02 - 26 - 8.438180e-05 + NUM_ERROR + 0.3626 + -1.087599e+02 + 24 + 8.675357e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:39:19 + 2025-07-19 12:39:24 scipy_linprog scipy-1.15.3 - hinf9 + hinf10 SDP SDPLIB UNSUPPORTED @@ -10299,42 +11199,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-16 15:22:23 + 2025-07-16 15:23:11 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - infd1 + hinf11 SDP SDPLIB - UNBOUNDED - 0.0719 - โ - 9 - โ + OPTIMAL (INACCURATE) + 0.0097 + -6.590991e+01 + 25 + -9.621966e-06 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:46 + 2025-07-16 15:24:14 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - infd1 + unknown + hinf11 SDP SDPLIB - UNBOUNDED - 0.0514 + ERROR + 0.0675 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:46 + 2025-07-16 15:24:14 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - infd1 + hinf11 SDP SDPLIB UNSUPPORTED @@ -10344,12 +11244,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:55 + 2025-07-16 15:24:48 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - infd1 + hinf11 SDP SDPLIB UNSUPPORTED @@ -10359,12 +11259,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:55 + 2025-07-16 15:24:48 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - infd1 + hinf11 SDP SDPLIB UNSUPPORTED @@ -10374,12 +11274,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:55 + 2025-07-16 15:24:48 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - infd1 + hinf11 SDP SDPLIB UNSUPPORTED @@ -10389,72 +11289,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:55 + 2025-07-16 15:24:48 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - infd1 + hinf11 SDP SDPLIB - UNBOUNDED - 0.0097 - โ - 75 - โ + OPTIMAL (INACCURATE) + 1.2248 + -6.703265e+01 + 100000 + -9.015038e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:46 + 2025-07-16 15:24:15 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - infd1 + hinf11 SDP SDPLIB - UNBOUNDED - 0.0084 - โ - โ + OPTIMAL (INACCURATE) + 0.0127 + -6.596092e+01 โ + -4.885726e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:46 + 2025-07-16 15:24:15 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - infd1 + hinf11 SDP SDPLIB - INFEASIBLE - 0.7416 - -4.257208e+00 - 11 - 5.257208e+00 + UNKNOWN + 0.4292 + -6.591623e+01 + 25 + 2.282379e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:00:33 + 2025-07-19 14:03:29 matlab_sedumi - SeDuMi-1.3.7 (MATLAB unknown) - infd1 + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + hinf11 SDP SDPLIB - ERROR - โ - โ - โ - โ + NUM_ERROR + 0.3755 + -6.588284e+01 + 26 + 2.743780e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:39:58 + 2025-07-19 12:39:30 scipy_linprog scipy-1.15.3 - infd1 + hinf11 SDP SDPLIB UNSUPPORTED @@ -10464,42 +11364,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:04:55 + 2025-07-16 15:24:48 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - infd2 + hinf12_sdp SDP SDPLIB - UNBOUNDED - 0.0782 - โ - 9 - โ + OPTIMAL + 0.0175 + -3.243363e-05 + 44 + -1.054678e-09 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:35 + 2025-07-18 11:48:25 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - infd2 + unknown + hinf12_sdp SDP SDPLIB - UNBOUNDED - 0.0500 + ERROR + 0.3970 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:35 + 2025-07-18 11:48:26 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - infd2 + hinf12_sdp SDP SDPLIB UNSUPPORTED @@ -10509,12 +11409,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:46 + 2025-07-18 11:48:36 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - infd2 + hinf12_sdp SDP SDPLIB UNSUPPORTED @@ -10524,12 +11424,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:46 + 2025-07-18 11:48:36 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - infd2 + hinf12_sdp SDP SDPLIB UNSUPPORTED @@ -10539,12 +11439,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:46 + 2025-07-18 11:48:36 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - infd2 + hinf12_sdp SDP SDPLIB UNSUPPORTED @@ -10554,72 +11454,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:46 + 2025-07-18 11:48:37 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - infd2 + hinf12_sdp SDP SDPLIB - UNBOUNDED - 0.0077 - โ - 50 - โ + OPTIMAL (INACCURATE) + 1.8517 + -1.566089e+00 + 100000 + -1.511645e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:35 + 2025-07-18 11:48:28 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - infd2 + hinf12_sdp SDP SDPLIB - UNBOUNDED - 0.0083 - โ - โ + OPTIMAL (INACCURATE) + 0.0134 + -2.628462e+01 โ + -2.306586e+01 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:35 + 2025-07-18 11:48:28 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - infd2 + hinf12_sdp SDP SDPLIB - INFEASIBLE - 0.3288 - 5.260014e+00 - 11 - 4.260014e+00 + UNKNOWN + 0.5893 + -2.257156e-05 + 61 + 7.000564e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:00:39 + 2025-07-19 14:03:34 matlab_sedumi - SeDuMi-1.3.7 (MATLAB unknown) - infd2 + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + hinf12_sdp SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 0.3087 + -1.179123e-01 + 29 + 1.885370e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:03 + 2025-07-19 12:39:35 scipy_linprog scipy-1.15.3 - infd2 + hinf12_sdp SDP SDPLIB UNSUPPORTED @@ -10629,42 +11529,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:05:46 + 2025-07-18 11:48:37 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - infp1 + unknown + hinf13_sdp SDP SDPLIB - INFEASIBLE (INACCURATE) - 0.0586 + ERROR + 0.0145 + โ โ - 6 โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:29 + 2025-07-18 11:50:39 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - infp1 + unknown + hinf13_sdp SDP SDPLIB - INFEASIBLE - 0.0354 + ERROR + 0.0835 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:29 + 2025-07-18 11:50:39 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - infp1 + hinf13_sdp SDP SDPLIB UNSUPPORTED @@ -10674,12 +11574,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:40 + 2025-07-18 11:50:49 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - infp1 + hinf13_sdp SDP SDPLIB UNSUPPORTED @@ -10689,12 +11589,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:40 + 2025-07-18 11:50:49 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - infp1 + hinf13_sdp SDP SDPLIB UNSUPPORTED @@ -10704,12 +11604,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:40 + 2025-07-18 11:50:49 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - infp1 + hinf13_sdp SDP SDPLIB UNSUPPORTED @@ -10719,72 +11619,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:40 + 2025-07-18 11:50:49 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - infp1 + hinf13_sdp SDP SDPLIB - INFEASIBLE - 0.0063 - โ - 50 - โ + OPTIMAL (INACCURATE) + 2.7371 + -3.033855e+01 + 100000 + -5.516264e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:29 + 2025-07-18 11:50:42 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - infp1 + hinf13_sdp SDP SDPLIB INFEASIBLE - 0.0100 + 0.0122 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:29 + 2025-07-18 11:50:42 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - infp1 + hinf13_sdp SDP SDPLIB - UNBOUNDED - 0.6761 - -1.000000e+00 + UNKNOWN + 0.5202 + -4.436055e+01 31 - 8.565045e+00 + 7.811813e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:00:44 + 2025-07-19 14:03:40 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - infp1 + hinf13_sdp SDP SDPLIB - UNBOUNDED - 0.1814 - -1.000000e+00 - 7 - 1.000000e+00 + NUM_ERROR + 0.3435 + -4.498783e+01 + 16 + 2.527025e-01 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:09 + 2025-07-19 12:39:41 scipy_linprog scipy-1.15.3 - infp1 + hinf13_sdp SDP SDPLIB UNSUPPORTED @@ -10794,42 +11694,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:06:40 + 2025-07-18 11:50:49 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - infp2 + hinf14 SDP SDPLIB - INFEASIBLE (INACCURATE) - 0.0571 - โ - 6 - โ + OPTIMAL (INACCURATE) + 0.0299 + -1.299162e+01 + 25 + -1.845475e-07 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:27 + 2025-07-18 11:52:12 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - infp2 + unknown + hinf14 SDP SDPLIB - INFEASIBLE - 0.0355 + ERROR + 0.1548 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:27 + 2025-07-18 11:52:12 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - infp2 + hinf14 SDP SDPLIB UNSUPPORTED @@ -10839,12 +11739,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:39 + 2025-07-18 11:52:26 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - infp2 + hinf14 SDP SDPLIB UNSUPPORTED @@ -10854,12 +11754,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:39 + 2025-07-18 11:52:26 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - infp2 + hinf14 SDP SDPLIB UNSUPPORTED @@ -10869,12 +11769,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:39 + 2025-07-18 11:52:26 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - infp2 + hinf14 SDP SDPLIB UNSUPPORTED @@ -10884,72 +11784,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:39 + 2025-07-18 11:52:26 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - infp2 + hinf14 SDP SDPLIB - INFEASIBLE - 0.0065 - โ - 50 - โ + OPTIMAL + 0.2602 + -1.301669e+01 + 7350 + -1.720073e-05 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:27 + 2025-07-18 11:52:12 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - infp2 + hinf14 SDP SDPLIB - INFEASIBLE - 0.0105 - โ - โ + OPTIMAL (INACCURATE) + 0.0181 + -1.297713e+01 โ + 2.510862e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:27 + 2025-07-18 11:52:13 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - infp2 + hinf14 SDP SDPLIB - UNBOUNDED - 0.7090 - -1.000000e+00 + UNKNOWN + 0.5132 + -1.298996e+01 31 - 6.565880e+00 + 2.587007e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:00:50 + 2025-07-19 14:03:46 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - infp2 + hinf14 SDP SDPLIB - UNBOUNDED - 0.1987 - -1.000000e+00 - 11 - 1.000000e+00 + NUM_ERROR + 0.4244 + -1.299443e+01 + 24 + 5.751181e-04 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:14 + 2025-07-19 12:39:47 scipy_linprog scipy-1.15.3 - infp2 + hinf14 SDP SDPLIB UNSUPPORTED @@ -10959,42 +11859,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:07:39 + 2025-07-18 11:52:26 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - maxG11 + hinf15 SDP SDPLIB - OPTIMAL - 5.7804 - -6.291648e+02 - 16 - -6.255050e-10 + OPTIMAL (INACCURATE) + 0.0334 + -2.482380e+01 + 19 + -1.561378e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:10:33 + 2025-07-18 11:53:23 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - maxG11 + unknown + hinf15 SDP SDPLIB - OPTIMAL - 228.5533 - -6.291648e+02 + ERROR + 0.1206 + โ + โ โ - -1.680974e-09 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:16:28 + 2025-07-18 11:53:23 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - maxG11 + hinf15 SDP SDPLIB UNSUPPORTED @@ -11004,12 +11904,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:37:04 + 2025-07-18 11:53:37 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - maxG11 + hinf15 SDP SDPLIB UNSUPPORTED @@ -11019,12 +11919,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:37:04 + 2025-07-18 11:53:37 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - maxG11 + hinf15 SDP SDPLIB UNSUPPORTED @@ -11034,12 +11934,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:37:04 + 2025-07-18 11:53:37 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - maxG11 + hinf15 SDP SDPLIB UNSUPPORTED @@ -11049,57 +11949,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:37:05 + 2025-07-18 11:53:37 - cvxpy_sdpa - cvxpy-1.6.5-SDPA-0.2.2 - maxG11 - SDP - SDPLIB - OPTIMAL - 6.6351 - -6.291648e+02 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + hinf15 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 4.8169 + -6.535900e+00 + 100000 + -1.611087e-04 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:53:28 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + hinf15 + SDP + SDPLIB + INFEASIBLE + 0.0186 + โ + โ โ - 2.182897e-05 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:36:57 + 2025-07-18 11:53:28 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - maxG11 + hinf15 SDP SDPLIB - OPTIMAL - 2.3639 - -6.291648e+02 - 15 - 6.031657e-06 + UNKNOWN + 0.5514 + -2.398784e+01 + 29 + 1.326282e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:07:14 + 2025-07-19 14:03:52 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - maxG11 + hinf15 SDP SDPLIB - OPTIMAL - 18.2137 - -6.291648e+02 + NUM_ERROR + 0.3234 + -2.483998e+01 16 - 7.732069e-09 + 6.250582e-01 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:48:02 + 2025-07-19 12:39:52 scipy_linprog scipy-1.15.3 - maxG11 + hinf15 SDP SDPLIB UNSUPPORTED @@ -11109,12 +12024,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:37:05 + 2025-07-18 11:53:37 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + hinf2 + SDP + SDPLIB + OPTIMAL + 0.0051 + -1.096760e+01 + 17 + -5.680853e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:57:35 + + + cvxpy_cvxopt + unknown + hinf2 + SDP + SDPLIB + ERROR + 0.0372 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:57:35 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - maxG32 + hinf2 SDP SDPLIB UNSUPPORTED @@ -11124,12 +12069,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:48:51 + 2025-07-18 11:57:53 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - maxG32 + hinf2 SDP SDPLIB UNSUPPORTED @@ -11139,12 +12084,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:48:52 + 2025-07-18 11:57:53 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - maxG32 + hinf2 SDP SDPLIB UNSUPPORTED @@ -11154,12 +12099,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:48:52 + 2025-07-18 11:57:53 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - maxG32 + hinf2 SDP SDPLIB UNSUPPORTED @@ -11169,42 +12114,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:48:52 + 2025-07-18 11:57:53 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + hinf2 + SDP + SDPLIB + OPTIMAL + 0.4676 + -1.095601e+01 + 74125 + -3.051206e-05 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:57:36 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + hinf2 + SDP + SDPLIB + OPTIMAL + 0.0090 + -1.096706e+01 + โ + 1.776357e-15 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:57:36 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - maxG32 + hinf2 SDP SDPLIB - OPTIMAL - 15.4569 - -1.567640e+03 - 16 - 1.011464e-05 + UNKNOWN + 0.3056 + -1.096925e+01 + 15 + 1.100493e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:09:36 + 2025-07-19 14:02:40 matlab_sedumi - unknown - maxG32 + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + hinf2 SDP SDPLIB - TIMEOUT - 300.0000 - โ - โ - โ - 443b599d + NUM_ERROR + 0.2912 + -1.096725e+01 + 18 + 3.190084e-05 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-18 12:48:12 + 2025-07-19 12:38:40 scipy_linprog scipy-1.15.3 - maxG32 + hinf2 SDP SDPLIB UNSUPPORTED @@ -11214,12 +12189,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:48:53 + 2025-07-18 11:57:53 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + hinf3 + SDP + SDPLIB + OPTIMAL + 0.0054 + -5.695458e+01 + 21 + -7.088310e-08 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:18:22 + + + cvxpy_cvxopt + unknown + hinf3 + SDP + SDPLIB + ERROR + 0.0418 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:18:23 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - maxG51 + hinf3 SDP SDPLIB UNSUPPORTED @@ -11229,12 +12234,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:54:43 + 2025-07-16 11:35:37 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - maxG51 + hinf3 SDP SDPLIB UNSUPPORTED @@ -11244,12 +12249,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:54:43 + 2025-07-16 11:35:37 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - maxG51 + hinf3 SDP SDPLIB UNSUPPORTED @@ -11259,12 +12264,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:54:43 + 2025-07-16 11:35:37 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - maxG51 + hinf3 SDP SDPLIB UNSUPPORTED @@ -11274,87 +12279,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:54:44 + 2025-07-16 11:35:37 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - maxG51 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + hinf3 SDP SDPLIB OPTIMAL - 5.4330 - -4.006256e+03 - 17 - 2.123661e-06 - 96ca0437 + 0.0536 + -5.695291e+01 + 7875 + -3.346276e-04 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:26:27 + 2025-08-04 15:18:23 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - maxG51 + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + hinf3 SDP SDPLIB - OPTIMAL - 43.0098 - -4.006255e+03 - 22 - 1.140552e-07 - 96ca0437 + OPTIMAL (INACCURATE) + 0.0086 + -5.694602e+01 + โ + -2.608644e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:01:57 + 2025-08-04 15:18:22 - scipy_linprog - scipy-1.15.3 - maxG51 + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + hinf3 SDP SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 12:54:44 - - - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - maxG55 - SDP - SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d + OPTIMAL + 0.3676 + -5.696786e+01 + 20 + 1.353149e-02 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-18 12:56:59 + 2025-07-19 14:02:45 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - maxG55 + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + hinf3 SDP SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d + NUM_ERROR + 0.2846 + -5.694167e+01 + 18 + 5.037431e-03 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-18 12:57:00 + 2025-07-19 12:38:46 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - maxG55 + scipy_linprog + scipy-1.15.3 + hinf3 SDP SDPLIB UNSUPPORTED @@ -11364,57 +12354,57 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:57:00 + 2025-07-16 11:35:37 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - maxG55 + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + hinf4 SDP SDPLIB - UNSUPPORTED - โ - โ - โ - โ + OPTIMAL + 0.0055 + -2.747658e+02 + 22 + -1.086951e-07 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:57:01 + 2025-07-18 11:58:42 - matlab_sdpt3 + cvxpy_cvxopt unknown - maxG55 + hinf4 SDP SDPLIB ERROR + 0.0526 โ โ โ - โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:27:12 + 2025-07-18 11:58:42 - matlab_sedumi - unknown - maxG55 + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + hinf4 SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:02:41 + 2025-07-18 11:58:51 - scipy_linprog - scipy-1.15.3 - maxG55 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + hinf4 SDP SDPLIB UNSUPPORTED @@ -11424,12 +12414,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:57:02 + 2025-07-18 11:58:51 - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - maxG60 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + hinf4 SDP SDPLIB UNSUPPORTED @@ -11439,12 +12429,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:59:22 + 2025-07-18 11:58:51 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - maxG60 + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + hinf4 SDP SDPLIB UNSUPPORTED @@ -11454,72 +12444,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:59:24 + 2025-07-18 11:58:51 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - maxG60 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + hinf4 SDP SDPLIB - UNSUPPORTED - โ - โ - โ - โ + OPTIMAL + 0.0510 + -2.748170e+02 + 7175 + 5.325187e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:59:25 + 2025-07-18 11:58:42 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - maxG60 + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + hinf4 SDP SDPLIB - UNSUPPORTED - โ - โ - โ + OPTIMAL (INACCURATE) + 0.0100 + -2.747643e+02 โ + -1.815545e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:59:27 + 2025-07-18 11:58:42 matlab_sdpt3 - unknown - maxG60 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + hinf4 SDP SDPLIB - ERROR - โ - โ - โ - โ + MAX_ITER + 0.3484 + -2.747657e+02 + 21 + 9.511062e-04 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:27:58 + 2025-07-19 14:02:51 matlab_sedumi - unknown - maxG60 + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + hinf4 SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 0.3486 + -2.747640e+02 + 27 + 8.773852e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:03:25 + 2025-07-19 12:38:51 scipy_linprog scipy-1.15.3 - maxG60 + hinf4 SDP SDPLIB UNSUPPORTED @@ -11529,42 +12519,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 12:59:28 + 2025-07-18 11:58:51 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - qap10 + hinf5 SDP SDPLIB - OPTIMAL - 25.7932 - 1.092598e+03 - 26 - -9.162909e-08 + OPTIMAL (INACCURATE) + 0.0061 + -3.624299e+02 + 18 + -3.269039e-04 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:11:11 + 2025-07-18 11:59:50 cvxpy_cvxopt unknown - qap10 + hinf5 SDP SDPLIB ERROR - 4.6251 + 0.0458 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:11:16 + 2025-07-18 11:59:50 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap10 + hinf5 SDP SDPLIB UNSUPPORTED @@ -11574,12 +12564,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:13:02 + 2025-07-18 12:00:00 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap10 + hinf5 SDP SDPLIB UNSUPPORTED @@ -11589,12 +12579,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:13:02 + 2025-07-18 12:00:00 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap10 + hinf5 SDP SDPLIB UNSUPPORTED @@ -11604,12 +12594,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:13:02 + 2025-07-18 12:00:00 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap10 + hinf5 SDP SDPLIB UNSUPPORTED @@ -11619,57 +12609,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:13:02 + 2025-07-18 12:00:00 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + hinf5 + SDP + SDPLIB + OPTIMAL + 0.0822 + -3.209234e+02 + 13300 + 1.537852e-03 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 11:59:50 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap10 + hinf5 SDP SDPLIB OPTIMAL (INACCURATE) - 0.5982 - 1.093072e+03 + 0.0089 + -3.630884e+02 โ - 5.121910e-01 + -4.352485e-01 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:12:55 + 2025-07-18 11:59:50 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap10 + hinf5 SDP SDPLIB UNKNOWN - 0.8022 - 1.092540e+03 - 14 - 3.404161e-02 + 0.3070 + -3.628408e+02 + 16 + 2.944352e-01 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:01:26 + 2025-07-19 14:02:56 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap10 + hinf5 SDP SDPLIB NUM_ERROR - 2.5004 - 1.092580e+03 - 26 - 2.304492e-04 + 0.2958 + -3.621390e+02 + 19 + 6.030036e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:50 + 2025-07-19 12:38:57 scipy_linprog scipy-1.15.3 - qap10 + hinf5 SDP SDPLIB UNSUPPORTED @@ -11679,42 +12684,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:13:02 + 2025-07-18 12:00:00 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - qap5 + hinf6 SDP SDPLIB OPTIMAL - 0.0396 - 4.360000e+02 - 9 - -5.372198e-08 - 443b599d + 0.0055 + -4.489502e+02 + 23 + -3.112008e-06 + 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:01:58 + 2025-07-18 12:02:31 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - qap5 + unknown + hinf6 SDP SDPLIB - OPTIMAL - 0.0582 - 4.360000e+02 + ERROR + 0.0551 + โ + โ โ - -3.923994e-06 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:01:58 + 2025-07-18 12:02:31 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap5 + hinf6 SDP SDPLIB UNSUPPORTED @@ -11724,12 +12729,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:03:31 + 2025-07-18 12:02:41 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap5 + hinf6 SDP SDPLIB UNSUPPORTED @@ -11739,12 +12744,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:03:31 + 2025-07-18 12:02:41 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap5 + hinf6 SDP SDPLIB UNSUPPORTED @@ -11754,12 +12759,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:03:31 + 2025-07-18 12:02:41 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap5 + hinf6 SDP SDPLIB UNSUPPORTED @@ -11769,72 +12774,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:03:31 + 2025-07-18 12:02:41 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - qap5 + hinf6 SDP SDPLIB - OPTIMAL - 0.0151 - 4.360001e+02 - 225 - 2.674888e-04 + OPTIMAL (INACCURATE) + 0.6322 + -2.459011e+02 + 100000 + -4.376018e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:01:58 + 2025-07-18 12:02:32 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap5 + hinf6 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0203 - 4.360404e+02 + 0.0113 + -4.489788e+02 โ - 4.055939e-02 + -2.308969e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:01:58 + 2025-07-18 12:02:32 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap5 + hinf6 SDP SDPLIB - OPTIMAL - 0.4685 - 4.360000e+02 - 10 - 3.872961e-07 + MAX_ITER + 0.3866 + -4.489485e+02 + 26 + 1.058239e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:00:56 + 2025-07-19 14:03:02 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap5 + hinf6 SDP SDPLIB - OPTIMAL - 0.2550 - 4.360000e+02 - 14 - 2.341411e-07 + NUM_ERROR + 0.3450 + -4.489387e+02 + 23 + 1.306223e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:19 + 2025-07-19 12:39:02 scipy_linprog scipy-1.15.3 - qap5 + hinf6 SDP SDPLIB UNSUPPORTED @@ -11844,42 +12849,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:03:31 + 2025-07-18 12:02:41 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - qap6 + unknown + hinf7 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.3584 - 3.814328e+02 - 26 - -2.539668e-07 + ERROR + 0.0051 + โ + โ + โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:04:47 + 2025-07-18 12:03:23 cvxpy_cvxopt unknown - qap6 + hinf7 SDP SDPLIB ERROR - 0.4548 + 0.0392 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:04:48 + 2025-07-18 12:03:23 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap6 + hinf7 SDP SDPLIB UNSUPPORTED @@ -11889,12 +12894,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:07 + 2025-07-18 12:03:32 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap6 + hinf7 SDP SDPLIB UNSUPPORTED @@ -11904,12 +12909,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:07 + 2025-07-18 12:03:32 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap6 + hinf7 SDP SDPLIB UNSUPPORTED @@ -11919,12 +12924,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:07 + 2025-07-18 12:03:32 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap6 + hinf7 SDP SDPLIB UNSUPPORTED @@ -11934,72 +12939,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:07 + 2025-07-18 12:03:32 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - qap6 + hinf7 SDP SDPLIB OPTIMAL (INACCURATE) - 11.1401 - 3.811580e+02 + 0.6557 + -3.893250e+02 100000 - -1.367689e-01 + -1.837412e-02 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:04:59 + 2025-07-18 12:03:24 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap6 + hinf7 SDP SDPLIB OPTIMAL (INACCURATE) - 0.0942 - 3.815253e+02 + 0.0078 + -3.862730e+02 โ - 1.390729e-01 + 7.844985e+00 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:04:59 + 2025-07-18 12:03:24 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap6 + hinf7 SDP SDPLIB OPTIMAL - 0.7567 - 3.813937e+02 + 0.3210 + -3.908268e+02 19 - 2.272172e-02 + 7.254617e-03 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:01:02 + 2025-07-19 14:03:07 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap6 + hinf7 SDP SDPLIB NUM_ERROR - 0.3632 - 3.814237e+02 - 22 - 3.556185e-04 + 0.3002 + -3.904187e+02 + 20 + 1.447412e+00 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:25 + 2025-07-19 12:39:08 scipy_linprog scipy-1.15.3 - qap6 + hinf7 SDP SDPLIB UNSUPPORTED @@ -12009,42 +13014,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:07 + 2025-07-18 12:03:32 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - qap7 + hinf8 SDP SDPLIB OPTIMAL (INACCURATE) - 1.2171 - 4.248122e+02 - 26 - -4.287784e-08 + 0.0065 + -1.161624e+02 + 29 + -3.169690e-07 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:49 + 2025-07-16 15:21:07 cvxpy_cvxopt unknown - qap7 + hinf8 SDP SDPLIB ERROR - 0.7406 + 0.0365 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:05:50 + 2025-07-16 15:21:07 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap7 + hinf8 SDP SDPLIB UNSUPPORTED @@ -12054,12 +13059,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:18 + 2025-07-16 15:21:25 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap7 + hinf8 SDP SDPLIB UNSUPPORTED @@ -12069,12 +13074,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:18 + 2025-07-16 15:21:25 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap7 + hinf8 SDP SDPLIB UNSUPPORTED @@ -12084,12 +13089,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:19 + 2025-07-16 15:21:25 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap7 + hinf8 SDP SDPLIB UNSUPPORTED @@ -12099,72 +13104,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:19 + 2025-07-16 15:21:25 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - qap7 + hinf8 SDP SDPLIB - OPTIMAL (INACCURATE) - 20.1258 - 4.245226e+02 - 100000 - -1.450466e-01 + OPTIMAL + 0.2218 + -1.134663e+02 + 33450 + 1.035981e-03 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:10 + 2025-07-16 15:21:07 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap7 + hinf8 SDP SDPLIB OPTIMAL (INACCURATE) - 0.1466 - 4.248762e+02 + 0.0086 + -1.161808e+02 โ - 7.639655e-02 + -7.871024e-03 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:10 + 2025-07-16 15:21:07 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap7 + hinf8 SDP SDPLIB - UNKNOWN - 0.6351 - 4.247884e+02 - 19 - 1.583065e-02 + MAX_ITER + 0.3581 + -1.161891e+02 + 21 + 2.143125e-02 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:01:08 + 2025-07-19 14:03:13 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap7 + hinf8 SDP SDPLIB NUM_ERROR - 0.5065 - 4.248084e+02 - 24 - 2.006405e-04 - 96ca0437 + 0.3128 + -1.161480e+02 + 18 + 3.670388e-04 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:30 + 2025-07-19 12:39:13 scipy_linprog scipy-1.15.3 - qap7 + hinf8 SDP SDPLIB UNSUPPORTED @@ -12174,42 +13179,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:06:19 + 2025-07-16 15:21:25 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - qap8 + hinf9 SDP SDPLIB - OPTIMAL (INACCURATE) - 3.9440 - 7.569434e+02 - 29 - -2.113024e-07 + OPTIMAL + 0.0063 + -2.362493e+02 + 27 + -2.111383e-06 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:08 + 2025-07-16 15:22:05 cvxpy_cvxopt unknown - qap8 + hinf9 SDP SDPLIB ERROR - 1.6612 + 0.0758 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:09 + 2025-07-16 15:22:05 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap8 + hinf9 SDP SDPLIB UNSUPPORTED @@ -12219,12 +13224,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:55 + 2025-07-16 15:22:23 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap8 + hinf9 SDP SDPLIB UNSUPPORTED @@ -12234,12 +13239,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:55 + 2025-07-16 15:22:23 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap8 + hinf9 SDP SDPLIB UNSUPPORTED @@ -12249,12 +13254,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:55 + 2025-07-16 15:22:23 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap8 + hinf9 SDP SDPLIB UNSUPPORTED @@ -12264,72 +13269,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:55 + 2025-07-16 15:22:23 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - qap8 + hinf9 SDP SDPLIB OPTIMAL (INACCURATE) - 36.5095 - 7.565712e+02 + 0.6299 + -2.399599e+01 100000 - -1.822222e-01 + -2.629195e-01 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:46 + 2025-07-16 15:22:06 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap8 + hinf9 SDP SDPLIB OPTIMAL (INACCURATE) - 0.2393 - 7.570348e+02 + 0.0273 + -2.362493e+02 โ - 9.395162e-02 + -4.034887e-05 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:46 + 2025-07-16 15:22:06 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap8 + hinf9 SDP SDPLIB - OPTIMAL - 0.5660 - 7.568396e+02 - 15 - 5.821534e-02 + UNKNOWN + 0.3678 + -2.362493e+02 + 23 + 3.178988e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:01:14 + 2025-07-19 14:03:19 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap8 + hinf9 SDP SDPLIB - NUM_ERROR - 0.8749 - 7.569341e+02 - 27 - 2.874635e-04 + OPTIMAL + 0.3177 + -2.362474e+02 + 26 + 8.438180e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:36 + 2025-07-19 12:39:19 scipy_linprog scipy-1.15.3 - qap8 + hinf9 SDP SDPLIB UNSUPPORTED @@ -12339,42 +13344,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:07:55 + 2025-07-16 15:22:23 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - qap9 + maxG11 SDP SDPLIB - OPTIMAL (INACCURATE) - 9.7192 - 1.409942e+03 - 24 - -2.829218e-05 + OPTIMAL + 5.7804 + -6.291648e+02 + 16 + -6.255050e-10 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:08:56 + 2025-07-18 12:10:33 cvxpy_cvxopt - unknown - qap9 + cvxpy-1.6.5-CVXOPT-1.3.2 + maxG11 SDP SDPLIB - ERROR - 2.7372 - โ - โ + OPTIMAL + 228.5533 + -6.291648e+02 โ + -1.680974e-09 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:08:59 + 2025-07-18 12:16:28 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qap9 + maxG11 SDP SDPLIB UNSUPPORTED @@ -12384,12 +13389,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:54 + 2025-07-18 12:37:04 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qap9 + maxG11 SDP SDPLIB UNSUPPORTED @@ -12399,12 +13404,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:54 + 2025-07-18 12:37:04 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qap9 + maxG11 SDP SDPLIB UNSUPPORTED @@ -12414,12 +13419,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:54 + 2025-07-18 12:37:04 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qap9 + maxG11 SDP SDPLIB UNSUPPORTED @@ -12429,72 +13434,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:55 + 2025-07-18 12:37:05 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - qap9 + unknown + maxG11 SDP SDPLIB - OPTIMAL - 44.7904 - 1.409918e+03 - 74700 - -1.310406e-02 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 13:09:44 + 2025-08-04 15:37:55 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - qap9 + maxG11 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.3657 - 1.410256e+03 + OPTIMAL + 6.6351 + -6.291648e+02 โ - 3.610297e-01 + 2.182897e-05 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:45 + 2025-07-18 12:36:57 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qap9 + maxG11 SDP SDPLIB OPTIMAL - 0.8992 - 1.409919e+03 - 17 - 1.127060e-02 + 2.3639 + -6.291648e+02 + 15 + 6.031657e-06 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:01:19 + 2025-07-19 14:07:14 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qap9 + maxG11 SDP SDPLIB - NUM_ERROR - 1.2836 - 1.409918e+03 - 25 - 2.496474e-04 + OPTIMAL + 18.2137 + -6.291648e+02 + 16 + 7.732069e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 12:40:42 + 2025-07-19 12:48:02 scipy_linprog scipy-1.15.3 - qap9 + maxG11 SDP SDPLIB UNSUPPORTED @@ -12504,27 +13509,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:09:55 + 2025-07-18 12:37:05 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - qpG11 + unknown + maxG32 SDP SDPLIB - OPTIMAL - 20.1104 - -2.448659e+03 - 15 - -1.892340e-08 - 443b599d + SUBPROCESS_ERROR + 1.0812 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 13:49:36 + 2025-08-04 14:03:28 + + + cvxpy_cvxopt + unknown + maxG32 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.0752 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:03:30 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qpG11 + maxG32 SDP SDPLIB UNSUPPORTED @@ -12534,12 +13554,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:54:31 + 2025-07-18 12:48:51 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qpG11 + maxG32 SDP SDPLIB UNSUPPORTED @@ -12549,12 +13569,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:54:31 + 2025-07-18 12:48:52 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qpG11 + maxG32 SDP SDPLIB UNSUPPORTED @@ -12564,12 +13584,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:54:32 + 2025-07-18 12:48:52 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qpG11 + maxG32 SDP SDPLIB UNSUPPORTED @@ -12579,57 +13599,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:54:32 + 2025-07-18 12:48:52 - cvxpy_sdpa - cvxpy-1.6.5-SDPA-0.2.2 - qpG11 + cvxpy_scs + unknown + maxG32 SDP SDPLIB - OPTIMAL - 29.9257 - -2.448659e+03 + SUBPROCESS_ERROR + 1.0643 โ - 8.327262e-05 - 443b599d + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 13:54:23 + 2025-08-04 14:03:31 - matlab_sdpt3 + cvxpy_sdpa + unknown + maxG32 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.0840 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:03:27 + + + matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qpG11 + maxG32 SDP SDPLIB OPTIMAL - 31.2006 - -2.448659e+03 - 15 - 4.198108e-05 - 443b599d + 15.4569 + -1.567640e+03 + 16 + 1.011464e-05 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-18 13:45:31 + 2025-07-19 14:09:36 matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - qpG11 + unknown + maxG32 SDP SDPLIB - OPTIMAL - 142.5549 - -2.448659e+03 - 17 - 1.207991e-08 - 96ca0437 + TIMEOUT + 300.0000 + โ + โ + โ + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:30:50 + 2025-07-18 12:48:12 scipy_linprog scipy-1.15.3 - qpG11 + maxG32 SDP SDPLIB UNSUPPORTED @@ -12639,12 +13674,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:54:32 + 2025-07-18 12:48:53 + + + cvxpy_clarabel + unknown + maxG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:05:47 + + + cvxpy_cvxopt + unknown + maxG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:07:47 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - qpG51 + maxG51 SDP SDPLIB UNSUPPORTED @@ -12654,12 +13719,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 14:03:32 + 2025-07-18 12:54:43 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - qpG51 + maxG51 SDP SDPLIB UNSUPPORTED @@ -12669,12 +13734,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 14:03:32 + 2025-07-18 12:54:43 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - qpG51 + maxG51 SDP SDPLIB UNSUPPORTED @@ -12684,12 +13749,12 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 14:03:33 + 2025-07-18 12:54:43 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - qpG51 + maxG51 SDP SDPLIB UNSUPPORTED @@ -12699,27 +13764,72 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 14:03:33 + 2025-07-18 12:54:44 + + + cvxpy_scs + unknown + maxG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:09:47 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + maxG51 + SDP + SDPLIB + OPTIMAL + 12.5928 + -4.006255e+03 + โ + 1.687130e-04 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:03:45 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - qpG51 + maxG51 SDP SDPLIB OPTIMAL - 65.0465 - -1.181800e+04 + 5.4330 + -4.006256e+03 17 - 5.020951e-05 - 443b599d + 2.123661e-06 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:26:27 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + maxG51 + SDP + SDPLIB + OPTIMAL + 43.0098 + -4.006255e+03 + 22 + 1.140552e-07 + 96ca0437 Darwin (8CPU, 24GB) - 2025-07-18 13:58:16 + 2025-07-19 13:01:57 scipy_linprog scipy-1.15.3 - qpG51 + maxG51 SDP SDPLIB UNSUPPORTED @@ -12729,42 +13839,42 @@ ๐ Detailed Results โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 14:03:33 + 2025-07-18 12:54:44 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - ss30 + mcp100 SDP SDPLIB OPTIMAL - 41.1878 - -2.023951e+01 - 29 - -4.073399e-10 - 443b599d + 0.2542 + -2.261574e+02 + 11 + -2.511825e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:06:06 + 2025-08-04 14:09:49 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - ss30 + mcp100 SDP SDPLIB OPTIMAL - 21.2647 - -2.023951e+01 + 0.5888 + -2.261573e+02 โ - -6.832025e-09 - 443b599d + -5.165842e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:06:28 + 2025-08-04 14:09:50 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - ss30 + mcp100 SDP SDPLIB UNSUPPORTED @@ -12772,14 +13882,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:10:03 + 2025-08-05 12:41:04 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - ss30 + mcp100 SDP SDPLIB UNSUPPORTED @@ -12787,14 +13897,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:10:03 + 2025-08-05 12:41:06 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - ss30 + mcp100 SDP SDPLIB UNSUPPORTED @@ -12802,14 +13912,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:10:03 + 2025-08-05 12:41:07 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - ss30 + mcp100 SDP SDPLIB UNSUPPORTED @@ -12817,59 +13927,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:10:03 + 2025-08-05 12:41:05 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + mcp100 + SDP + SDPLIB + OPTIMAL + 1.3103 + -2.261564e+02 + 1125 + -7.284190e-04 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:09:52 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - ss30 + mcp100 SDP SDPLIB - OPTIMAL (INACCURATE) - 7.8102 - -2.023951e+01 + OPTIMAL + 0.0349 + -2.261573e+02 โ - 2.960846e-06 - 443b599d + 3.863135e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:09:55 + 2025-08-04 14:09:48 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - ss30 + mcp100 SDP SDPLIB - UNKNOWN - 2.8822 - -2.023951e+01 - 21 - 3.122747e-06 - 96ca0437 + OPTIMAL + 0.3674 + -2.261574e+02 + 12 + 8.928617e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:01:35 + 2025-07-22 15:39:38 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - ss30 + mcp100 SDP SDPLIB - NUM_ERROR - 6.7607 - -2.023951e+01 - 37 - 3.747289e-09 - 96ca0437 + OPTIMAL + 0.4289 + -2.261574e+02 + 17 + 1.639251e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:41:03 + 2025-07-22 15:42:51 scipy_linprog scipy-1.15.3 - ss30 + mcp100 SDP SDPLIB UNSUPPORTED @@ -12877,44 +14002,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:10:03 + 2025-08-05 12:41:08 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.5781 - -2.300000e+01 + 0.0328 + -1.419905e+02 12 - -4.884599e-08 - 443b599d + -5.119034e-10 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:05 + 2025-08-04 14:09:53 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.3024 - -2.300000e+01 + 1.1707 + -1.419905e+02 โ - 1.433627e-10 - 443b599d + -8.803283e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:05 + 2025-08-04 14:09:55 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - theta1 + mcp124-1 SDP SDPLIB UNSUPPORTED @@ -12922,14 +14047,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:22 + 2025-08-05 12:41:08 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - theta1 + mcp124-1 SDP SDPLIB UNSUPPORTED @@ -12937,14 +14062,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:22 + 2025-08-05 12:41:10 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - theta1 + mcp124-1 SDP SDPLIB UNSUPPORTED @@ -12952,14 +14077,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:22 + 2025-08-05 12:41:11 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - theta1 + mcp124-1 SDP SDPLIB UNSUPPORTED @@ -12967,74 +14092,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:22 + 2025-08-05 12:41:09 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.0596 - -2.299958e+01 - 250 - -1.017686e-04 - 443b599d + 8.3507 + -1.419881e+02 + 4350 + -5.539734e-04 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:05 + 2025-08-04 14:10:03 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.0253 - -2.300000e+01 + 0.0503 + -1.419905e+02 โ - 1.217067e-06 - 443b599d + 1.596503e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:05 + 2025-08-04 14:09:52 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.3554 - -2.300000e+01 - 11 - 3.854635e-07 - 96ca0437 + 0.5272 + -1.419905e+02 + 12 + 2.123976e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:06:19 + 2025-07-22 15:39:44 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta1 + mcp124-1 SDP SDPLIB OPTIMAL - 0.2918 - -2.300000e+01 - 19 - 5.460983e-09 - 96ca0437 + 1.2224 + -1.419905e+02 + 17 + 1.350787e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:46:55 + 2025-07-22 15:42:57 scipy_linprog scipy-1.15.3 - theta1 + mcp124-1 SDP SDPLIB UNSUPPORTED @@ -13042,44 +14167,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:11:22 + 2025-08-05 12:41:12 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 10.5589 - -3.287917e+01 - 10 - -2.408608e-07 - 443b599d + 0.5692 + -2.698802e+02 + 11 + -3.617515e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:36 + 2025-08-04 14:10:05 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 2.0424 - -3.287917e+01 + 1.1793 + -2.698802e+02 โ - -4.596501e-11 - 443b599d + -1.960927e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:38 + 2025-08-04 14:10:07 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - theta2 + mcp124-2 SDP SDPLIB UNSUPPORTED @@ -13087,14 +14212,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:50 + 2025-08-05 12:41:13 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - theta2 + mcp124-2 SDP SDPLIB UNSUPPORTED @@ -13102,14 +14227,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:50 + 2025-08-05 12:41:14 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - theta2 + mcp124-2 SDP SDPLIB UNSUPPORTED @@ -13117,14 +14242,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:50 + 2025-08-05 12:41:15 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - theta2 + mcp124-2 SDP SDPLIB UNSUPPORTED @@ -13132,74 +14257,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:50 + 2025-08-05 12:41:14 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 0.4117 - -3.287909e+01 - 350 - -7.891653e-05 - 443b599d + 2.4154 + -2.698801e+02 + 1225 + -7.521256e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:38 + 2025-08-04 14:10:10 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 0.4772 - -3.287917e+01 + 0.0475 + -2.698802e+02 โ - 4.761739e-07 - 443b599d + 8.406857e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:39 + 2025-08-04 14:10:04 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 0.5581 - -3.287917e+01 + 0.5416 + -2.698802e+02 13 - 9.436829e-08 - 96ca0437 + 2.224901e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:06:25 + 2025-07-22 15:39:49 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta2 + mcp124-2 SDP SDPLIB OPTIMAL - 0.6316 - -3.287917e+01 - 20 - 2.643496e-09 - 96ca0437 + 0.8320 + -2.698802e+02 + 18 + 5.378467e-09 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:47:01 + 2025-07-22 15:43:03 scipy_linprog scipy-1.15.3 - theta2 + mcp124-2 SDP SDPLIB UNSUPPORTED @@ -13207,44 +14332,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:12:50 + 2025-08-05 12:41:16 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 67.7079 - -4.216698e+01 - 10 - -6.625869e-08 - 443b599d + 3.5246 + -4.677501e+02 + 14 + -2.264244e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:24:54 + 2025-08-04 14:10:14 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 7.7982 - -4.216698e+01 + 1.0807 + -4.677501e+02 โ - 1.778488e-10 - 443b599d + -3.895650e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:02 + 2025-08-04 14:10:16 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - theta3 + mcp124-3 SDP SDPLIB UNSUPPORTED @@ -13252,14 +14377,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:15 + 2025-08-05 12:41:17 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - theta3 + mcp124-3 SDP SDPLIB UNSUPPORTED @@ -13267,14 +14392,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:15 + 2025-08-05 12:41:19 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - theta3 + mcp124-3 SDP SDPLIB UNSUPPORTED @@ -13282,14 +14407,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:15 + 2025-08-05 12:41:20 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - theta3 + mcp124-3 SDP SDPLIB UNSUPPORTED @@ -13297,74 +14422,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:15 + 2025-08-05 12:41:18 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 1.5866 - -4.216698e+01 - 450 - 1.728495e-06 - 443b599d + 1.1609 + -4.677502e+02 + 575 + -2.529721e-04 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:03 + 2025-08-04 14:10:18 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 1.0481 - -4.216698e+01 + 0.0470 + -4.677501e+02 โ - 6.623021e-07 - 443b599d + 1.295023e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:05 + 2025-08-04 14:10:10 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 1.1651 - -4.216698e+01 - 14 - 2.231640e-07 - 96ca0437 + 0.5734 + -4.677501e+02 + 12 + 4.629338e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:06:33 + 2025-07-22 15:39:55 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta3 + mcp124-3 SDP SDPLIB OPTIMAL - 2.4166 - -4.216698e+01 - 20 - 4.632419e-09 - 96ca0437 + 0.8134 + -4.677501e+02 + 18 + 1.018532e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:47:08 + 2025-07-22 15:43:09 scipy_linprog scipy-1.15.3 - theta3 + mcp124-3 SDP SDPLIB UNSUPPORTED @@ -13372,194 +14497,209 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:25:15 + 2025-08-05 12:41:20 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta4 + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + mcp124-4 SDP SDPLIB OPTIMAL - 1.6902 - -5.032122e+01 - 14 - 7.229009e-07 - 96ca0437 + 11.9874 + -8.644119e+02 + 12 + -8.319262e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:10:09 + 2025-08-04 14:10:31 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta4 + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + mcp124-4 SDP SDPLIB OPTIMAL - 9.0291 - -5.032122e+01 - 20 - 7.018571e-09 - 96ca0437 + 1.1042 + -8.644119e+02 + โ + -6.773791e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 12:53:42 + 2025-08-04 14:10:32 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta5 + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + mcp124-4 SDP SDPLIB - OPTIMAL - 3.2878 - -5.723231e+01 - 14 - 5.136266e-07 - 96ca0437 + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:10:21 + 2025-08-05 12:41:21 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta5 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + mcp124-4 SDP SDPLIB - OPTIMAL - 32.2398 - -5.723231e+01 - 23 - 1.207007e-07 - 96ca0437 + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 12:54:24 + 2025-08-05 12:41:23 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - theta6 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + mcp124-4 SDP SDPLIB - OPTIMAL - 5.6313 - -6.347709e+01 - 14 - 1.010083e-07 - 96ca0437 + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:10:38 + 2025-08-05 12:41:24 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - theta6 + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + mcp124-4 SDP SDPLIB - OPTIMAL - 96.7364 - -6.347709e+01 - 24 - 1.114038e-07 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 12:56:13 + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 12:41:22 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - thetaG11 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + mcp124-4 SDP SDPLIB OPTIMAL - 6.1212 - -4.000000e+02 - 18 - 5.245455e-06 - 96ca0437 + 0.4643 + -8.644119e+02 + 225 + -2.264099e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:30:23 + 2025-08-04 14:10:33 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - thetaG11 + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + mcp124-4 SDP SDPLIB OPTIMAL - 69.4300 - -4.000000e+02 - 33 - 1.056321e-09 - 96ca0437 + 0.0465 + -8.644118e+02 + โ + 1.875003e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:10:16 + 2025-08-04 14:10:18 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - thetaG51 + mcp124-4 SDP SDPLIB - UNKNOWN - 138.0543 - -3.490000e+02 - 39 - 5.724028e-06 - 96ca0437 + OPTIMAL + 0.4990 + -8.644119e+02 + 13 + 6.929455e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:34:40 + 2025-07-22 15:40:00 matlab_sedumi - unknown - thetaG51 + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + mcp124-4 SDP SDPLIB - TIMEOUT - 300.0000 + OPTIMAL + 0.7261 + -8.644119e+02 + 20 + 2.124534e-08 + d31cb753 + Darwin (8CPU, 24GB) + 2025-07-22 15:43:14 + + + scipy_linprog + scipy-1.15.3 + mcp124-4 + SDP + SDPLIB + UNSUPPORTED โ โ โ - 443b599d + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 14:41:01 + 2025-08-05 12:41:25 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.0054 - 8.999996e+00 - 11 - -2.155732e-08 - 443b599d + 0.2413 + -3.172643e+02 + 12 + -8.056418e-10 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:10:35 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.0277 - 8.999996e+00 + 6.1849 + -3.172643e+02 โ - -1.446455e-08 - 443b599d + -9.552764e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:10:42 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss1 + mcp250-1 SDP SDPLIB UNSUPPORTED @@ -13567,14 +14707,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:26 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - truss1 + mcp250-1 SDP SDPLIB UNSUPPORTED @@ -13582,14 +14722,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:28 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - truss1 + mcp250-1 SDP SDPLIB UNSUPPORTED @@ -13597,14 +14737,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:29 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - truss1 + mcp250-1 SDP SDPLIB UNSUPPORTED @@ -13612,74 +14752,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:27 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.0054 - 9.000014e+00 - 175 - 6.547843e-06 - 443b599d + 65.1867 + -3.172633e+02 + 6025 + -3.159274e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:11:47 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.0138 - 8.999997e+00 + 0.1677 + -3.172643e+02 โ - 2.506270e-07 - 443b599d + 1.904160e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:10:34 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.2426 - 8.999997e+00 - 9 - 2.284568e-07 - 96ca0437 + 0.8985 + -3.172643e+02 + 14 + 6.146665e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:05:43 + 2025-07-22 15:40:07 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss1 + mcp250-1 SDP SDPLIB OPTIMAL - 0.2797 - 8.999996e+00 - 13 - 4.998519e-09 - 96ca0437 + 2.2606 + -3.172643e+02 + 19 + 1.044049e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:46:18 + 2025-07-22 15:43:22 scipy_linprog scipy-1.15.3 - truss1 + mcp250-1 SDP SDPLIB UNSUPPORTED @@ -13687,44 +14827,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:29 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.0284 - 1.233803e+02 - 14 - -6.241783e-07 - 443b599d + 5.1626 + -5.319301e+02 + 11 + -2.262709e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:11:55 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.3432 - 1.233804e+02 + 5.5707 + -5.319301e+02 โ - -5.820908e-09 - 443b599d + -2.428214e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:51 + 2025-08-04 14:12:01 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss2 + mcp250-2 SDP SDPLIB UNSUPPORTED @@ -13732,14 +14872,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:30 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - truss2 + mcp250-2 SDP SDPLIB UNSUPPORTED @@ -13747,14 +14887,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:32 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - truss2 + mcp250-2 SDP SDPLIB UNSUPPORTED @@ -13762,14 +14902,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:33 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - truss2 + mcp250-2 SDP SDPLIB UNSUPPORTED @@ -13777,74 +14917,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:35 + 2025-08-05 12:41:31 cvxpy_scs cvxpy-1.6.5-SCS-3.2.7.post2 - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.8349 - 1.233861e+02 - 20875 - -7.052666e-06 - 443b599d + 85.8019 + -5.319297e+02 + 6725 + -5.276320e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:52 + 2025-08-04 14:13:27 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.0701 - 1.233804e+02 + 0.9687 + -5.319300e+02 โ - 4.581987e-06 - 443b599d + 4.443641e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-04 14:11:49 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.3628 - 1.233804e+02 + 0.8380 + -5.319301e+02 13 - 9.059828e-07 - 96ca0437 + 2.800604e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:05:49 + 2025-07-22 15:40:13 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss2 + mcp250-2 SDP SDPLIB OPTIMAL - 0.3927 - 1.233804e+02 - 20 - 6.897466e-09 - 96ca0437 + 2.2107 + -5.319301e+02 + 19 + 1.184344e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:46:24 + 2025-07-22 15:43:29 scipy_linprog scipy-1.15.3 - truss2 + mcp250-2 SDP SDPLIB UNSUPPORTED @@ -13852,74 +14992,44 @@ ๐ Detailed Results โ โ โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 - - - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - truss3 - SDP - SDPLIB - OPTIMAL - 0.0080 - 9.109996e+00 - 12 - -1.354255e-09 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-05 12:41:34 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - truss3 - SDP - SDPLIB - OPTIMAL - 0.0086 - 9.109996e+00 - 12 - -1.354255e-09 - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:33:41 - - - cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - truss3 + mcp250-3 SDP SDPLIB OPTIMAL - 0.0561 - 9.109996e+00 - โ - -3.333698e-09 - 443b599d + 89.8253 + -9.811726e+02 + 13 + -8.956022e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-04 14:14:59 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - truss3 + mcp250-3 SDP SDPLIB OPTIMAL - 0.0621 - 9.109996e+00 + 5.9109 + -9.811726e+02 โ - -3.333698e-09 - 443b599d + -3.472633e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:41 + 2025-08-04 14:15:06 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss3 + mcp250-3 SDP SDPLIB UNSUPPORTED @@ -13927,14 +15037,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:35 - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - truss3 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + mcp250-3 SDP SDPLIB UNSUPPORTED @@ -13942,14 +15052,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:48 + 2025-08-05 12:41:37 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - truss3 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + mcp250-3 SDP SDPLIB UNSUPPORTED @@ -13957,14 +15067,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:38 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - truss3 + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + mcp250-3 SDP SDPLIB UNSUPPORTED @@ -13972,14 +15082,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:48 + 2025-08-05 12:41:36 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - truss3 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + mcp250-3 + SDP + SDPLIB + OPTIMAL + 24.1934 + -9.811716e+02 + 1875 + -9.748886e-03 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:15:31 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + mcp250-3 + SDP + SDPLIB + OPTIMAL + 0.9742 + -9.811725e+02 + โ + 4.521459e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:13:29 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + mcp250-3 + SDP + SDPLIB + OPTIMAL + 0.9125 + -9.811726e+02 + 13 + 5.765982e-06 + d31cb753 + Darwin (8CPU, 24GB) + 2025-07-22 15:40:19 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + mcp250-3 + SDP + SDPLIB + OPTIMAL + 2.6033 + -9.811726e+02 + 19 + 1.085641e-08 + d31cb753 + Darwin (8CPU, 24GB) + 2025-07-22 15:43:36 + + + scipy_linprog + scipy-1.15.3 + mcp250-3 SDP SDPLIB UNSUPPORTED @@ -13987,29 +15157,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:39 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - truss3 + cvxpy_clarabel + unknown + mcp250-4 SDP SDPLIB - UNSUPPORTED + TIMEOUT + 120.0000 โ โ โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:17:32 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + mcp250-4 + SDP + SDPLIB + OPTIMAL + 5.5648 + -1.681960e+03 โ - 443b599d + -1.699075e-07 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:48 + 2025-08-04 14:17:39 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - truss3 + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + mcp250-4 SDP SDPLIB UNSUPPORTED @@ -14017,14 +15202,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:40 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - truss3 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + mcp250-4 SDP SDPLIB UNSUPPORTED @@ -14032,119 +15217,104 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:48 + 2025-08-05 12:41:41 - cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss3 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + mcp250-4 SDP SDPLIB - OPTIMAL - 0.5333 - 9.110042e+00 - 44625 - -6.101103e-07 - 443b599d + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-05 12:41:42 - cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss3 + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + mcp250-4 SDP SDPLIB - OPTIMAL - 0.5393 - 9.110042e+00 - 44625 - -6.101103e-07 - 443b599d + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:41 + 2025-08-05 12:41:41 - cvxpy_sdpa - cvxpy-1.6.5-SDPA-0.2.2 - truss3 + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + mcp250-4 SDP SDPLIB OPTIMAL - 0.0165 - 9.109996e+00 - โ - 3.772590e-07 - 443b599d + 22.1792 + -1.681958e+03 + 1625 + -4.874058e-03 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-04 14:18:01 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss3 + mcp250-4 SDP SDPLIB OPTIMAL - 0.0168 - 9.109996e+00 + 0.1706 + -1.681960e+03 โ - 3.772590e-07 - 443b599d + 9.330282e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:33:41 + 2025-08-04 14:15:31 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss3 + mcp250-4 SDP SDPLIB OPTIMAL - 0.2912 - 9.109996e+00 - 12 - 1.372490e-07 - 96ca0437 + 0.9775 + -1.681960e+03 + 14 + 1.504516e-05 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:05:54 + 2025-07-22 15:40:26 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss3 + mcp250-4 SDP SDPLIB OPTIMAL - 0.2865 - 9.109996e+00 - 15 - 5.835563e-09 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 12:46:29 - - - scipy_linprog - scipy-1.15.3 - truss3 - SDP - SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d + 2.5810 + -1.681960e+03 + 21 + 1.680428e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-07-22 15:43:44 scipy_linprog scipy-1.15.3 - truss3 + mcp250-4 SDP SDPLIB UNSUPPORTED @@ -14152,59 +15322,44 @@ ๐ Detailed Results โ โ โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:33:48 - - - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - truss4 - SDP - SDPLIB - OPTIMAL - 0.0055 - 9.009996e+00 - 10 - -3.247332e-08 - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:08:53 + 2025-08-05 12:41:43 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - truss4 + mcp500-1 SDP SDPLIB OPTIMAL - 0.0057 - 9.009996e+00 - 10 - -3.247332e-08 - 443b599d + 1.6237 + -5.981485e+02 + 12 + -7.318022e-10 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:12 + 2025-08-04 14:18:07 cvxpy_cvxopt cvxpy-1.6.5-CVXOPT-1.3.2 - truss4 + mcp500-1 SDP SDPLIB OPTIMAL - 0.0388 - 9.009996e+00 + 49.2359 + -5.981485e+02 โ - -2.907509e-08 - 443b599d + -1.975388e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:12 + 2025-08-04 14:18:57 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss4 + mcp500-1 SDP SDPLIB UNSUPPORTED @@ -14212,14 +15367,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:44 - cvxpy_ecos - cvxpy-1.6.5-ECOS-2.0.14 - truss4 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + mcp500-1 SDP SDPLIB UNSUPPORTED @@ -14227,14 +15382,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:18 + 2025-08-05 12:41:46 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - truss4 + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + mcp500-1 SDP SDPLIB UNSUPPORTED @@ -14242,14 +15397,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:48 - cvxpy_highs - cvxpy-1.6.5-HIGHS-1.11.0 - truss4 + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + mcp500-1 SDP SDPLIB UNSUPPORTED @@ -14257,134 +15412,119 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:18 + 2025-08-05 12:41:45 - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - truss4 + cvxpy_scs + unknown + mcp500-1 SDP SDPLIB - UNSUPPORTED - โ + TIMEOUT + 120.0000 โ โ โ - 443b599d - Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 - - - cvxpy_osqp - cvxpy-1.6.5-OSQP-1.0.4 - truss4 - SDP - SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:18 + 2025-08-04 14:20:57 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - truss4 + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + mcp500-1 SDP SDPLIB - UNSUPPORTED - โ - โ - โ + OPTIMAL + 2.3339 + -5.981485e+02 โ - 443b599d + 9.428694e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-04 14:18:04 - cvxpy_scip - cvxpy-1.6.5-SCIP-5.5.0 - truss4 + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + mcp500-1 SDP SDPLIB - UNSUPPORTED - โ - โ - โ - โ - 443b599d + OPTIMAL + 1.5547 + -5.981485e+02 + 15 + 6.638995e-07 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-18 16:43:18 + 2025-07-22 15:40:34 - cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss4 + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + mcp500-1 SDP SDPLIB OPTIMAL - 0.0064 - 9.009997e+00 - 225 - 7.824718e-07 - 443b599d + 9.0169 + -5.981485e+02 + 21 + 5.890911e-09 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-18 16:43:12 + 2025-07-22 15:43:59 - cvxpy_sdpa - cvxpy-1.6.5-SDPA-0.2.2 - truss4 + scipy_linprog + scipy-1.15.3 + mcp500-1 SDP SDPLIB - OPTIMAL - 0.0147 - 9.009997e+00 + UNSUPPORTED โ - 4.942070e-07 - 443b599d + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:12 + 2025-08-05 12:41:49 - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss4 + cvxpy_clarabel + unknown + mcp500-2 SDP SDPLIB - OPTIMAL - 0.2856 - 9.009996e+00 - 11 - 1.558156e-07 - 96ca0437 + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:06:00 + 2025-08-04 14:23:01 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss4 + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + mcp500-2 SDP SDPLIB OPTIMAL - 0.2638 - 9.009996e+00 - 14 - 5.320549e-09 - 96ca0437 + 53.5033 + -1.070057e+03 + โ + -7.898734e-09 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 12:46:35 + 2025-08-04 14:23:55 - scipy_linprog - scipy-1.15.3 - truss4 + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + mcp500-2 SDP SDPLIB UNSUPPORTED @@ -14392,14 +15532,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:09:36 + 2025-08-05 12:41:50 - scipy_linprog - scipy-1.15.3 - truss4 + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + mcp500-2 SDP SDPLIB UNSUPPORTED @@ -14407,134 +15547,149 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:43:18 + 2025-08-05 12:41:52 - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - truss5_sdp + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + mcp500-2 SDP SDPLIB - OPTIMAL - 0.4975 - 1.326357e+02 - 18 - -7.954185e-08 - 443b599d + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:34:38 + 2025-08-05 12:41:53 - cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - truss5_sdp + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + mcp500-2 SDP SDPLIB - OPTIMAL - 1.2630 - 1.326357e+02 + UNSUPPORTED โ - -9.058994e-09 - 443b599d + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:34:40 + 2025-08-05 12:41:51 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss5_sdp + unknown + mcp500-2 SDP SDPLIB - OPTIMAL - 22.3950 - 1.326703e+02 - 83775 - -4.112527e-06 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:35:03 + 2025-08-04 14:25:55 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss5_sdp + mcp500-2 SDP SDPLIB OPTIMAL - 0.2245 - 1.326357e+02 + 2.8334 + -1.070057e+03 โ - 4.425149e-06 - 443b599d + 1.960266e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:35:04 + 2025-08-04 14:21:00 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss5_sdp + mcp500-2 SDP SDPLIB OPTIMAL - 1.0471 - 1.326357e+02 - 15 - 1.515941e-07 - 96ca0437 + 1.5360 + -1.070057e+03 + 16 + 2.520736e-06 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:34:48 + 2025-07-22 15:40:41 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss5_sdp + mcp500-2 SDP SDPLIB OPTIMAL - 0.5943 - 1.326357e+02 - 23 - 4.508252e-09 - 96ca0437 + 9.3069 + -1.070057e+03 + 20 + 1.182002e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 13:15:22 + 2025-07-22 15:44:13 - cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - truss6 + scipy_linprog + scipy-1.15.3 + mcp500-2 SDP SDPLIB - OPTIMAL - 0.2537 - 9.010003e+02 - 25 - -5.417627e-06 - 443b599d + UNSUPPORTED + โ + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:27:33 + 2025-08-05 12:41:54 - cvxpy_cvxopt + cvxpy_clarabel unknown - truss6 + mcp500-3 SDP SDPLIB - ERROR - 1.9965 + TIMEOUT + 120.0000 โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:27:37 + 2025-08-04 14:27:58 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + mcp500-3 + SDP + SDPLIB + OPTIMAL + 53.3332 + -1.847970e+03 + โ + -3.280184e-08 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:28:53 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss6 + mcp500-3 SDP SDPLIB UNSUPPORTED @@ -14542,14 +15697,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:05 + 2025-08-05 12:41:55 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - truss6 + mcp500-3 SDP SDPLIB UNSUPPORTED @@ -14557,14 +15712,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:07 + 2025-08-05 12:41:57 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - truss6 + mcp500-3 SDP SDPLIB UNSUPPORTED @@ -14572,14 +15727,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:08 + 2025-08-05 12:41:58 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - truss6 + mcp500-3 SDP SDPLIB UNSUPPORTED @@ -14587,74 +15742,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:10 + 2025-08-05 12:41:56 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss6 + unknown + mcp500-3 SDP SDPLIB - OPTIMAL - 14.3299 - 9.010951e+02 - 99775 - -1.537043e-07 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:27:53 + 2025-08-04 14:30:53 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss6 + mcp500-3 SDP SDPLIB - INFEASIBLE - 0.2910 - โ - โ + OPTIMAL + 0.9247 + -1.847970e+03 โ - 443b599d + 4.141768e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:27:56 + 2025-08-04 14:25:57 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss6 + mcp500-3 SDP SDPLIB - MAX_ITER - 0.5691 - 9.010014e+02 - 24 - 7.350973e-05 - 96ca0437 + OPTIMAL + 1.5979 + -1.847970e+03 + 14 + 1.291854e-05 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:06:06 + 2025-07-22 15:40:50 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss6 + mcp500-3 SDP SDPLIB - NUM_ERROR - 0.9868 - 9.010014e+02 - 27 - 6.734138e-08 - 96ca0437 + OPTIMAL + 10.8766 + -1.847970e+03 + 20 + 1.136891e-08 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 12:46:42 + 2025-07-22 15:44:30 scipy_linprog scipy-1.15.3 - truss6 + mcp500-3 SDP SDPLIB UNSUPPORTED @@ -14662,44 +15817,44 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:12 + 2025-08-05 12:41:59 cvxpy_clarabel - cvxpy-1.6.5-CLARABEL-0.11.0 - truss7 + unknown + mcp500-4 SDP SDPLIB - OPTIMAL - 0.1342 - 9.000011e+02 - 22 - -5.159903e-06 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:38 + 2025-08-04 14:32:56 cvxpy_cvxopt - unknown - truss7 + cvxpy-1.6.5-CVXOPT-1.3.2 + mcp500-4 SDP SDPLIB - ERROR - 1.2563 - โ - โ + OPTIMAL + 40.4431 + -3.566738e+03 โ - 443b599d + -9.265250e-08 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:40 + 2025-08-04 14:33:38 cvxpy_ecos cvxpy-1.6.5-ECOS-2.0.14 - truss7 + mcp500-4 SDP SDPLIB UNSUPPORTED @@ -14707,14 +15862,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:54 + 2025-08-05 12:42:00 cvxpy_highs cvxpy-1.6.5-HIGHS-1.11.0 - truss7 + mcp500-4 SDP SDPLIB UNSUPPORTED @@ -14722,14 +15877,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:55 + 2025-08-05 12:42:02 cvxpy_osqp cvxpy-1.6.5-OSQP-1.0.4 - truss7 + mcp500-4 SDP SDPLIB UNSUPPORTED @@ -14737,14 +15892,14 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:56 + 2025-08-05 12:42:03 cvxpy_scip cvxpy-1.6.5-SCIP-5.5.0 - truss7 + mcp500-4 SDP SDPLIB UNSUPPORTED @@ -14752,74 +15907,74 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:57 + 2025-08-05 12:42:01 cvxpy_scs - cvxpy-1.6.5-SCS-3.2.7.post2 - truss7 + unknown + mcp500-4 SDP SDPLIB - OPTIMAL - 3.8631 - 9.000356e+02 - 59000 - -3.324669e-08 - 443b599d + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:45 + 2025-08-04 14:35:38 cvxpy_sdpa cvxpy-1.6.5-SDPA-0.2.2 - truss7 + mcp500-4 SDP SDPLIB - OPTIMAL (INACCURATE) - 0.3339 - 9.000013e+02 + OPTIMAL + 1.1287 + -3.566738e+03 โ - -1.181402e-04 - 443b599d + 4.133622e-05 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:46 + 2025-08-04 14:30:55 matlab_sdpt3 SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss7 + mcp500-4 SDP SDPLIB - UNKNOWN - 0.5442 - 9.000014e+02 - 22 - 1.599447e-05 - 96ca0437 + OPTIMAL + 1.5797 + -3.566738e+03 + 13 + 5.909870e-05 + d31cb753 Darwin (8CPU, 24GB) - 2025-07-19 14:06:13 + 2025-07-22 15:40:58 matlab_sedumi SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss7 + mcp500-4 SDP SDPLIB OPTIMAL - 1.1932 - 9.000014e+02 - 27 - 6.316998e-08 - 96ca0437 + 9.7116 + -3.566738e+03 + 20 + 1.608760e-08 + 2ef15f0b Darwin (8CPU, 24GB) - 2025-07-19 12:46:50 + 2025-07-22 15:44:46 scipy_linprog scipy-1.15.3 - truss7 + mcp500-4 SDP SDPLIB UNSUPPORTED @@ -14827,879 +15982,4134 @@ ๐ Detailed Results โ โ โ - 443b599d + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-18 16:28:58 + 2025-08-05 12:42:04 cvxpy_clarabel cvxpy-1.6.5-CLARABEL-0.11.0 - truss8_sdp + qap10 SDP SDPLIB OPTIMAL - 8.4234 - 1.331145e+02 - 20 - -1.526529e-07 + 25.7932 + 1.092598e+03 + 26 + -9.162909e-08 443b599d Darwin (8CPU, 24GB) - 2025-07-18 16:35:13 + 2025-07-18 13:11:11 cvxpy_cvxopt - cvxpy-1.6.5-CVXOPT-1.3.2 - truss8_sdp + unknown + qap10 SDP SDPLIB - OPTIMAL - 5.3380 - 1.331146e+02 + ERROR + 4.6251 + โ + โ โ - 1.393005e-09 443b599d Darwin (8CPU, 24GB) - 2025-07-18 16:35:20 - - - matlab_sdpt3 - SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) - truss8_sdp - SDP - SDPLIB - OPTIMAL - 1.0131 - 1.331146e+02 - 16 - 7.417236e-08 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 14:34:56 + 2025-07-18 13:11:16 - matlab_sedumi - SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) - truss8_sdp + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap10 SDP SDPLIB - OPTIMAL - 1.1124 - 1.331146e+02 - 24 - 2.426930e-09 - 96ca0437 - Darwin (8CPU, 24GB) - 2025-07-19 13:15:30 - - - matlab_sdpt3 - unknown - gpp100 - UNKNOWN - SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:05 + 2025-07-18 13:13:02 - matlab_sedumi - unknown - gpp100 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap10 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:39 + 2025-07-18 13:13:02 - matlab_sdpt3 - unknown - gpp124-1 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap10 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:10 + 2025-07-18 13:13:02 - matlab_sedumi - unknown - gpp124-1 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap10 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:44 + 2025-07-18 13:13:02 - matlab_sdpt3 - unknown - gpp124-2 - UNKNOWN + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap10 + SDP SDPLIB - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL (INACCURATE) + 99.8173 + 1.092492e+03 + 100000 + -5.265245e-02 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:36:15 + 2025-08-04 15:39:35 - matlab_sedumi - unknown - gpp124-2 - UNKNOWN + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap10 + SDP SDPLIB - ERROR + OPTIMAL (INACCURATE) + 0.5982 + 1.093072e+03 + โ + 5.121910e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:12:55 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap10 + SDP + SDPLIB + UNKNOWN + 0.8022 + 1.092540e+03 + 14 + 3.404161e-02 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:26 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap10 + SDP + SDPLIB + NUM_ERROR + 2.5004 + 1.092580e+03 + 26 + 2.304492e-04 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:50 + + + scipy_linprog + scipy-1.15.3 + qap10 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:13:02 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qap5 + SDP + SDPLIB + OPTIMAL + 0.0396 + 4.360000e+02 + 9 + -5.372198e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:01:58 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + qap5 + SDP + SDPLIB + OPTIMAL + 0.0582 + 4.360000e+02 + โ + -3.923994e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:01:58 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:03:31 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:03:31 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:03:31 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:03:31 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap5 + SDP + SDPLIB + OPTIMAL + 0.0151 + 4.360001e+02 + 225 + 2.674888e-04 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:01:58 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap5 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.0203 + 4.360404e+02 + โ + 4.055939e-02 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:01:58 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap5 + SDP + SDPLIB + OPTIMAL + 0.4685 + 4.360000e+02 + 10 + 3.872961e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:00:56 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap5 + SDP + SDPLIB + OPTIMAL + 0.2550 + 4.360000e+02 + 14 + 2.341411e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:19 + + + scipy_linprog + scipy-1.15.3 + qap5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:03:31 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qap6 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.3584 + 3.814328e+02 + 26 + -2.539668e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:04:47 + + + cvxpy_cvxopt + unknown + qap6 + SDP + SDPLIB + ERROR + 0.4548 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:04:48 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:07 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:07 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:07 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:07 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap6 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 11.1401 + 3.811580e+02 + 100000 + -1.367689e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:04:59 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap6 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.0942 + 3.815253e+02 + โ + 1.390729e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:04:59 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap6 + SDP + SDPLIB + OPTIMAL + 0.7567 + 3.813937e+02 + 19 + 2.272172e-02 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:02 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap6 + SDP + SDPLIB + NUM_ERROR + 0.3632 + 3.814237e+02 + 22 + 3.556185e-04 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:25 + + + scipy_linprog + scipy-1.15.3 + qap6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:07 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qap7 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 1.2171 + 4.248122e+02 + 26 + -4.287784e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:49 + + + cvxpy_cvxopt + unknown + qap7 + SDP + SDPLIB + ERROR + 0.7406 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:05:50 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap7 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:18 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap7 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:18 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap7 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:19 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap7 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:19 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap7 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 20.1258 + 4.245226e+02 + 100000 + -1.450466e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:10 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap7 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.1466 + 4.248762e+02 + โ + 7.639655e-02 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:10 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap7 + SDP + SDPLIB + UNKNOWN + 0.6351 + 4.247884e+02 + 19 + 1.583065e-02 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:08 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap7 + SDP + SDPLIB + NUM_ERROR + 0.5065 + 4.248084e+02 + 24 + 2.006405e-04 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:30 + + + scipy_linprog + scipy-1.15.3 + qap7 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:06:19 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qap8 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 3.9440 + 7.569434e+02 + 29 + -2.113024e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:08 + + + cvxpy_cvxopt + unknown + qap8 + SDP + SDPLIB + ERROR + 1.6612 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:09 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap8 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:55 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap8 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:55 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap8 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:55 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap8 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:55 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap8 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 36.5095 + 7.565712e+02 + 100000 + -1.822222e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:46 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap8 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.2393 + 7.570348e+02 + โ + 9.395162e-02 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:46 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap8 + SDP + SDPLIB + OPTIMAL + 0.5660 + 7.568396e+02 + 15 + 5.821534e-02 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:14 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap8 + SDP + SDPLIB + NUM_ERROR + 0.8749 + 7.569341e+02 + 27 + 2.874635e-04 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:36 + + + scipy_linprog + scipy-1.15.3 + qap8 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:07:55 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qap9 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 9.7192 + 1.409942e+03 + 24 + -2.829218e-05 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:08:56 + + + cvxpy_cvxopt + unknown + qap9 + SDP + SDPLIB + ERROR + 2.7372 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:08:59 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qap9 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:54 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qap9 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:54 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qap9 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:54 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qap9 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:55 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + qap9 + SDP + SDPLIB + OPTIMAL + 44.7904 + 1.409918e+03 + 74700 + -1.310406e-02 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:44 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qap9 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.3657 + 1.410256e+03 + โ + 3.610297e-01 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:45 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qap9 + SDP + SDPLIB + OPTIMAL + 0.8992 + 1.409919e+03 + 17 + 1.127060e-02 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:19 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qap9 + SDP + SDPLIB + NUM_ERROR + 1.2836 + 1.409918e+03 + 25 + 2.496474e-04 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:40:42 + + + scipy_linprog + scipy-1.15.3 + qap9 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:09:55 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + qpG11 + SDP + SDPLIB + OPTIMAL + 20.1104 + -2.448659e+03 + 15 + -1.892340e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:49:36 + + + cvxpy_cvxopt + unknown + qpG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:46:59 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qpG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:31 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qpG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:31 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qpG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:32 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qpG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:32 + + + cvxpy_scs + unknown + qpG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:41:36 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + qpG11 + SDP + SDPLIB + OPTIMAL + 29.9257 + -2.448659e+03 + โ + 8.327262e-05 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:23 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qpG11 + SDP + SDPLIB + OPTIMAL + 3.4545 + -2.448659e+03 + 15 + 4.198108e-05 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:45:28 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + qpG11 + SDP + SDPLIB + OPTIMAL + 142.5549 + -2.448659e+03 + 17 + 1.207991e-08 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 13:30:50 + + + scipy_linprog + scipy-1.15.3 + qpG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 13:54:32 + + + cvxpy_clarabel + unknown + qpG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 0.9330 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:35:40 + + + cvxpy_cvxopt + unknown + qpG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 0.9213 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:35:41 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + qpG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:03:32 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + qpG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:03:32 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + qpG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:03:33 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + qpG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:03:33 + + + cvxpy_scs + unknown + qpG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 0.9268 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:35:43 + + + cvxpy_sdpa + unknown + qpG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 0.9359 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:35:39 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + qpG51 + SDP + SDPLIB + OPTIMAL + 6.1998 + -1.181800e+04 + 17 + 5.020951e-05 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:46:39 + + + matlab_sedumi + unknown + qpG51 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:49:21 + + + scipy_linprog + scipy-1.15.3 + qpG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:03:33 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + ss30 + SDP + SDPLIB + OPTIMAL + 41.1878 + -2.023951e+01 + 29 + -4.073399e-10 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:06:06 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + ss30 + SDP + SDPLIB + OPTIMAL + 21.2647 + -2.023951e+01 + โ + -6.832025e-09 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:06:28 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + ss30 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:10:03 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + ss30 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:10:03 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + ss30 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:10:03 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + ss30 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:10:03 + + + cvxpy_scs + unknown + ss30 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:43:36 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + ss30 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 7.8102 + -2.023951e+01 + โ + 2.960846e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:09:55 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + ss30 + SDP + SDPLIB + UNKNOWN + 2.8822 + -2.023951e+01 + 21 + 3.122747e-06 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:01:35 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + ss30 + SDP + SDPLIB + NUM_ERROR + 6.7607 + -2.023951e+01 + 37 + 3.747289e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:41:03 + + + scipy_linprog + scipy-1.15.3 + ss30 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:10:03 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + theta1 + SDP + SDPLIB + OPTIMAL + 0.5781 + -2.300000e+01 + 12 + -4.884599e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:05 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + theta1 + SDP + SDPLIB + OPTIMAL + 0.3024 + -2.300000e+01 + โ + 1.433627e-10 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:05 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:22 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:22 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:22 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:22 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta1 + SDP + SDPLIB + OPTIMAL + 0.0596 + -2.299958e+01 + 250 + -1.017686e-04 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:05 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta1 + SDP + SDPLIB + OPTIMAL + 0.0253 + -2.300000e+01 + โ + 1.217067e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:05 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta1 + SDP + SDPLIB + OPTIMAL + 0.3554 + -2.300000e+01 + 11 + 3.854635e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:06:19 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta1 + SDP + SDPLIB + OPTIMAL + 0.2918 + -2.300000e+01 + 19 + 5.460983e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:46:55 + + + scipy_linprog + scipy-1.15.3 + theta1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:11:22 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + theta2 + SDP + SDPLIB + OPTIMAL + 10.5589 + -3.287917e+01 + 10 + -2.408608e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:36 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + theta2 + SDP + SDPLIB + OPTIMAL + 2.0424 + -3.287917e+01 + โ + -4.596501e-11 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:38 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:50 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:50 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:50 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:50 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta2 + SDP + SDPLIB + OPTIMAL + 0.4117 + -3.287909e+01 + 350 + -7.891653e-05 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:38 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta2 + SDP + SDPLIB + OPTIMAL + 0.4772 + -3.287917e+01 + โ + 4.761739e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:39 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta2 + SDP + SDPLIB + OPTIMAL + 0.5581 + -3.287917e+01 + 13 + 9.436829e-08 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:06:25 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta2 + SDP + SDPLIB + OPTIMAL + 0.6316 + -3.287917e+01 + 20 + 2.643496e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:47:01 + + + scipy_linprog + scipy-1.15.3 + theta2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:12:50 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + theta3 + SDP + SDPLIB + OPTIMAL + 67.7079 + -4.216698e+01 + 10 + -6.625869e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:24:54 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + theta3 + SDP + SDPLIB + OPTIMAL + 7.7982 + -4.216698e+01 + โ + 1.778488e-10 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:02 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:15 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:15 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:15 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:15 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta3 + SDP + SDPLIB + OPTIMAL + 1.5866 + -4.216698e+01 + 450 + 1.728495e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:03 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta3 + SDP + SDPLIB + OPTIMAL + 1.0481 + -4.216698e+01 + โ + 6.623021e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:05 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta3 + SDP + SDPLIB + OPTIMAL + 1.1651 + -4.216698e+01 + 14 + 2.231640e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:06:33 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta3 + SDP + SDPLIB + OPTIMAL + 2.4166 + -4.216698e+01 + 20 + 4.632419e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:47:08 + + + scipy_linprog + scipy-1.15.3 + theta3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:25:15 + + + cvxpy_clarabel + unknown + theta4 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:37:47 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + theta4 + SDP + SDPLIB + OPTIMAL + 29.5958 + -5.032122e+01 + โ + 1.082725e-10 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:38:18 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta4 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:19 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta4 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:20 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta4 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:20 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta4 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:19 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta4 + SDP + SDPLIB + OPTIMAL + 2.6698 + -5.032166e+01 + 325 + -1.299900e-04 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:38:22 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta4 + SDP + SDPLIB + OPTIMAL + 2.1731 + -5.032122e+01 + โ + 1.133978e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:35:46 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta4 + SDP + SDPLIB + OPTIMAL + 1.6902 + -5.032122e+01 + 14 + 7.229009e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:10:09 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta4 + SDP + SDPLIB + OPTIMAL + 9.0291 + -5.032122e+01 + 20 + 7.018571e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:53:42 + + + scipy_linprog + scipy-1.15.3 + theta4 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:20 + + + cvxpy_clarabel + unknown + theta5 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:40:31 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + theta5 + SDP + SDPLIB + OPTIMAL + 73.0005 + -5.723231e+01 + โ + 3.430785e-10 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:41:45 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:21 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:22 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:22 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:21 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta5 + SDP + SDPLIB + OPTIMAL + 5.0074 + -5.723241e+01 + 325 + 4.244311e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:41:52 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta5 + SDP + SDPLIB + OPTIMAL + 5.2908 + -5.723231e+01 + โ + 1.417773e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:38:29 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta5 + SDP + SDPLIB + OPTIMAL + 3.2878 + -5.723231e+01 + 14 + 5.136266e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:10:21 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta5 + SDP + SDPLIB + OPTIMAL + 32.2398 + -5.723231e+01 + 23 + 1.207007e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:54:24 + + + scipy_linprog + scipy-1.15.3 + theta5 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:23 + + + cvxpy_clarabel + unknown + theta6 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:20:38 + + + cvxpy_cvxopt + unknown + theta6 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:22:39 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + theta6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:23 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + theta6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:25 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + theta6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:25 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + theta6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:24 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + theta6 + SDP + SDPLIB + OPTIMAL + 8.4151 + -6.347714e+01 + 325 + 2.326921e-05 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:22:49 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + theta6 + SDP + SDPLIB + OPTIMAL + 10.4626 + -6.347709e+01 + โ + 1.525020e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:18:36 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + theta6 + SDP + SDPLIB + OPTIMAL + 5.6313 + -6.347709e+01 + 14 + 1.010083e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:10:38 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + theta6 + SDP + SDPLIB + OPTIMAL + 96.7364 + -6.347709e+01 + 24 + 1.114038e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:56:13 + + + scipy_linprog + scipy-1.15.3 + theta6 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:26 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + thetaG11 + SDP + SDPLIB + OPTIMAL + 14.3895 + -4.000000e+02 + 11 + -2.981996e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:23:21 + + + cvxpy_cvxopt + unknown + thetaG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:25:22 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + thetaG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:26 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + thetaG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:27 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + thetaG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:28 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + thetaG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:27 + + + cvxpy_scs + unknown + thetaG11 + SDP + SDPLIB + TIMEOUT + 120.0000 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:27:22 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + thetaG11 + SDP + SDPLIB + OPTIMAL + 14.3415 + -4.000000e+02 + โ + 9.196433e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:23:05 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + thetaG11 + SDP + SDPLIB + OPTIMAL + 6.1212 + -4.000000e+02 + 18 + 5.245455e-06 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:30:23 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + thetaG11 + SDP + SDPLIB + OPTIMAL + 69.4300 + -4.000000e+02 + 33 + 1.056321e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 13:10:16 + + + scipy_linprog + scipy-1.15.3 + thetaG11 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:28 + + + cvxpy_clarabel + unknown + thetaG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.5411 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:41:57 + + + cvxpy_cvxopt + unknown + thetaG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.5293 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:42:00 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + thetaG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:29 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + thetaG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:31 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + thetaG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:32 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + thetaG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:30 + + + cvxpy_scs + unknown + thetaG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.5387 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:42:02 + + + cvxpy_sdpa + unknown + thetaG51 + SDP + SDPLIB + SUBPROCESS_ERROR + 1.5420 + โ + โ + โ + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 14:41:54 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + thetaG51 + SDP + SDPLIB + UNKNOWN + 138.0543 + -3.490000e+02 + 39 + 5.724028e-06 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:34:40 + + + matlab_sedumi + unknown + thetaG51 + SDP + SDPLIB + TIMEOUT + 300.0000 + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 14:41:01 + + + scipy_linprog + scipy-1.15.3 + thetaG51 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 0d9be48d + Darwin (8CPU, 24GB) + 2025-07-22 14:42:33 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss1 + SDP + SDPLIB + OPTIMAL + 0.0054 + 8.999996e+00 + 11 + -2.155732e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss1 + SDP + SDPLIB + OPTIMAL + 0.0277 + 8.999996e+00 + โ + -1.446455e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss1 + SDP + SDPLIB + OPTIMAL + 0.0054 + 9.000014e+00 + 175 + 6.547843e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss1 + SDP + SDPLIB + OPTIMAL + 0.0138 + 8.999997e+00 + โ + 2.506270e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss1 + SDP + SDPLIB + OPTIMAL + 0.2426 + 8.999997e+00 + 9 + 2.284568e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:05:43 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss1 + SDP + SDPLIB + OPTIMAL + 0.2797 + 8.999996e+00 + 13 + 4.998519e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:46:18 + + + scipy_linprog + scipy-1.15.3 + truss1 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss2 + SDP + SDPLIB + OPTIMAL + 0.0284 + 1.233803e+02 + 14 + -6.241783e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss2 + SDP + SDPLIB + OPTIMAL + 0.3432 + 1.233804e+02 + โ + -5.820908e-09 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:51 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:35 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss2 + SDP + SDPLIB + OPTIMAL + 0.8349 + 1.233861e+02 + 20875 + -7.052666e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:52 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss2 + SDP + SDPLIB + OPTIMAL + 0.0701 + 1.233804e+02 + โ + 4.581987e-06 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:08:53 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss2 + SDP + SDPLIB + OPTIMAL + 0.3628 + 1.233804e+02 + 13 + 9.059828e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:05:49 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss2 + SDP + SDPLIB + OPTIMAL + 0.3927 + 1.233804e+02 + 20 + 6.897466e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 12:46:24 + + + scipy_linprog + scipy-1.15.3 + truss2 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:09:36 + + + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss3 + SDP + SDPLIB + OPTIMAL + 0.0086 + 9.109996e+00 + 12 + -1.354255e-09 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:41 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss3 + SDP + SDPLIB + OPTIMAL + 0.0621 + 9.109996e+00 + โ + -3.333698e-09 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:41 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:48 + + + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:48 + + + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss3 + SDP + SDPLIB + UNSUPPORTED + โ + โ + โ + โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:48 + + + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss3 + SDP + SDPLIB + UNSUPPORTED + โ โ โ โ + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:48 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss3 + SDP + SDPLIB + OPTIMAL + 0.5393 + 9.110042e+00 + 44625 + -6.101103e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:41 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss3 + SDP + SDPLIB + OPTIMAL + 0.0168 + 9.109996e+00 โ + 3.772590e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:33:41 + + + matlab_sdpt3 + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss3 + SDP + SDPLIB + OPTIMAL + 0.2912 + 9.109996e+00 + 12 + 1.372490e-07 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 14:05:54 + + + matlab_sedumi + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss3 + SDP + SDPLIB + OPTIMAL + 0.2865 + 9.109996e+00 + 15 + 5.835563e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:16:49 + 2025-07-19 12:46:29 - matlab_sdpt3 - unknown - gpp124-3 - UNKNOWN + scipy_linprog + scipy-1.15.3 + truss3 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:20 + 2025-07-18 16:33:48 - matlab_sedumi - unknown - gpp124-3 - UNKNOWN + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss4 + SDP SDPLIB - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.0057 + 9.009996e+00 + 10 + -3.247332e-08 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:54 + 2025-07-18 16:43:12 - matlab_sdpt3 - unknown - gpp124-4 - UNKNOWN + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss4 + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 0.0388 + 9.009996e+00 โ - 96ca0437 + -2.907509e-08 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:25 + 2025-07-18 16:43:12 - matlab_sedumi - unknown - gpp124-4 - UNKNOWN + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss4 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:59 + 2025-07-18 16:43:18 - matlab_sdpt3 - unknown - gpp250-1 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss4 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:30 + 2025-07-18 16:43:18 - matlab_sedumi - unknown - gpp250-1 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss4 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:17:04 + 2025-07-18 16:43:18 - matlab_sdpt3 - unknown - gpp250-2 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss4 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:35 + 2025-07-18 16:43:18 - matlab_sedumi - unknown - gpp250-2 - UNKNOWN + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss4 + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 0.0064 + 9.009997e+00 + 225 + 7.824718e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:43:12 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss4 + SDP + SDPLIB + OPTIMAL + 0.0147 + 9.009997e+00 โ - 96ca0437 + 4.942070e-07 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:17:09 + 2025-07-18 16:43:12 matlab_sdpt3 - unknown - gpp250-3 - UNKNOWN + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss4 + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 0.2856 + 9.009996e+00 + 11 + 1.558156e-07 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:36:40 + 2025-07-19 14:06:00 matlab_sedumi - unknown - gpp250-3 - UNKNOWN + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss4 + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 0.2638 + 9.009996e+00 + 14 + 5.320549e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:17:14 + 2025-07-19 12:46:35 - matlab_sdpt3 - unknown - gpp250-4 - UNKNOWN + scipy_linprog + scipy-1.15.3 + truss4 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:45 + 2025-07-18 16:43:18 - matlab_sedumi - unknown - gpp250-4 - UNKNOWN + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss5_sdp + SDP SDPLIB - ERROR + OPTIMAL + 0.4975 + 1.326357e+02 + 18 + -7.954185e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:34:38 + + + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss5_sdp + SDP + SDPLIB + OPTIMAL + 1.2630 + 1.326357e+02 + โ + -9.058994e-09 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:34:40 + + + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss5_sdp + SDP + SDPLIB + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:17:19 + 2025-08-05 12:34:15 - matlab_sdpt3 - unknown - gpp500-1 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss5_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:36:50 + 2025-08-05 12:34:21 - matlab_sedumi - unknown - gpp500-1 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss5_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:17:24 + 2025-08-05 12:34:24 - matlab_sdpt3 - unknown - gpp500-2 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss5_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-05 12:34:18 + + + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss5_sdp + SDP + SDPLIB + OPTIMAL + 22.3950 + 1.326703e+02 + 83775 + -4.112527e-06 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:36:55 + 2025-07-18 16:35:03 - matlab_sedumi - unknown - gpp500-2 - UNKNOWN + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss5_sdp + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 0.2245 + 1.326357e+02 โ - 96ca0437 + 4.425149e-06 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:17:29 + 2025-07-18 16:35:04 matlab_sdpt3 - unknown - gpp500-3 - UNKNOWN + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss5_sdp + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 1.0471 + 1.326357e+02 + 15 + 1.515941e-07 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:36:59 + 2025-07-19 14:34:48 matlab_sedumi - unknown - gpp500-3 - UNKNOWN + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss5_sdp + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 0.5943 + 1.326357e+02 + 23 + 4.508252e-09 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:17:33 + 2025-07-19 13:15:22 - matlab_sdpt3 - unknown - gpp500-4 - UNKNOWN + scipy_linprog + scipy-1.15.3 + truss5_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:37:04 + 2025-08-05 12:34:26 - matlab_sedumi - unknown - gpp500-4 - UNKNOWN + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss6 + SDP SDPLIB - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.2537 + 9.010003e+02 + 25 + -5.417627e-06 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:17:38 + 2025-07-18 16:27:33 - cvxpy_clarabel + cvxpy_cvxopt unknown - mcp100 - UNKNOWN + truss6 + SDP SDPLIB ERROR - 0.0000 + 1.9965 โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:00:39 + 2025-07-18 16:27:37 - matlab_sdpt3 - unknown - mcp100 - UNKNOWN + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss6 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:01 + 2025-07-18 16:28:05 - matlab_sedumi - unknown - mcp100 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss6 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:15:35 + 2025-07-18 16:28:07 - cvxpy_clarabel - unknown - mcp124-1 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss6 + SDP SDPLIB - ERROR - 0.0000 + UNSUPPORTED + โ โ โ โ 443b599d Darwin (8CPU, 24GB) - 2025-07-18 13:00:52 + 2025-07-18 16:28:08 - matlab_sdpt3 - unknown - mcp124-1 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss6 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:06 + 2025-07-18 16:28:10 - matlab_sedumi - unknown - mcp124-1 - UNKNOWN + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss6 + SDP SDPLIB - ERROR - โ + OPTIMAL + 14.3299 + 9.010951e+02 + 99775 + -1.537043e-07 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:27:53 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss6 + SDP + SDPLIB + INFEASIBLE + 0.2910 โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:15:40 + 2025-07-18 16:27:56 matlab_sdpt3 - unknown - mcp124-2 - UNKNOWN + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss6 + SDP SDPLIB - ERROR - โ - โ - โ - โ + MAX_ITER + 0.5691 + 9.010014e+02 + 24 + 7.350973e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:35:11 + 2025-07-19 14:06:06 matlab_sedumi - unknown - mcp124-2 - UNKNOWN + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss6 + SDP SDPLIB - ERROR - โ - โ - โ - โ + NUM_ERROR + 0.9868 + 9.010014e+02 + 27 + 6.734138e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:15:45 + 2025-07-19 12:46:42 - matlab_sdpt3 - unknown - mcp124-3 - UNKNOWN + scipy_linprog + scipy-1.15.3 + truss6 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:15 + 2025-07-18 16:28:12 - matlab_sedumi - unknown - mcp124-3 - UNKNOWN + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss7 + SDP SDPLIB - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 0.1342 + 9.000011e+02 + 22 + -5.159903e-06 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:15:50 + 2025-07-18 16:28:38 - matlab_sdpt3 + cvxpy_cvxopt unknown - mcp124-4 - UNKNOWN + truss7 + SDP SDPLIB ERROR + 1.2563 โ โ โ - โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:20 + 2025-07-18 16:28:40 - matlab_sedumi - unknown - mcp124-4 - UNKNOWN + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss7 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:15:55 + 2025-07-18 16:28:54 - matlab_sdpt3 - unknown - mcp250-1 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss7 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:25 + 2025-07-18 16:28:55 - matlab_sedumi - unknown - mcp250-1 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss7 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:00 + 2025-07-18 16:28:56 - matlab_sdpt3 - unknown - mcp250-2 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss7 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:30 + 2025-07-18 16:28:57 - matlab_sedumi - unknown - mcp250-2 - UNKNOWN + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss7 + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 3.8631 + 9.000356e+02 + 59000 + -3.324669e-08 + 443b599d + Darwin (8CPU, 24GB) + 2025-07-18 16:28:45 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss7 + SDP + SDPLIB + OPTIMAL (INACCURATE) + 0.3339 + 9.000013e+02 โ - 96ca0437 + -1.181402e-04 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:05 + 2025-07-18 16:28:46 matlab_sdpt3 - unknown - mcp250-3 - UNKNOWN + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss7 + SDP SDPLIB - ERROR - โ - โ - โ - โ + UNKNOWN + 0.5442 + 9.000014e+02 + 22 + 1.599447e-05 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:35:35 + 2025-07-19 14:06:13 matlab_sedumi - unknown - mcp250-3 - UNKNOWN + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss7 + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 1.1932 + 9.000014e+02 + 27 + 6.316998e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 13:16:10 + 2025-07-19 12:46:50 - matlab_sdpt3 - unknown - mcp250-4 - UNKNOWN + scipy_linprog + scipy-1.15.3 + truss7 + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:40 + 2025-07-18 16:28:58 - matlab_sedumi - unknown - mcp250-4 - UNKNOWN + cvxpy_clarabel + cvxpy-1.6.5-CLARABEL-0.11.0 + truss8_sdp + SDP SDPLIB - ERROR - โ - โ - โ - โ - 96ca0437 + OPTIMAL + 8.4234 + 1.331145e+02 + 20 + -1.526529e-07 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 13:16:14 + 2025-07-18 16:35:13 - matlab_sdpt3 - unknown - mcp500-1 - UNKNOWN + cvxpy_cvxopt + cvxpy-1.6.5-CVXOPT-1.3.2 + truss8_sdp + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 5.3380 + 1.331146e+02 โ - 96ca0437 + 1.393005e-09 + 443b599d Darwin (8CPU, 24GB) - 2025-07-19 14:35:45 + 2025-07-18 16:35:20 - matlab_sedumi - unknown - mcp500-1 - UNKNOWN + cvxpy_ecos + cvxpy-1.6.5-ECOS-2.0.14 + truss8_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:16:19 + 2025-08-05 12:34:32 - matlab_sdpt3 - unknown - mcp500-2 - UNKNOWN + cvxpy_highs + cvxpy-1.6.5-HIGHS-1.11.0 + truss8_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:35:50 + 2025-08-05 12:34:44 - matlab_sedumi - unknown - mcp500-2 - UNKNOWN + cvxpy_osqp + cvxpy-1.6.5-OSQP-1.0.4 + truss8_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:16:24 + 2025-08-05 12:34:49 - matlab_sdpt3 - unknown - mcp500-3 - UNKNOWN + cvxpy_scip + cvxpy-1.6.5-SCIP-5.5.0 + truss8_sdp + SDP SDPLIB - ERROR + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 14:35:55 + 2025-08-05 12:34:37 - matlab_sedumi - unknown - mcp500-3 - UNKNOWN + cvxpy_scs + cvxpy-1.6.5-SCS-3.2.7.post2 + truss8_sdp + SDP SDPLIB - ERROR - โ - โ - โ + OPTIMAL + 79.1725 + 1.332065e+02 + 91025 + -3.545822e-06 + f95b7a82 + Darwin (8CPU, 24GB) + 2025-08-04 15:44:58 + + + cvxpy_sdpa + cvxpy-1.6.5-SDPA-0.2.2 + truss8_sdp + SDP + SDPLIB + OPTIMAL + 1.3374 + 1.331146e+02 โ - 96ca0437 + 1.799799e-06 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:16:29 + 2025-08-04 15:47:05 matlab_sdpt3 - unknown - mcp500-4 - UNKNOWN + SDPT3-4.0-20240410 (MATLAB 24.1.0.2537033 (R2024a)) + truss8_sdp + SDP SDPLIB - ERROR - โ - โ - โ - โ + OPTIMAL + 1.0131 + 1.331146e+02 + 16 + 7.417236e-08 96ca0437 Darwin (8CPU, 24GB) - 2025-07-19 14:36:00 + 2025-07-19 14:34:56 matlab_sedumi - unknown - mcp500-4 - UNKNOWN + SeDuMi-1.3.7 (MATLAB 24.1.0.2537033 (R2024a)) + truss8_sdp + SDP SDPLIB - ERROR + OPTIMAL + 1.1124 + 1.331146e+02 + 24 + 2.426930e-09 + 96ca0437 + Darwin (8CPU, 24GB) + 2025-07-19 13:15:30 + + + scipy_linprog + scipy-1.15.3 + truss8_sdp + SDP + SDPLIB + UNSUPPORTED โ โ โ โ - 96ca0437 + f95b7a82 Darwin (8CPU, 24GB) - 2025-07-19 13:16:34 + 2025-08-05 12:34:55 diff --git a/docs/pages/results_matrix.html b/docs/pages/results_matrix.html index 4baa10a..a995660 100644 --- a/docs/pages/results_matrix.html +++ b/docs/pages/results_matrix.html @@ -145,6 +145,29 @@ border-top: 3px solid #34495e !important; } + /* Gray styling for non-solution statuses */ + .status-timeout, + .status-sigkill, + .status-subprocess-error, + .status-unsupported { + color: #999 !important; + } + + .status-timeout .cell-status, + .status-timeout .cell-solve-time, + .status-timeout .cell-objective, + .status-sigkill .cell-status, + .status-sigkill .cell-solve-time, + .status-sigkill .cell-objective, + .status-subprocess-error .cell-status, + .status-subprocess-error .cell-solve-time, + .status-subprocess-error .cell-objective, + .status-unsupported .cell-status, + .status-unsupported .cell-solve-time, + .status-unsupported .cell-objective { + color: #999 !important; + } + /* Cell layout for fixed 3-row structure */ .cell-content { display: flex; @@ -260,7 +283,7 @@ ๐ฌ Optimization Solver Benchmark Results Matrix - Problems ร Solvers - Generated: 2025-07-19 23:39:48 + Generated: 2025-08-05 16:09:43 UTC @@ -325,59 +348,59 @@ ๐ Legend 54.541s 2.34460e+01 - + - โ - - + OPTIMAL + 121.132s + 2.34398e+01 - + - โ - - + SIGKILL + 30.604s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ @@ -399,19 +422,19 @@ ๐ Legend ERROR - 0.140s + 0.194s โ OPTIMAL (INACCURATE) - 0.234s + 0.230s -1.64011e-08 OPTIMAL - 2.353s + 2.192s -2.49770e-08 @@ -470,25 +493,25 @@ ๐ Legend ERROR - 2.247s + 1.914s โ OPTIMAL (INACCURATE) - 4.258s + 4.075s -4.48847e-08 OPTIMAL - 62.819s + 58.700s -2.48278e-08 OPTIMAL - 1.264s + 1.221s -7.95628e-06 @@ -526,112 +549,41 @@ ๐ Legend DIMACS fap09 SDP - 1.08000e+01 - - โ - - - - + 1.08000e+01 TIMEOUT 300.000s โ - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - + - โ - - + TIMEOUT + 300.000s + โ - + - โ - - + INFEASIBLE + 65.830s + โ - + - โ - - + TIMEOUT + 120.000s + โ - - - DIMACS - filter48 - SDP - 1.41613e+00 + - MAX_ITER - 3.386s - 1.41613e+00 + TIMEOUT + 120.000s + โ OPTIMAL - 0.832s - 1.41613e+00 - - - - OPTIMAL (INACCURATE) - 40.135s - 1.41613e+00 - - - - OPTIMAL (INACCURATE) - 1.459s - 1.41610e+00 - - - - ERROR - 7.210s - โ - - - - OPTIMAL (INACCURATE) - 31.473s - 1.40907e+00 + 89.284s + 1.07979e+01 @@ -666,114 +618,43 @@ ๐ Legend DIMACS - filtinf1 + filter48 SDP - โ - - INFEASIBLE - 2.779s - 0.00000e+00 - - - - ERROR - โ - โ - - - - INFEASIBLE - 34.271s - โ - - + 1.41613e+00 - ERROR - 3.723s - โ + MAX_ITER + 3.386s + 1.41613e+00 - + - ERROR - 17.944s - โ + OPTIMAL + 0.832s + 1.41613e+00 OPTIMAL (INACCURATE) - 37.568s - 0.00000e+00 - - - - UNSUPPORTED - โ - โ - - - - UNSUPPORTED - โ - โ - - - - UNSUPPORTED - โ - โ - - - - UNSUPPORTED - โ - โ - - - - UNSUPPORTED - โ - โ + 39.794s + 1.41613e+00 - - - DIMACS - hamming_11_2 - SDP - 1.70667e+02 + - ERROR - 16.614s - โ + OPTIMAL (INACCURATE) + 1.373s + 1.41610e+00 ERROR - โ + 6.714s โ - - - โ - - - - - - โ - - - - - - โ - - - - + - โ - - + OPTIMAL (INACCURATE) + 30.741s + 1.40907e+00 @@ -810,41 +691,41 @@ ๐ Legend DIMACS hamming_7_5_6 SDP - 4.26667e+01 + -4.26667e+01 OPTIMAL - 6.902s - -4.26667e+01 + 1.073s + -4.26667e+01 OPTIMAL 5.317s - -4.26667e+01 + -4.26667e+01 OPTIMAL - 0.607s - -4.26667e+01 + 0.597s + -4.26667e+01 OPTIMAL - 18.875s - -4.26667e+01 + 20.024s + -4.26667e+01 OPTIMAL - 6.382s - -4.26667e+01 + 5.853s + -4.26667e+01 OPTIMAL - 0.322s - -4.26666e+01 + 0.278s + -4.26666e+01 @@ -881,41 +762,41 @@ ๐ Legend DIMACS hamming_8_3_4 SDP - 2.56000e+01 + -2.56000e+01 OPTIMAL - 86.885s - -2.56000e+01 + 151.334s + -2.56000e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ OPTIMAL - 5.712s - -2.56000e+01 + 5.458s + -2.56000e+01 @@ -948,116 +829,45 @@ ๐ Legend โ - - DIMACS - hamming_9_5_6 - SDP - 8.53333e+01 - - ERROR - 12.240s - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - DIMACS hamming_9_8 SDP - 2.24000e+02 + -2.24000e+02 OPTIMAL - 6.828s - -2.24000e+02 + 2.259s + -2.24000e+02 OPTIMAL 26.298s - -2.24000e+02 + -2.24000e+02 OPTIMAL - 2.673s - -2.24000e+02 + 2.543s + -2.24000e+02 - + - โ - - + SIGKILL + 25.861s + โ - + - โ - - + TIMEOUT + 120.000s + โ OPTIMAL - 21.988s - -2.24000e+02 + 22.157s + -2.24000e+02 @@ -1186,19 +996,19 @@ ๐ Legend ERROR - 0.014s + 0.016s โ ERROR - 0.079s + 0.081s โ OPTIMAL (INACCURATE) - 2.832s + 2.823s -3.03386e+01 @@ -1251,25 +1061,25 @@ ๐ Legend OPTIMAL (INACCURATE) - 0.133s + 0.140s 5.97132e+00 OPTIMAL (INACCURATE) - 1.353s + 1.426s 5.96625e+00 ERROR - 0.563s + 0.579s โ OPTIMAL (INACCURATE) - 18.293s + 18.531s 5.94259e+00 @@ -1307,41 +1117,41 @@ ๐ Legend DIMACS torusg3-15 SDP - 3.13460e+03 + -3.13460e+03 OPTIMAL 96.854s -3.18811e+08 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + SIGKILL + 18.803s + โ - + - โ - - + SIGKILL + 18.889s + โ - + - โ - - + SIGKILL + 18.986s + โ - + - โ - - + SIGKILL + 19.029s + โ @@ -1378,7 +1188,7 @@ ๐ Legend DIMACS torusg3-8 SDP - 4.57358e+02 + -4.57358e+02 OPTIMAL 1.970s @@ -1390,29 +1200,29 @@ ๐ Legend 8.569s -4.83409e+07 - + - โ - - + OPTIMAL + 0.872s + -4.83409e+07 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + INFEASIBLE + 15.618s + โ - + - โ - - + INFEASIBLE + 0.303s + โ @@ -1449,41 +1259,41 @@ ๐ Legend DIMACS toruspm3-15-50 SDP - 3.47440e+03 + -3.47440e+03 OPTIMAL - 75.317s - -3.47479e+03 + 82.762s + -3.47479e+03 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + SIGKILL + 18.876s + โ - + - โ - - + SIGKILL + 19.004s + โ - + - โ - - + SIGKILL + 19.038s + โ - + - โ - - + SIGKILL + 19.105s + โ @@ -1520,41 +1330,41 @@ ๐ Legend DIMACS toruspm3-8-50 SDP - 5.27809e+02 + -5.27809e+02 OPTIMAL - 6.541s - -5.27809e+02 + 2.034s + -5.27809e+02 OPTIMAL 7.601s - -5.27809e+02 + -5.27809e+02 - + - โ - - + OPTIMAL + 0.645s + -5.27809e+02 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 54.695s + -5.27809e+02 - + - โ - - + TIMEOUT + 120.000s + โ @@ -1591,40 +1401,40 @@ ๐ Legend DIMACS truss5 SDP - 1.32636e+02 + 1.32636e+02 - ERROR - โ - โ + OPTIMAL + 0.675s + 1.32636e+02 - + - ERROR - โ - โ + OPTIMAL + 0.630s + 1.32636e+02 OPTIMAL - 0.151s + 0.148s 1.32636e+02 OPTIMAL (INACCURATE) - 0.425s + 0.421s 1.32635e+02 OPTIMAL - 1.207s + 1.182s 1.32636e+02 OPTIMAL - 21.933s + 22.059s 1.32670e+02 @@ -1662,40 +1472,40 @@ ๐ Legend DIMACS truss8 SDP - 1.33115e+02 + 1.33115e+02 - ERROR - โ - โ + OPTIMAL + 0.821s + 1.33115e+02 - + - ERROR - โ - โ + OPTIMAL + 1.017s + 1.33115e+02 OPTIMAL - 0.619s + 0.624s 1.33115e+02 OPTIMAL - 7.334s + 7.167s 1.33115e+02 OPTIMAL - 4.542s + 4.458s 1.33115e+02 OPTIMAL - 78.310s + 78.739s 1.33206e+02 @@ -1745,59 +1555,59 @@ ๐ Legend 0.592s -5.07031e-02 - + - โ - - + OPTIMAL (INACCURATE) + 28.021s + -2.03366e-03 - + - โ - - + OPTIMAL + 13.880s + -5.07031e-02 - + - โ - - + OPTIMAL + 14.257s + -5.07031e-02 - + - โ - - + OPTIMAL + 15.138s + -5.07026e-02 - + - โ - - + OPTIMAL + 14.232s + -5.07031e-02 - + - โ - - + OPTIMAL + 41.283s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ @@ -1816,59 +1626,59 @@ ๐ Legend 0.881s -1.30123e+01 - + - โ - - + OPTIMAL + 35.247s + -1.30122e+01 - + - โ - - + OPTIMAL + 16.365s + -1.30123e+01 - + - โ - - + OPTIMAL + 17.513s + -1.30123e+01 - + - โ - - + OPTIMAL + 21.879s + -1.30122e+01 - + - โ - - + OPTIMAL + 16.221s + -1.30123e+01 - + - โ - - + OPTIMAL + 63.724s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ @@ -1887,59 +1697,59 @@ ๐ Legend 0.603s -1.62897e+00 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 35.356s + -1.62897e+00 - + - โ - - + OPTIMAL + 41.318s + -1.62897e+00 - + - โ - - + OPTIMAL + 40.146s + -1.62897e+00 - + - โ - - + OPTIMAL + 33.706s + -1.62897e+00 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ @@ -1961,37 +1771,37 @@ ๐ Legend OPTIMAL (INACCURATE) - 37.455s + 38.031s -1.02569e-01 OPTIMAL - 16.747s + 16.313s -1.02570e-01 OPTIMAL - 17.025s + 16.379s -1.02570e-01 OPTIMAL - 17.142s + 17.036s -1.02569e-01 OPTIMAL - 16.910s + 16.771s -1.02570e-01 OPTIMAL - 50.822s + 50.647s โ @@ -2029,112 +1839,41 @@ ๐ Legend 12.183s -9.27724e-01 - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - + - UNSUPPORTED - โ + SIGKILL + 55.101s โ - + - UNSUPPORTED - โ + SIGKILL + 39.671s โ - + - UNSUPPORTED - โ + SIGKILL + 41.053s โ - - - DIMACS - nql180old - SOCP - โ - - UNKNOWN - 84.698s - 9.27765e-01 - - - - NUM_ERROR - 29.980s - 1.70588e+01 - - - - โ - - - - - - โ - - - - - - โ - - - - + - โ - - + SIGKILL + 40.408s + โ - + - โ - - + SIGKILL + 41.565s + โ - + - โ - - + SIGKILL + 40.533s + โ @@ -2174,25 +1913,25 @@ ๐ Legend ERROR - 42.347s + 47.525s โ OPTIMAL - 21.510s + 26.766s -9.46028e-01 ERROR - 22.300s + 24.002s โ OPTIMAL - 20.957s + 23.526s -9.46003e-01 @@ -2228,55 +1967,55 @@ ๐ Legend DIMACS - nql30old + nql60 SOCP - 9.46000e-01 + -9.35000e-01 OPTIMAL - 1.129s - 9.46029e-01 + 4.535s + -9.35053e-01 - + - NUM_ERROR - 0.744s - 9.46048e-01 + OPTIMAL + 0.966s + -9.35051e-01 - + - OPTIMAL (INACCURATE) - 54.417s - 9.90734e-01 + TIMEOUT + 120.000s + โ - + - OPTIMAL (INACCURATE) - 27.351s - 9.46038e-01 + TIMEOUT + 120.000s + โ - + - ERROR - 50.367s + TIMEOUT + 120.000s โ - + - OPTIMAL - 27.090s - 9.46031e-01 - - + TIMEOUT + 120.000s + โ + + - OPTIMAL - 28.647s - 9.46029e-01 + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -2299,55 +2038,55 @@ ๐ Legend DIMACS - nql60 + qssp30 SOCP - -9.35000e-01 + -6.49667e+00 - OPTIMAL - 4.535s - -9.35053e-01 + UNKNOWN + 0.703s + -6.49668e+00 OPTIMAL - 0.966s - -9.35051e-01 + 0.491s + -6.49667e+00 - + - โ - - + ERROR + 105.047s + โ - + - โ - - + OPTIMAL + 52.130s + -6.49668e+00 - + - โ - - + OPTIMAL + 82.567s + -6.49667e+00 - + - โ - - + OPTIMAL + 58.042s + -6.49666e+00 - + - โ - - + OPTIMAL + 52.149s + -6.49668e+00 - + - โ - - + TIMEOUT + 120.000s + โ @@ -2370,55 +2109,55 @@ ๐ Legend DIMACS - nql60old + qssp60 SOCP - 9.35000e-01 + -6.56270e+00 UNKNOWN - 5.327s - 9.35054e-01 + 2.368s + -6.56271e+00 - + - NUM_ERROR - 3.491s - 9.35162e-01 + OPTIMAL + 1.615s + -6.56270e+00 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -2441,126 +2180,126 @@ ๐ Legend DIMACS - qssp180old + sched_100_100_orig SOCP - 6.54613e+00 + 7.17367e+05 - โ - - + UNKNOWN + 2.529s + 7.17665e+05 NUM_ERROR - 84.516s - 3.16293e+02 + 3.387s + 7.17368e+05 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL (INACCURATE) + 0.923s + 7.17368e+05 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL (INACCURATE) + 69.412s + 1.42669e+06 - + - โ - - + OPTIMAL (INACCURATE) + 1.460s + 7.17388e+05 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ DIMACS - qssp30 + sched_100_100_scaled SOCP - -6.49667e+00 + 2.73307e+01 UNKNOWN - 0.703s - -6.49668e+00 + 1.908s + 2.73308e+01 OPTIMAL - 0.491s - -6.49667e+00 + 1.768s + 2.73308e+01 - + - ERROR - 104.954s + TIMEOUT + 120.000s โ - + - OPTIMAL - 52.388s - -6.49668e+00 + OPTIMAL (INACCURATE) + 0.815s + 2.73308e+01 - + - OPTIMAL - 77.062s - -6.49667e+00 + TIMEOUT + 120.000s + โ - + - OPTIMAL - 57.177s - -6.49666e+00 + OPTIMAL (INACCURATE) + 70.479s + 2.74325e+01 - + - OPTIMAL - 52.149s - -6.49668e+00 + ERROR + 1.658s + โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -2583,55 +2322,55 @@ ๐ Legend DIMACS - qssp30old + sched_100_50_orig SOCP - 6.49667e+00 + 1.81890e+05 - OPTIMAL - 3.244s - 6.49668e+00 + MAX_ITER + 1.320s + 1.81894e+05 - + - NUM_ERROR - 1.943s - 6.52436e+00 + OPTIMAL + 1.184s + 1.81890e+05 - + - โ - - + TIMEOUT + 120.000s + โ - + - OPTIMAL - 116.925s - 6.49668e+00 + OPTIMAL (INACCURATE) + 0.393s + 1.81890e+05 - + - โ - - + ERROR + 99.645s + โ - โ - - + UNBOUNDED (INACCURATE) + 37.752s + โ - + - โ - - + OPTIMAL (INACCURATE) + 0.462s + 1.81890e+05 - + - โ - - + TIMEOUT + 120.000s + โ @@ -2654,55 +2393,55 @@ ๐ Legend DIMACS - qssp60 + sched_100_50_scaled SOCP - -6.56270e+00 + 6.71650e+00 UNKNOWN - 2.368s - -6.56271e+00 + 1.180s + 6.71650e+01 OPTIMAL - 1.615s - -6.56270e+00 + 1.044s + 6.71650e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 0.393s + 6.71650e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL (INACCURATE) + 39.494s + 6.71952e+01 - + - โ - - + ERROR + 0.804s + โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -2725,55 +2464,55 @@ ๐ Legend DIMACS - qssp60old + sched_200_100_orig SOCP - 6.56270e+00 + 1.41360e+05 - OPTIMAL - 32.272s - 6.56271e+00 + MAX_ITER + 6.322s + 1.41399e+05 - + - NUM_ERROR - 7.343s - 8.25414e+00 + INFEASIBLE + 9.316s + 4.21942e+02 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + ERROR + 3.714s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - - - + ERROR + 6.632s + โ + + - โ - - + TIMEOUT + 120.000s + โ @@ -2796,55 +2535,55 @@ ๐ Legend DIMACS - sched_100_100_orig + sched_200_100_scaled SOCP - 7.17367e+05 + 5.18120e+01 UNKNOWN - 2.529s - 7.17665e+05 + 5.203s + 5.18120e+01 - + - NUM_ERROR - 3.387s - 7.17368e+05 + OPTIMAL + 5.779s + 5.18120e+01 - + - โ - - + TIMEOUT + 120.000s + โ OPTIMAL (INACCURATE) - 1.030s - 7.17368e+05 + 3.063s + 5.18120e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - OPTIMAL (INACCURATE) - 69.690s - 1.42669e+06 + TIMEOUT + 120.000s + โ OPTIMAL (INACCURATE) - 1.460s - 7.17388e+05 + 5.087s + 9.38152e+01 - + - โ - - + TIMEOUT + 120.000s + โ @@ -2867,55 +2606,55 @@ ๐ Legend DIMACS - sched_100_100_scaled + sched_50_50_orig SOCP - 2.73307e+01 + 2.66730e+04 - UNKNOWN - 1.908s - 2.73308e+01 + MAX_ITER + 0.706s + 2.66731e+04 OPTIMAL - 1.768s - 2.73308e+01 + 0.751s + 2.66730e+04 - + - โ - - + INFEASIBLE + 37.086s + โ - + - โ - - + OPTIMAL (INACCURATE) + 0.150s + 2.66730e+04 - + - โ - - + ERROR + 22.904s + โ - + - โ - - + OPTIMAL (INACCURATE) + 17.851s + 3.58095e+04 - + - โ - - + OPTIMAL + 0.171s + 2.66730e+04 - + - โ - - + TIMEOUT + 120.000s + โ @@ -2938,55 +2677,55 @@ ๐ Legend DIMACS - sched_100_50_orig + sched_50_50_scaled SOCP - 1.81890e+05 + 7.85204e+00 - MAX_ITER - 1.320s - 1.81894e+05 + OPTIMAL + 0.729s + 7.85204e+00 OPTIMAL - 1.184s - 1.81890e+05 + 0.515s + 7.85204e+00 - + - โ - - + OPTIMAL (INACCURATE) + 84.662s + 7.85204e+00 OPTIMAL (INACCURATE) - 0.395s - 1.81890e+05 + 0.148s + 7.85204e+00 ERROR - 108.756s - โ - - - - UNBOUNDED (INACCURATE) - 38.643s + 27.336s โ OPTIMAL (INACCURATE) - 0.462s - 1.81890e+05 + 18.689s + 7.85207e+00 - + + + ERROR + 0.311s + โ + + - โ - - + TIMEOUT + 120.000s + โ @@ -3007,57 +2746,57 @@ ๐ Legend โ - - DIMACS - sched_100_50_scaled - SOCP - 6.71650e+00 + + SDPLIB + arch0 + SDP + -5.66517e-01 - UNKNOWN - 1.180s - 6.71650e+01 + OPTIMAL + 1.694s + -5.66517e-01 OPTIMAL - 1.044s - 6.71650e+01 + 2.248s + -5.66517e-01 - + - โ - - + OPTIMAL + 3.569s + -5.66517e-01 OPTIMAL - 0.341s - 6.71650e+01 + 8.201s + -5.66517e-01 - + - ERROR - 89.214s - โ + OPTIMAL + 9.065s + -5.66517e-01 - + - โ - - + TIMEOUT + 120.000s + โ - + - ERROR - 0.804s + UNSUPPORTED + โ โ - + - โ - - + UNSUPPORTED + โ + โ @@ -3079,56 +2818,56 @@ ๐ Legend - DIMACS - sched_200_100_orig - SOCP - 1.41360e+05 + SDPLIB + arch2 + SDP + -6.71515e-01 - MAX_ITER - 6.322s - 1.41399e+05 + OPTIMAL + 1.868s + -6.71515e-01 - + - INFEASIBLE - 9.316s - 4.21942e+02 + OPTIMAL + 1.737s + -6.71515e-01 - + - โ - - + OPTIMAL (INACCURATE) + 3.959s + -6.71515e-01 - + - ERROR - 4.701s - โ + OPTIMAL + 5.354s + -6.71515e-01 - + - โ - - + OPTIMAL + 7.851s + -6.71515e-01 - + - โ - - + TIMEOUT + 120.000s + โ - + - ERROR - 6.632s + UNSUPPORTED + โ โ - + - โ - - + UNSUPPORTED + โ + โ @@ -3150,56 +2889,56 @@ ๐ Legend - DIMACS - sched_200_100_scaled - SOCP - 5.18120e+01 + SDPLIB + arch4 + SDP + -9.72627e-01 - UNKNOWN - 5.203s - 5.18120e+01 + OPTIMAL + 1.705s + -9.72627e-01 OPTIMAL - 5.779s - 5.18120e+01 + 1.874s + -9.72627e-01 - + - โ - - + OPTIMAL (INACCURATE) + 3.685s + -9.72627e-01 - + - โ - - + OPTIMAL + 4.969s + -9.72627e-01 - + - โ - - + OPTIMAL + 7.285s + -9.72627e-01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ @@ -3221,56 +2960,56 @@ ๐ Legend - DIMACS - sched_50_50_orig - SOCP - 2.66730e+04 - - MAX_ITER - 0.706s - 2.66731e+04 + SDPLIB + arch8 + SDP + -7.05698e+00 + + UNKNOWN + 1.458s + -7.05698e+00 OPTIMAL - 0.751s - 2.66730e+04 - - - - INFEASIBLE - 36.982s - โ + 3.128s + -7.05698e+00 OPTIMAL (INACCURATE) - 0.152s - 2.66730e+04 - - - - ERROR - 23.284s - โ + 3.770s + -7.05698e+00 - + - OPTIMAL (INACCURATE) - 18.283s - 3.58095e+04 + OPTIMAL + 5.161s + -7.05699e+00 OPTIMAL - 0.171s - 2.66730e+04 + 8.175s + -7.05698e+00 - + + + TIMEOUT + 120.000s + โ + + + + UNSUPPORTED + โ + โ + + - โ - - + UNSUPPORTED + โ + โ @@ -3292,56 +3031,44 @@ ๐ Legend - DIMACS - sched_50_50_scaled - SOCP - 7.85204e+00 + SDPLIB + control1 + SDP + -1.77846e+01 OPTIMAL - 0.729s - 7.85204e+00 + 0.299s + -1.77846e+01 OPTIMAL - 0.515s - 7.85204e+00 + 0.309s + -1.77846e+01 - + - OPTIMAL (INACCURATE) - 78.084s - 7.85204e+00 + OPTIMAL + 0.011s + -1.77846e+01 - + - OPTIMAL (INACCURATE) - 0.125s - 7.85204e+00 + OPTIMAL + 0.015s + -1.80577e+01 ERROR - 18.378s + 0.164s โ OPTIMAL (INACCURATE) - 18.664s - 7.85207e+00 - - - - ERROR - 0.311s - โ - - - - โ - - + 0.919s + -2.87823e-03 @@ -3361,259 +3088,200 @@ ๐ Legend โ โ - - - DIMACS - biomedP - UNKNOWN - 3.36000e+01 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - + + + SDPLIB + control10 + SDP + -3.85330e+01 - โ - - + UNKNOWN + 8.544s + -3.85329e+01 - โ - - + NUM_ERROR + 17.535s + -3.85331e+01 - + - โ - - + OPTIMAL (INACCURATE) + 11.582s + -3.85329e+01 - - - DIMACS - fap36 - UNKNOWN - โ + - โ - - + OPTIMAL + 58.743s + -3.85331e+01 ERROR - โ + 31.417s โ - - - โ - - - - - - โ - - - - - - โ - - - - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - DIMACS - industry2 - UNKNOWN - 6.56000e+01 + SDPLIB + control11 + SDP + -3.19590e+01 - ERROR - โ - โ + UNKNOWN + 11.559s + -3.19586e+01 - + - ERROR - โ - โ + NUM_ERROR + 30.733s + -3.19587e+01 - + - ERROR - โ - โ + OPTIMAL (INACCURATE) + 17.948s + -3.19585e+01 - + - ERROR - โ + TIMEOUT + 120.000s โ ERROR - โ + 43.229s โ - + - ERROR - โ + TIMEOUT + 120.000s โ - + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + SDPLIB - arch0 + control2 SDP - -5.66517e-01 + -8.30000e+00 - OPTIMAL - 1.891s - -5.66517e-01 + MAX_ITER + 0.410s + -8.30000e+00 OPTIMAL - 2.248s - -5.66517e-01 + 0.330s + -8.30000e+00 OPTIMAL - 3.588s - -5.66517e-01 + 0.036s + -8.30000e+00 OPTIMAL - 8.207s - -5.66517e-01 + 0.051s + -8.30000e+00 - + - OPTIMAL - 8.387s - -5.66517e-01 + ERROR + 0.170s + โ - + - โ - - + OPTIMAL (INACCURATE) + 4.875s + -1.96667e-03 @@ -3648,43 +3316,43 @@ ๐ Legend SDPLIB - arch2 + control3 SDP - -6.71515e-01 + -1.36333e+01 - OPTIMAL - 1.868s - -6.71515e-01 + MAX_ITER + 0.567s + -1.36333e+01 - + - OPTIMAL - 1.737s - -6.71515e-01 + NUM_ERROR + 0.506s + -1.36333e+01 OPTIMAL (INACCURATE) - 3.707s - -6.71515e-01 + 0.161s + -1.36333e+01 OPTIMAL - 5.151s - -6.71515e-01 + 0.230s + -1.36333e+01 - + - OPTIMAL - 7.647s - -6.71515e-01 + ERROR + 0.348s + โ - + - โ - - + OPTIMAL (INACCURATE) + 14.100s + -3.77358e-02 @@ -3719,43 +3387,43 @@ ๐ Legend SDPLIB - arch4 + control4 SDP - -9.72627e-01 + -1.97942e+01 - OPTIMAL - 1.705s - -9.72627e-01 + UNKNOWN + 0.980s + -1.97942e+01 - + - OPTIMAL - 1.874s - -9.72627e-01 + NUM_ERROR + 0.620s + -1.97942e+01 OPTIMAL (INACCURATE) - 3.674s - -9.72627e-01 + 0.336s + -1.97942e+01 OPTIMAL - 4.866s - -9.72627e-01 + 0.859s + -1.97942e+01 - + - OPTIMAL - 7.340s - -9.72627e-01 + ERROR + 1.268s + โ - + - โ - - + OPTIMAL (INACCURATE) + 28.045s + -2.56391e-03 @@ -3790,43 +3458,43 @@ ๐ Legend SDPLIB - arch8 + control5 SDP - -7.05698e+00 + -1.68836e+01 UNKNOWN - 1.458s - -7.05698e+00 + 2.211s + -1.68836e+01 - + - OPTIMAL - 3.128s - -7.05698e+00 + NUM_ERROR + 1.190s + -1.68836e+01 OPTIMAL (INACCURATE) - 3.725s - -7.05698e+00 + 0.672s + -1.68836e+01 OPTIMAL - 5.211s - -7.05699e+00 + 2.263s + -1.68836e+01 - + - OPTIMAL - 8.098s - -7.05698e+00 + ERROR + 2.096s + โ - + - โ - - + OPTIMAL (INACCURATE) + 53.705s + -1.78079e-01 @@ -3861,43 +3529,43 @@ ๐ Legend SDPLIB - control1 + control6 SDP - -1.77846e+01 + -3.73044e+01 - OPTIMAL - 0.299s - -1.77846e+01 + UNKNOWN + 1.489s + -3.73044e+01 - + - OPTIMAL - 0.309s - -1.77846e+01 + NUM_ERROR + 2.299s + -3.73045e+01 - + - OPTIMAL - 0.012s - -1.77846e+01 + OPTIMAL (INACCURATE) + 1.317s + -3.73043e+01 OPTIMAL - 0.014s - -1.80577e+01 + 5.673s + -3.73045e+01 ERROR - 0.170s + 4.264s โ OPTIMAL (INACCURATE) - 0.924s - -2.87823e-03 + 91.907s + -5.21473e-01 @@ -3932,43 +3600,43 @@ ๐ Legend SDPLIB - control10 + control7 SDP - -3.85330e+01 + -2.06251e+01 UNKNOWN - 8.544s - -3.85329e+01 + 2.175s + -2.06251e+01 NUM_ERROR - 17.535s - -3.85331e+01 + 3.704s + -2.06251e+01 OPTIMAL (INACCURATE) - 11.482s - -3.85329e+01 + 2.504s + -2.06251e+01 OPTIMAL - 56.158s - -3.85331e+01 + 10.415s + -2.06251e+01 ERROR - 27.151s + 8.096s โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -4003,43 +3671,43 @@ ๐ Legend SDPLIB - control11 + control8 SDP - -3.19590e+01 + -2.02860e+01 UNKNOWN - 11.559s - -3.19586e+01 + 3.232s + -2.02863e+01 NUM_ERROR - 30.733s - -3.19587e+01 + 6.067s + -2.02864e+01 OPTIMAL (INACCURATE) - 17.385s - -3.19585e+01 + 4.016s + -2.02863e+01 - + - โ - - + OPTIMAL + 19.302s + -2.02864e+01 ERROR - 38.347s + 11.986s โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -4074,43 +3742,43 @@ ๐ Legend SDPLIB - control2 + control9 SDP - -8.30000e+00 + -1.46754e+01 - MAX_ITER - 0.410s - -8.30000e+00 + UNKNOWN + 5.165s + -1.46754e+01 - + - OPTIMAL - 0.330s - -8.30000e+00 + NUM_ERROR + 10.213s + -1.46754e+01 - + - OPTIMAL - 0.038s - -8.30000e+00 + OPTIMAL (INACCURATE) + 6.553s + -1.46754e+01 OPTIMAL - 0.050s - -8.30000e+00 + 29.263s + -1.46754e+01 ERROR - 0.169s + 18.055s โ - + - OPTIMAL (INACCURATE) - 4.882s - -1.96667e-03 + TIMEOUT + 120.000s + โ @@ -4145,43 +3813,43 @@ ๐ Legend SDPLIB - control3 + equalG11 SDP - -1.36333e+01 + -6.29155e+02 - MAX_ITER - 0.567s - -1.36333e+01 + OPTIMAL + 5.390s + -6.29155e+02 NUM_ERROR - 0.506s - -1.36333e+01 - - - - OPTIMAL (INACCURATE) - 0.160s - -1.36333e+01 + 40.736s + -6.29155e+02 OPTIMAL - 0.228s - -1.36333e+01 + 50.860s + -6.29155e+02 - + - ERROR - 0.384s + SIGKILL + 32.294s โ - + - OPTIMAL (INACCURATE) - 14.103s - -3.77358e-02 + TIMEOUT + 120.000s + โ + + + + TIMEOUT + 120.000s + โ @@ -4216,43 +3884,43 @@ ๐ Legend SDPLIB - control4 + equalG51 SDP - -1.97942e+01 + -4.00560e+03 - UNKNOWN - 0.980s - -1.97942e+01 + OPTIMAL + 8.548s + -4.00560e+03 NUM_ERROR - 0.620s - -1.97942e+01 - - - - OPTIMAL (INACCURATE) - 0.333s - -1.97942e+01 + 84.326s + -4.00560e+03 OPTIMAL - 0.867s - -1.97942e+01 + 98.000s + -4.00560e+03 - + - ERROR - 1.285s + SIGKILL + 36.038s โ - + - OPTIMAL (INACCURATE) - 27.702s - -2.56391e-03 + TIMEOUT + 120.000s + โ + + + + TIMEOUT + 120.000s + โ @@ -4287,43 +3955,43 @@ ๐ Legend SDPLIB - control5 + gpp100 SDP - -1.68836e+01 + 4.49435e+01 - UNKNOWN - 2.211s - -1.68836e+01 + OPTIMAL + 0.444s + 4.49435e+01 NUM_ERROR - 1.190s - -1.68836e+01 + 0.772s + 4.49435e+01 - + - OPTIMAL (INACCURATE) - 0.672s - -1.68836e+01 + OPTIMAL + 0.417s + 4.49436e+01 OPTIMAL - 2.298s - -1.68836e+01 + 24.420s + 4.49435e+01 - + - ERROR - 2.281s - โ + OPTIMAL + 1.319s + 4.49435e+01 - + - OPTIMAL (INACCURATE) - 53.787s - -1.78079e-01 + OPTIMAL + 20.595s + 4.49437e+01 @@ -4358,43 +4026,43 @@ ๐ Legend SDPLIB - control6 + gpp124-1 SDP - -3.73044e+01 + 7.34310e+00 - UNKNOWN - 1.489s - -3.73044e+01 + OPTIMAL + 0.580s + 7.34308e+00 NUM_ERROR - 2.299s - -3.73045e+01 + 1.011s + 7.34304e+00 OPTIMAL (INACCURATE) - 1.334s - -3.73043e+01 + 0.631s + 7.34308e+00 OPTIMAL - 5.779s - -3.73045e+01 + 73.532s + 7.34306e+00 - + - ERROR - 4.976s - โ + OPTIMAL + 2.941s + 7.34307e+00 - + - OPTIMAL (INACCURATE) - 92.807s - -5.21473e-01 + TIMEOUT + 120.000s + โ @@ -4420,52 +4088,52 @@ ๐ Legend โ โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - control7 + gpp124-2 SDP - -2.06251e+01 + 4.68623e+01 - UNKNOWN - 2.175s - -2.06251e+01 + OPTIMAL + 0.553s + 4.68623e+01 NUM_ERROR - 3.704s - -2.06251e+01 + 1.067s + 4.68623e+01 - + - OPTIMAL (INACCURATE) - 2.558s - -2.06251e+01 + OPTIMAL + 0.615s + 4.68623e+01 OPTIMAL - 10.646s - -2.06251e+01 + 69.697s + 4.68623e+01 - + - ERROR - 8.102s - โ + OPTIMAL + 2.434s + 4.68623e+01 - + - โ - - + TIMEOUT + 120.000s + โ @@ -4500,43 +4168,43 @@ ๐ Legend SDPLIB - control8 + gpp124-3 SDP - -2.02860e+01 + 1.53014e+02 - UNKNOWN - 3.232s - -2.02863e+01 + OPTIMAL + 0.523s + 1.53014e+02 NUM_ERROR - 6.067s - -2.02864e+01 + 1.342s + 1.53014e+02 - + - OPTIMAL (INACCURATE) - 4.079s - -2.02863e+01 + OPTIMAL + 0.622s + 1.53014e+02 OPTIMAL - 19.997s - -2.02864e+01 + 66.166s + 1.53014e+02 - + - ERROR - 12.641s - โ + OPTIMAL + 2.379s + 1.53014e+02 - + - โ - - + TIMEOUT + 120.000s + โ @@ -4571,43 +4239,43 @@ ๐ Legend SDPLIB - control9 + gpp124-4 SDP - -1.46754e+01 + 4.18990e+02 - UNKNOWN - 5.165s - -1.46754e+01 + OPTIMAL + 0.719s + 4.18988e+02 NUM_ERROR - 10.213s - -1.46754e+01 + 1.299s + 4.18988e+02 - + - OPTIMAL (INACCURATE) - 6.458s - -1.46754e+01 + OPTIMAL + 0.618s + 4.18988e+02 OPTIMAL - 29.060s - -1.46754e+01 + 95.075s + 4.18988e+02 - + - ERROR - 17.646s - โ + OPTIMAL + 2.832s + 4.18987e+02 - + - โ - - + TIMEOUT + 120.000s + โ @@ -4642,43 +4310,43 @@ ๐ Legend SDPLIB - equalG11 + gpp250-1 SDP - -6.29155e+02 + 1.54450e+01 - OPTIMAL - 5.390s - -6.29155e+02 + UNKNOWN + 1.305s + 1.54449e+01 NUM_ERROR - 40.736s - -6.29155e+02 + 3.578s + 1.54449e+01 - + - OPTIMAL - 51.459s - -6.29155e+02 + OPTIMAL (INACCURATE) + 2.738s + 1.54466e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 14.727s + 1.54449e+01 - + - โ - - + TIMEOUT + 120.000s + โ @@ -4713,43 +4381,43 @@ ๐ Legend SDPLIB - equalG51 + gpp250-2 SDP - -4.00560e+03 + 8.18690e+01 OPTIMAL - 8.548s - -4.00560e+03 + 1.070s + 8.18690e+01 NUM_ERROR - 84.326s - -4.00560e+03 + 3.795s + 8.18690e+01 OPTIMAL - 97.775s - -4.00560e+03 + 2.772s + 8.18690e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 15.733s + 8.18689e+01 - + - โ - - + TIMEOUT + 120.000s + โ @@ -4784,44 +4452,44 @@ ๐ Legend SDPLIB - hinf1 + gpp250-3 SDP - -2.03260e+00 + 3.03500e+02 - UNKNOWN - 0.372s - -2.03273e+00 + OPTIMAL + 1.069s + 3.03539e+02 NUM_ERROR - 0.381s - -2.03270e+00 + 4.021s + 3.03539e+02 OPTIMAL - 0.009s - -2.03262e+00 + 2.753s + 3.03539e+02 + + + + TIMEOUT + 120.000s + โ OPTIMAL - 0.006s - -2.03267e+00 + 14.465s + 3.03539e+02 - + - ERROR - 0.054s + TIMEOUT + 120.000s โ - - - OPTIMAL (INACCURATE) - 0.546s - -2.03403e+00 - UNSUPPORTED @@ -4855,43 +4523,43 @@ ๐ Legend SDPLIB - hinf10 + gpp250-4 SDP - -1.09000e+02 + 7.47300e+02 - UNKNOWN - 0.365s - -1.08768e+02 + OPTIMAL + 0.997s + 7.47328e+02 NUM_ERROR - 0.363s - -1.08760e+02 + 3.396s + 7.47329e+02 - - - OPTIMAL (INACCURATE) - 0.012s - -1.08863e+02 - - + - OPTIMAL (INACCURATE) - 0.007s - -1.08787e+02 + OPTIMAL + 2.732s + 7.47328e+02 - + - ERROR - 0.060s + TIMEOUT + 120.000s โ OPTIMAL - 0.769s - -1.09671e+02 + 14.835s + 7.47328e+02 + + + + TIMEOUT + 120.000s + โ @@ -4926,43 +4594,43 @@ ๐ Legend SDPLIB - hinf11 + gpp500-1 SDP - -6.59000e+01 + 2.53000e+01 - UNKNOWN - 0.429s - -6.59162e+01 + NUM_ERROR + 2.948s + 2.53205e+01 NUM_ERROR - 0.375s - -6.58828e+01 + 15.377s + 2.53206e+01 - + - OPTIMAL (INACCURATE) - 0.013s - -6.59609e+01 + OPTIMAL + 14.759s + 2.53205e+01 - + - OPTIMAL (INACCURATE) - 0.010s - -6.59099e+01 + SIGKILL + 28.537s + โ - + - ERROR - 0.067s - โ + OPTIMAL + 117.968s + 2.53205e+01 - + - OPTIMAL (INACCURATE) - 1.225s - -6.70327e+01 + TIMEOUT + 120.000s + โ @@ -4997,44 +4665,44 @@ ๐ Legend SDPLIB - hinf12_sdp + gpp500-2 SDP - -2.00000e-01 + 1.56060e+02 - UNKNOWN - 0.589s - -2.25716e-05 + OPTIMAL + 2.783s + 1.56060e+02 - + - OPTIMAL - 0.309s - -1.17912e-01 + NUM_ERROR + 15.842s + 1.56061e+02 OPTIMAL (INACCURATE) - 0.013s - -2.62846e+01 + 14.896s + 1.56060e+02 + + + + SIGKILL + 28.746s + โ OPTIMAL - 0.017s - -3.24336e-05 + 114.049s + 1.56060e+02 - + - ERROR - 0.397s + TIMEOUT + 120.000s โ - - - OPTIMAL (INACCURATE) - 1.852s - -1.56609e+00 - UNSUPPORTED @@ -5068,43 +4736,43 @@ ๐ Legend SDPLIB - hinf13_sdp + gpp500-3 SDP - -4.60000e+01 + 5.13020e+02 - UNKNOWN - 0.520s - -4.43605e+01 + OPTIMAL + 2.280s + 5.13018e+02 NUM_ERROR - 0.344s - -4.49878e+01 + 18.166s + 5.13018e+02 - + - INFEASIBLE - 0.012s - โ + OPTIMAL + 14.948s + 5.13018e+02 - + - ERROR - 0.014s + SIGKILL + 30.809s โ - + - ERROR - 0.084s + TIMEOUT + 120.000s โ - + - OPTIMAL (INACCURATE) - 2.737s - -3.03386e+01 + TIMEOUT + 120.000s + โ @@ -5139,43 +4807,43 @@ ๐ Legend SDPLIB - hinf14 + gpp500-4 SDP - -1.30000e+01 + 1.56702e+03 - UNKNOWN - 0.513s - -1.29900e+01 + OPTIMAL + 2.642s + 1.56702e+03 NUM_ERROR - 0.424s - -1.29944e+01 + 15.820s + 1.56702e+03 - + - OPTIMAL (INACCURATE) - 0.018s - -1.29771e+01 + OPTIMAL + 15.022s + 1.56702e+03 - + - OPTIMAL (INACCURATE) - 0.030s - -1.29916e+01 + SIGKILL + 30.213s + โ - + - ERROR - 0.155s + TIMEOUT + 120.000s โ - + - OPTIMAL - 0.260s - -1.30167e+01 + TIMEOUT + 120.000s + โ @@ -5210,43 +4878,43 @@ ๐ Legend SDPLIB - hinf15 + hinf1 SDP - -2.50000e+01 + -2.03260e+00 UNKNOWN - 0.551s - -2.39878e+01 + 0.372s + -2.03273e+00 NUM_ERROR - 0.323s - -2.48400e+01 + 0.381s + -2.03270e+00 - + - INFEASIBLE - 0.019s - โ + OPTIMAL + 0.009s + -2.03262e+00 - + - OPTIMAL (INACCURATE) - 0.033s - -2.48238e+01 + OPTIMAL + 0.006s + -2.03267e+00 ERROR - 0.121s + 0.054s โ OPTIMAL (INACCURATE) - 4.817s - -6.53590e+00 + 0.546s + -2.03403e+00 @@ -5281,43 +4949,43 @@ ๐ Legend SDPLIB - hinf2 + hinf10 SDP - -1.09670e+01 + -1.09000e+02 UNKNOWN - 0.306s - -1.09693e+01 + 0.365s + -1.08768e+02 NUM_ERROR - 0.291s - -1.09673e+01 + 0.363s + -1.08760e+02 - + - OPTIMAL - 0.009s - -1.09671e+01 + OPTIMAL (INACCURATE) + 0.012s + -1.08863e+02 - + - OPTIMAL - 0.005s - -1.09676e+01 + OPTIMAL (INACCURATE) + 0.007s + -1.08787e+02 ERROR - 0.037s + 0.060s โ OPTIMAL - 0.468s - -1.09560e+01 + 0.769s + -1.09671e+02 @@ -5352,43 +5020,43 @@ ๐ Legend SDPLIB - hinf3 + hinf11 SDP - -5.69000e+01 + -6.59000e+01 - OPTIMAL - 0.368s - -5.69679e+01 + UNKNOWN + 0.429s + -6.59162e+01 NUM_ERROR - 0.285s - -5.69417e+01 + 0.375s + -6.58828e+01 OPTIMAL (INACCURATE) - 0.010s - -5.69460e+01 + 0.013s + -6.59609e+01 - + - OPTIMAL - 0.005s - -5.69546e+01 + OPTIMAL (INACCURATE) + 0.010s + -6.59099e+01 ERROR - 0.041s + 0.067s โ - + - OPTIMAL - 0.054s - -5.69529e+01 + OPTIMAL (INACCURATE) + 1.225s + -6.70327e+01 @@ -5423,43 +5091,43 @@ ๐ Legend SDPLIB - hinf4 + hinf12_sdp SDP - -2.74764e+02 + -2.00000e-01 - MAX_ITER - 0.348s - -2.74766e+02 + UNKNOWN + 0.589s + -2.25716e-05 OPTIMAL - 0.349s - -2.74764e+02 + 0.309s + -1.17912e-01 OPTIMAL (INACCURATE) - 0.010s - -2.74764e+02 + 0.013s + -2.62846e+01 OPTIMAL - 0.005s - -2.74766e+02 + 0.017s + -3.24336e-05 ERROR - 0.053s + 0.397s โ - + - OPTIMAL - 0.051s - -2.74817e+02 + OPTIMAL (INACCURATE) + 1.852s + -1.56609e+00 @@ -5494,43 +5162,43 @@ ๐ Legend SDPLIB - hinf5 + hinf13_sdp SDP - -3.63000e+02 + -4.60000e+01 UNKNOWN - 0.307s - -3.62841e+02 + 0.520s + -4.43605e+01 NUM_ERROR - 0.296s - -3.62139e+02 + 0.344s + -4.49878e+01 - + - OPTIMAL (INACCURATE) - 0.009s - -3.63088e+02 - - + INFEASIBLE + 0.012s + โ + + - OPTIMAL (INACCURATE) - 0.006s - -3.62430e+02 + ERROR + 0.014s + โ ERROR - 0.046s + 0.084s โ - + - OPTIMAL - 0.082s - -3.20923e+02 + OPTIMAL (INACCURATE) + 2.737s + -3.03386e+01 @@ -5565,43 +5233,43 @@ ๐ Legend SDPLIB - hinf6 + hinf14 SDP - -4.49000e+02 + -1.30000e+01 - MAX_ITER - 0.387s - -4.48948e+02 + UNKNOWN + 0.513s + -1.29900e+01 NUM_ERROR - 0.345s - -4.48939e+02 + 0.424s + -1.29944e+01 OPTIMAL (INACCURATE) - 0.011s - -4.48979e+02 + 0.018s + -1.29771e+01 - + - OPTIMAL - 0.006s - -4.48950e+02 + OPTIMAL (INACCURATE) + 0.030s + -1.29916e+01 ERROR - 0.055s + 0.155s โ - + - OPTIMAL (INACCURATE) - 0.632s - -2.45901e+02 + OPTIMAL + 0.260s + -1.30167e+01 @@ -5636,43 +5304,43 @@ ๐ Legend SDPLIB - hinf7 + hinf15 SDP - -3.91000e+02 + -2.50000e+01 - OPTIMAL - 0.321s - -3.90827e+02 + UNKNOWN + 0.551s + -2.39878e+01 NUM_ERROR - 0.300s - -3.90419e+02 + 0.323s + -2.48400e+01 - + - OPTIMAL (INACCURATE) - 0.008s - -3.86273e+02 + INFEASIBLE + 0.019s + โ - + - ERROR - 0.005s - โ + OPTIMAL (INACCURATE) + 0.033s + -2.48238e+01 ERROR - 0.039s + 0.121s โ OPTIMAL (INACCURATE) - 0.656s - -3.89325e+02 + 4.817s + -6.53590e+00 @@ -5707,31 +5375,31 @@ ๐ Legend SDPLIB - hinf8 + hinf2 SDP - -1.16000e+02 + -1.09670e+01 - MAX_ITER - 0.358s - -1.16189e+02 + UNKNOWN + 0.306s + -1.09693e+01 NUM_ERROR - 0.313s - -1.16148e+02 + 0.291s + -1.09673e+01 - + - OPTIMAL (INACCURATE) + OPTIMAL 0.009s - -1.16181e+02 + -1.09671e+01 - + - OPTIMAL (INACCURATE) - 0.007s - -1.16162e+02 + OPTIMAL + 0.005s + -1.09676e+01 @@ -5742,8 +5410,8 @@ ๐ Legend OPTIMAL - 0.222s - -1.13466e+02 + 0.468s + -1.09560e+01 @@ -5778,43 +5446,43 @@ ๐ Legend SDPLIB - hinf9 + hinf3 SDP - -2.36250e+02 + -5.69000e+01 - UNKNOWN + OPTIMAL 0.368s - -2.36249e+02 + -5.69679e+01 - + - OPTIMAL - 0.318s - -2.36247e+02 + NUM_ERROR + 0.285s + -5.69417e+01 OPTIMAL (INACCURATE) - 0.027s - -2.36249e+02 + 0.009s + -5.69460e+01 OPTIMAL - 0.006s - -2.36249e+02 + 0.005s + -5.69546e+01 ERROR - 0.076s + 0.042s โ - + - OPTIMAL (INACCURATE) - 0.630s - -2.39960e+01 + OPTIMAL + 0.054s + -5.69529e+01 @@ -5849,43 +5517,43 @@ ๐ Legend SDPLIB - infd1 + hinf4 SDP - โ + -2.74764e+02 - INFEASIBLE - 0.742s - -4.25721e+00 + MAX_ITER + 0.348s + -2.74766e+02 - + - ERROR - โ - โ + OPTIMAL + 0.349s + -2.74764e+02 - + - UNBOUNDED - 0.008s - โ + OPTIMAL (INACCURATE) + 0.010s + -2.74764e+02 - + - UNBOUNDED - 0.072s - โ + OPTIMAL + 0.005s + -2.74766e+02 - + - UNBOUNDED - 0.051s + ERROR + 0.053s โ - + - UNBOUNDED - 0.010s - โ + OPTIMAL + 0.051s + -2.74817e+02 @@ -5920,43 +5588,43 @@ ๐ Legend SDPLIB - infd2 + hinf5 SDP - โ + -3.63000e+02 - INFEASIBLE - 0.329s - 5.26001e+00 + UNKNOWN + 0.307s + -3.62841e+02 - + - ERROR - โ - โ + NUM_ERROR + 0.296s + -3.62139e+02 - + - UNBOUNDED - 0.008s - โ + OPTIMAL (INACCURATE) + 0.009s + -3.63088e+02 - + - UNBOUNDED - 0.078s - โ + OPTIMAL (INACCURATE) + 0.006s + -3.62430e+02 - + - UNBOUNDED - 0.050s + ERROR + 0.046s โ - + - UNBOUNDED - 0.008s - โ + OPTIMAL + 0.082s + -3.20923e+02 @@ -5991,43 +5659,43 @@ ๐ Legend SDPLIB - infp1 + hinf6 SDP - โ + -4.49000e+02 - UNBOUNDED - 0.676s - -1.00000e+00 + MAX_ITER + 0.387s + -4.48948e+02 - + - UNBOUNDED - 0.181s - -1.00000e+00 + NUM_ERROR + 0.345s + -4.48939e+02 - + - INFEASIBLE - 0.010s - โ + OPTIMAL (INACCURATE) + 0.011s + -4.48979e+02 - + - INFEASIBLE (INACCURATE) - 0.059s - โ + OPTIMAL + 0.006s + -4.48950e+02 - + - INFEASIBLE - 0.035s + ERROR + 0.055s โ - + - INFEASIBLE - 0.006s - โ + OPTIMAL (INACCURATE) + 0.632s + -2.45901e+02 @@ -6062,43 +5730,43 @@ ๐ Legend SDPLIB - infp2 + hinf7 SDP - โ + -3.91000e+02 - UNBOUNDED - 0.709s - -1.00000e+00 + OPTIMAL + 0.321s + -3.90827e+02 - + - UNBOUNDED - 0.199s - -1.00000e+00 + NUM_ERROR + 0.300s + -3.90419e+02 - + - INFEASIBLE - 0.011s - โ + OPTIMAL (INACCURATE) + 0.008s + -3.86273e+02 - + - INFEASIBLE (INACCURATE) - 0.057s + ERROR + 0.005s โ - + - INFEASIBLE - 0.036s + ERROR + 0.039s โ - + - INFEASIBLE - 0.006s - โ + OPTIMAL (INACCURATE) + 0.656s + -3.89325e+02 @@ -6133,43 +5801,43 @@ ๐ Legend SDPLIB - maxG11 + hinf8 SDP - -6.29165e+02 + -1.16000e+02 - OPTIMAL - 2.364s - -6.29165e+02 + MAX_ITER + 0.358s + -1.16189e+02 - + - OPTIMAL - 18.214s - -6.29165e+02 + NUM_ERROR + 0.313s + -1.16148e+02 - + - OPTIMAL - 6.635s - -6.29165e+02 + OPTIMAL (INACCURATE) + 0.009s + -1.16181e+02 - + - OPTIMAL - 5.780s - -6.29165e+02 + OPTIMAL (INACCURATE) + 0.007s + -1.16162e+02 - + - OPTIMAL - 228.553s - -6.29165e+02 + ERROR + 0.037s + โ - + - โ - - + OPTIMAL + 0.222s + -1.13466e+02 @@ -6204,43 +5872,43 @@ ๐ Legend SDPLIB - maxG32 + hinf9 SDP - -1.56764e+03 + -2.36250e+02 - OPTIMAL - 15.457s - -1.56764e+03 + UNKNOWN + 0.368s + -2.36249e+02 - + - TIMEOUT - 300.000s - โ + OPTIMAL + 0.318s + -2.36247e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.027s + -2.36249e+02 - + - โ - - + OPTIMAL + 0.006s + -2.36249e+02 - + - โ - - + ERROR + 0.076s + โ - + - โ - - + OPTIMAL (INACCURATE) + 0.630s + -2.39960e+01 @@ -6275,43 +5943,43 @@ ๐ Legend SDPLIB - maxG51 + maxG11 SDP - -4.00381e+03 + -6.29165e+02 OPTIMAL - 5.433s - -4.00626e+03 + 2.364s + -6.29165e+02 OPTIMAL - 43.010s - -4.00626e+03 + 18.214s + -6.29165e+02 - + - โ - - + OPTIMAL + 6.635s + -6.29165e+02 - + - โ - - + OPTIMAL + 5.780s + -6.29165e+02 - + - โ - - + OPTIMAL + 228.553s + -6.29165e+02 - + - โ - - + TIMEOUT + 120.000s + โ @@ -6346,43 +6014,43 @@ ๐ Legend SDPLIB - maxG55 + maxG32 SDP - -9.99921e+03 + -1.56764e+03 - ERROR - โ - โ + OPTIMAL + 15.457s + -1.56764e+03 - + - ERROR - โ + TIMEOUT + 300.000s โ - + - โ - - + SUBPROCESS_ERROR + 1.084s + โ - + - โ - - + SUBPROCESS_ERROR + 1.081s + โ - + - โ - - + SUBPROCESS_ERROR + 1.075s + โ - + - โ - - + SUBPROCESS_ERROR + 1.064s + โ @@ -6417,43 +6085,43 @@ ๐ Legend SDPLIB - maxG60 + maxG51 SDP - -1.52223e+04 + -4.00381e+03 - ERROR - โ - โ + OPTIMAL + 5.433s + -4.00626e+03 - + - ERROR - โ - โ + OPTIMAL + 43.010s + -4.00626e+03 - + - โ - - + OPTIMAL + 12.593s + -4.00626e+03 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ @@ -6488,43 +6156,43 @@ ๐ Legend SDPLIB - qap10 + mcp100 SDP - 1.09300e+01 + -2.26157e+02 - UNKNOWN - 0.802s - 1.09254e+03 + OPTIMAL + 0.367s + -2.26157e+02 - + - NUM_ERROR - 2.500s - 1.09258e+03 + OPTIMAL + 0.429s + -2.26157e+02 - + - OPTIMAL (INACCURATE) - 0.598s - 1.09307e+03 + OPTIMAL + 0.035s + -2.26157e+02 OPTIMAL - 25.793s - 1.09260e+03 + 0.254s + -2.26157e+02 - + - ERROR - 4.625s - โ + OPTIMAL + 0.589s + -2.26157e+02 - + - โ - - + OPTIMAL + 1.310s + -2.26156e+02 @@ -6559,43 +6227,43 @@ ๐ Legend SDPLIB - qap5 + mcp124-1 SDP - 4.36000e+02 + -1.41990e+02 OPTIMAL - 0.469s - 4.36000e+02 + 0.527s + -1.41990e+02 OPTIMAL - 0.255s - 4.36000e+02 + 1.222s + -1.41990e+02 - + - OPTIMAL (INACCURATE) - 0.020s - 4.36040e+02 + OPTIMAL + 0.050s + -1.41990e+02 OPTIMAL - 0.040s - 4.36000e+02 + 0.033s + -1.41990e+02 OPTIMAL - 0.058s - 4.36000e+02 + 1.171s + -1.41990e+02 OPTIMAL - 0.015s - 4.36000e+02 + 8.351s + -1.41988e+02 @@ -6630,43 +6298,43 @@ ๐ Legend SDPLIB - qap6 + mcp124-2 SDP - 3.81440e+02 + -2.69880e+02 OPTIMAL - 0.757s - 3.81394e+02 + 0.542s + -2.69880e+02 - + - NUM_ERROR - 0.363s - 3.81424e+02 + OPTIMAL + 0.832s + -2.69880e+02 - + - OPTIMAL (INACCURATE) - 0.094s - 3.81525e+02 + OPTIMAL + 0.047s + -2.69880e+02 - + - OPTIMAL (INACCURATE) - 0.358s - 3.81433e+02 + OPTIMAL + 0.569s + -2.69880e+02 - + - ERROR - 0.455s - โ + OPTIMAL + 1.179s + -2.69880e+02 - + - OPTIMAL (INACCURATE) - 11.140s - 3.81158e+02 + OPTIMAL + 2.415s + -2.69880e+02 @@ -6701,43 +6369,43 @@ ๐ Legend SDPLIB - qap7 + mcp124-3 SDP - 4.25000e+02 + -4.67750e+02 - UNKNOWN - 0.635s - 4.24788e+02 + OPTIMAL + 0.573s + -4.67750e+02 - + - NUM_ERROR - 0.507s - 4.24808e+02 + OPTIMAL + 0.813s + -4.67750e+02 - + - OPTIMAL (INACCURATE) - 0.147s - 4.24876e+02 + OPTIMAL + 0.047s + -4.67750e+02 - + - OPTIMAL (INACCURATE) - 1.217s - 4.24812e+02 + OPTIMAL + 3.525s + -4.67750e+02 - + - ERROR - 0.741s - โ + OPTIMAL + 1.081s + -4.67750e+02 - + - OPTIMAL (INACCURATE) - 20.126s - 4.24523e+02 + OPTIMAL + 1.161s + -4.67750e+02 @@ -6772,43 +6440,43 @@ ๐ Legend SDPLIB - qap8 + mcp124-4 SDP - 7.57000e+02 + -8.64412e+02 OPTIMAL - 0.566s - 7.56840e+02 + 0.499s + -8.64412e+02 - + - NUM_ERROR - 0.875s - 7.56934e+02 + OPTIMAL + 0.726s + -8.64412e+02 - + - OPTIMAL (INACCURATE) - 0.239s - 7.57035e+02 + OPTIMAL + 0.046s + -8.64412e+02 - + - OPTIMAL (INACCURATE) - 3.944s - 7.56943e+02 + OPTIMAL + 11.987s + -8.64412e+02 - + - ERROR - 1.661s - โ + OPTIMAL + 1.104s + -8.64412e+02 - + - OPTIMAL (INACCURATE) - 36.510s - 7.56571e+02 + OPTIMAL + 0.464s + -8.64412e+02 @@ -6843,43 +6511,43 @@ ๐ Legend SDPLIB - qap9 + mcp250-1 SDP - 1.41000e+03 + -3.17264e+02 OPTIMAL - 0.899s - 1.40992e+03 + 0.899s + -3.17264e+02 - + - NUM_ERROR - 1.284s - 1.40992e+03 + OPTIMAL + 2.261s + -3.17264e+02 - + - OPTIMAL (INACCURATE) - 0.366s - 1.41026e+03 + OPTIMAL + 0.168s + -3.17264e+02 - + - OPTIMAL (INACCURATE) - 9.719s - 1.40994e+03 + OPTIMAL + 0.241s + -3.17264e+02 - + - ERROR - 2.737s - โ + OPTIMAL + 6.185s + -3.17264e+02 OPTIMAL - 44.790s - 1.40992e+03 + 65.187s + -3.17263e+02 @@ -6914,43 +6582,43 @@ ๐ Legend SDPLIB - qpG11 + mcp250-2 SDP - -2.44866e+03 + -5.31930e+02 OPTIMAL - 31.201s - -2.44866e+03 + 0.838s + -5.31930e+02 OPTIMAL - 142.555s - -2.44866e+03 + 2.211s + -5.31930e+02 OPTIMAL - 29.926s - -2.44866e+03 + 0.969s + -5.31930e+02 OPTIMAL - 20.110s - -2.44866e+03 + 5.163s + -5.31930e+02 - + - โ - - + OPTIMAL + 5.571s + -5.31930e+02 - + - โ - - + OPTIMAL + 85.802s + -5.31930e+02 @@ -6985,43 +6653,43 @@ ๐ Legend SDPLIB - qpG51 + mcp250-3 SDP - -1.18100e+03 + -9.81173e+02 OPTIMAL - 65.046s - -1.18180e+04 + 0.913s + -9.81173e+02 - + - โ - - + OPTIMAL + 2.603s + -9.81173e+02 - + - โ - - + OPTIMAL + 0.974s + -9.81173e+02 - + - โ - - + OPTIMAL + 89.825s + -9.81173e+02 - + - โ - - + OPTIMAL + 5.911s + -9.81173e+02 - + - โ - - + OPTIMAL + 24.193s + -9.81172e+02 @@ -7056,43 +6724,43 @@ ๐ Legend SDPLIB - ss30 + mcp250-4 SDP - -2.02395e+01 - - UNKNOWN - 2.882s - -2.02395e+01 - - + -1.68196e+03 - NUM_ERROR - 6.761s - -2.02395e+01 + OPTIMAL + 0.978s + -1.68196e+03 - + - OPTIMAL (INACCURATE) - 7.810s - -2.02395e+01 + OPTIMAL + 2.581s + -1.68196e+03 OPTIMAL - 41.188s - -2.02395e+01 + 0.171s + -1.68196e+03 + + + + TIMEOUT + 120.000s + โ OPTIMAL - 21.265s - -2.02395e+01 + 5.565s + -1.68196e+03 - + - โ - - + OPTIMAL + 22.179s + -1.68196e+03 @@ -7127,43 +6795,43 @@ ๐ Legend SDPLIB - theta1 + mcp500-1 SDP - -2.30000e+01 + -5.98149e+02 OPTIMAL - 0.355s - -2.30000e+01 + 1.555s + -5.98149e+02 OPTIMAL - 0.292s - -2.30000e+01 + 9.017s + -5.98149e+02 OPTIMAL - 0.025s - -2.30000e+01 + 2.334s + -5.98149e+02 OPTIMAL - 0.578s - -2.30000e+01 + 1.624s + -5.98149e+02 OPTIMAL - 0.302s - -2.30000e+01 + 49.236s + -5.98148e+02 - + - OPTIMAL - 0.060s - -2.29996e+01 + TIMEOUT + 120.000s + โ @@ -7198,43 +6866,43 @@ ๐ Legend SDPLIB - theta2 + mcp500-2 SDP - -3.28792e+01 + -1.07006e+03 OPTIMAL - 0.558s - -3.28792e+01 + 1.536s + -1.07006e+03 OPTIMAL - 0.632s - -3.28792e+01 + 9.307s + -1.07006e+03 OPTIMAL - 0.477s - -3.28792e+01 + 2.833s + -1.07006e+03 - + - OPTIMAL - 10.559s - -3.28792e+01 + TIMEOUT + 120.000s + โ OPTIMAL - 2.042s - -3.28792e+01 + 53.503s + -1.07006e+03 - + - OPTIMAL - 0.412s - -3.28791e+01 + TIMEOUT + 120.000s + โ @@ -7269,43 +6937,43 @@ ๐ Legend SDPLIB - theta3 + mcp500-3 SDP - -4.21670e+01 + -1.84797e+03 OPTIMAL - 1.165s - -4.21670e+01 + 1.598s + -1.84797e+03 OPTIMAL - 2.417s - -4.21670e+01 + 10.877s + -1.84797e+03 OPTIMAL - 1.048s - -4.21670e+01 + 0.925s + -1.84797e+03 - + - OPTIMAL - 67.708s - -4.21670e+01 + TIMEOUT + 120.000s + โ OPTIMAL - 7.798s - -4.21670e+01 + 53.333s + -1.84797e+03 - + - OPTIMAL - 1.587s - -4.21670e+01 + TIMEOUT + 120.000s + โ @@ -7340,398 +7008,398 @@ ๐ Legend SDPLIB - theta4 + mcp500-4 SDP - -5.03212e+01 + -3.56674e+03 OPTIMAL - 1.690s - -5.03212e+01 + 1.580s + -3.56674e+03 OPTIMAL - 9.029s - -5.03212e+01 + 9.712s + -3.56674e+03 - + - โ - - + OPTIMAL + 1.129s + -3.56674e+03 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 40.443s + -3.56674e+03 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - theta5 + qap10 SDP - -5.72323e+01 + 1.09300e+01 - OPTIMAL - 3.288s - -5.72323e+01 + UNKNOWN + 0.802s + 1.09254e+03 - + - OPTIMAL - 32.240s - -5.72323e+01 + NUM_ERROR + 2.500s + 1.09258e+03 - + - โ - - + OPTIMAL (INACCURATE) + 0.598s + 1.09307e+03 - + - โ - - + OPTIMAL + 25.793s + 1.09260e+03 - + - โ - - + ERROR + 4.625s + โ - + - โ - - + OPTIMAL (INACCURATE) + 99.817s + 1.09249e+03 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - theta6 + qap5 SDP - -6.34771e+01 + 4.36000e+02 OPTIMAL - 5.631s - -6.34771e+01 + 0.469s + 4.36000e+02 OPTIMAL - 96.736s - -6.34771e+01 + 0.255s + 4.36000e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.020s + 4.36040e+02 - + - โ - - + OPTIMAL + 0.040s + 4.36000e+02 - + - โ - - + OPTIMAL + 0.058s + 4.36000e+02 - + - โ - - + OPTIMAL + 0.015s + 4.36000e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - thetaG11 + qap6 SDP - -4.00000e+02 + 3.81440e+02 OPTIMAL - 6.121s - -4.00000e+02 + 0.757s + 3.81394e+02 - + - OPTIMAL - 69.430s - -4.00000e+02 + NUM_ERROR + 0.363s + 3.81424e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.094s + 3.81525e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.358s + 3.81433e+02 - + - โ - - + ERROR + 0.455s + โ - + - โ - - + OPTIMAL (INACCURATE) + 11.140s + 3.81158e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - thetaG51 + qap7 SDP - -3.49000e+02 + 4.25000e+02 UNKNOWN - 138.054s - -3.49000e+02 + 0.635s + 4.24788e+02 - TIMEOUT - 300.000s - โ + NUM_ERROR + 0.507s + 4.24808e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.147s + 4.24876e+02 - + - โ - - + OPTIMAL (INACCURATE) + 1.217s + 4.24812e+02 - + - โ - - + ERROR + 0.741s + โ - + - โ - - + OPTIMAL (INACCURATE) + 20.126s + 4.24523e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - truss1 + qap8 SDP - 9.00000e+00 + 7.57000e+02 OPTIMAL - 0.243s - 9.00000e+00 + 0.566s + 7.56840e+02 - + - OPTIMAL - 0.280s - 9.00000e+00 + NUM_ERROR + 0.875s + 7.56934e+02 - + - OPTIMAL - 0.014s - 9.00000e+00 + OPTIMAL (INACCURATE) + 0.239s + 7.57035e+02 - + - OPTIMAL - 0.005s - 9.00000e+00 + OPTIMAL (INACCURATE) + 3.944s + 7.56943e+02 - + - OPTIMAL - 0.028s - 9.00000e+00 + ERROR + 1.661s + โ - + - OPTIMAL - 0.005s - 9.00001e+00 + OPTIMAL (INACCURATE) + 36.510s + 7.56571e+02 @@ -7766,43 +7434,43 @@ ๐ Legend SDPLIB - truss2 + qap9 SDP - 1.23380e+02 + 1.41000e+03 OPTIMAL - 0.363s - 1.23380e+02 + 0.899s + 1.40992e+03 - + - OPTIMAL - 0.393s - 1.23380e+02 + NUM_ERROR + 1.284s + 1.40992e+03 - + - OPTIMAL - 0.070s - 1.23380e+02 + OPTIMAL (INACCURATE) + 0.366s + 1.41026e+03 - + - OPTIMAL - 0.028s - 1.23380e+02 + OPTIMAL (INACCURATE) + 9.719s + 1.40994e+03 - + - OPTIMAL - 0.343s - 1.23380e+02 + ERROR + 2.737s + โ OPTIMAL - 0.835s - 1.23386e+02 + 44.790s + 1.40992e+03 @@ -7837,43 +7505,43 @@ ๐ Legend SDPLIB - truss3 + qpG11 SDP - 9.11000e+00 + -2.44866e+03 OPTIMAL - 0.291s - 9.11000e+00 + 3.454s + -2.44866e+03 OPTIMAL - 0.287s - 9.11000e+00 + 142.555s + -2.44866e+03 OPTIMAL - 0.017s - 9.11000e+00 + 29.926s + -2.44866e+03 OPTIMAL - 0.009s - 9.11000e+00 + 20.110s + -2.44866e+03 - + - OPTIMAL - 0.062s - 9.11000e+00 + TIMEOUT + 120.000s + โ - + - OPTIMAL - 0.539s - 9.11004e+00 + TIMEOUT + 120.000s + โ @@ -7908,43 +7576,43 @@ ๐ Legend SDPLIB - truss4 + qpG51 SDP - 9.01000e+00 + -1.18100e+03 OPTIMAL - 0.286s - 9.01000e+00 + 6.200s + -1.18180e+04 - + - OPTIMAL - 0.264s - 9.01000e+00 + TIMEOUT + 120.000s + โ - + - OPTIMAL - 0.015s - 9.01000e+00 + SUBPROCESS_ERROR + 0.936s + โ - + - OPTIMAL - 0.006s - 9.01000e+00 + SUBPROCESS_ERROR + 0.933s + โ - + - OPTIMAL - 0.039s - 9.01000e+00 + SUBPROCESS_ERROR + 0.921s + โ - + - OPTIMAL - 0.006s - 9.01000e+00 + SUBPROCESS_ERROR + 0.927s + โ @@ -7979,114 +7647,114 @@ ๐ Legend SDPLIB - truss5_sdp + ss30 SDP - 1.32636e+02 + -2.02395e+01 - OPTIMAL - 1.047s - 1.32636e+02 + UNKNOWN + 2.882s + -2.02395e+01 - + - OPTIMAL - 0.594s - 1.32636e+02 + NUM_ERROR + 6.761s + -2.02395e+01 - + - OPTIMAL - 0.225s - 1.32636e+02 + OPTIMAL (INACCURATE) + 7.810s + -2.02395e+01 OPTIMAL - 0.497s - 1.32636e+02 + 41.188s + -2.02395e+01 OPTIMAL - 1.263s - 1.32636e+02 + 21.265s + -2.02395e+01 - + - OPTIMAL - 22.395s - 1.32670e+02 + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - - - + UNSUPPORTED + โ + โ + + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ SDPLIB - truss6 + theta1 SDP - 9.01001e+02 + -2.30000e+01 - MAX_ITER - 0.569s - 9.01001e+02 + OPTIMAL + 0.355s + -2.30000e+01 - + - NUM_ERROR - 0.987s - 9.01001e+02 + OPTIMAL + 0.292s + -2.30000e+01 - + - INFEASIBLE - 0.291s - โ + OPTIMAL + 0.025s + -2.30000e+01 OPTIMAL - 0.254s - 9.01000e+02 + 0.578s + -2.30000e+01 - + - ERROR - 1.997s - โ + OPTIMAL + 0.302s + -2.30000e+01 OPTIMAL - 14.330s - 9.01095e+02 + 0.060s + -2.29996e+01 @@ -8121,43 +7789,43 @@ ๐ Legend SDPLIB - truss7 + theta2 SDP - 9.00001e+02 + -3.28792e+01 - UNKNOWN - 0.544s - 9.00001e+02 + OPTIMAL + 0.558s + -3.28792e+01 OPTIMAL - 1.193s - 9.00001e+02 + 0.632s + -3.28792e+01 - + - OPTIMAL (INACCURATE) - 0.334s - 9.00001e+02 + OPTIMAL + 0.477s + -3.28792e+01 OPTIMAL - 0.134s - 9.00001e+02 + 10.559s + -3.28792e+01 - + - ERROR - 1.256s - โ + OPTIMAL + 2.042s + -3.28792e+01 OPTIMAL - 3.863s - 9.00036e+02 + 0.412s + -3.28791e+01 @@ -8192,1919 +7860,996 @@ ๐ Legend SDPLIB - truss8_sdp + theta3 SDP - 1.33115e+02 + -4.21670e+01 OPTIMAL - 1.013s - 1.33115e+02 + 1.165s + -4.21670e+01 OPTIMAL - 1.112s - 1.33115e+02 - - - - โ - - + 2.417s + -4.21670e+01 OPTIMAL - 8.423s - 1.33115e+02 + 1.048s + -4.21670e+01 OPTIMAL - 5.338s - 1.33115e+02 - - - - โ - - + 67.708s + -4.21670e+01 - + - โ - - + OPTIMAL + 7.798s + -4.21670e+01 - + - โ - - + OPTIMAL + 1.587s + -4.21670e+01 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp100 - UNKNOWN - 4.49435e+01 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + theta4 + SDP + -5.03212e+01 - โ - - + OPTIMAL + 1.690s + -5.03212e+01 - + - โ - - + OPTIMAL + 9.029s + -5.03212e+01 - + - โ - - + OPTIMAL + 2.173s + -5.03212e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 29.596s + -5.03212e+01 - + - โ - - + OPTIMAL + 2.670s + -5.03217e+01 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp124-1 - UNKNOWN - 7.34310e+00 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + theta5 + SDP + -5.72323e+01 - โ - - + OPTIMAL + 3.288s + -5.72323e+01 - + - โ - - + OPTIMAL + 32.240s + -5.72323e+01 - + - โ - - + OPTIMAL + 5.291s + -5.72323e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 73.001s + -5.72323e+01 - + - โ - - + OPTIMAL + 5.007s + -5.72324e+01 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp124-2 - UNKNOWN - 4.68623e+01 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + theta6 + SDP + -6.34771e+01 - โ - - + OPTIMAL + 5.631s + -6.34771e+01 - + - โ - - + OPTIMAL + 96.736s + -6.34771e+01 - + - โ - - + OPTIMAL + 10.463s + -6.34771e+01 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + OPTIMAL + 8.415s + -6.34771e+01 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp124-3 - UNKNOWN - 1.53014e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + thetaG11 + SDP + -4.00000e+02 - โ - - + OPTIMAL + 6.121s + -4.00000e+02 - + - โ - - + OPTIMAL + 69.430s + -4.00000e+02 - + - โ - - + OPTIMAL + 14.342s + -4.00000e+02 - + - โ - - + OPTIMAL + 14.390s + -4.00000e+02 - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + TIMEOUT + 120.000s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp124-4 - UNKNOWN - 4.18990e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + thetaG51 + SDP + -3.49000e+02 - โ - - + UNKNOWN + 138.054s + -3.49000e+02 - + - โ - - + TIMEOUT + 300.000s + โ - + - โ - - + SUBPROCESS_ERROR + 1.542s + โ - + - โ - - + SUBPROCESS_ERROR + 1.541s + โ - + - โ - - + SUBPROCESS_ERROR + 1.529s + โ - + - โ - - + SUBPROCESS_ERROR + 1.539s + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp250-1 - UNKNOWN - 1.54450e+01 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss1 + SDP + 9.00000e+00 - โ - - + OPTIMAL + 0.243s + 9.00000e+00 - + - โ - - + OPTIMAL + 0.280s + 9.00000e+00 - + - โ - - + OPTIMAL + 0.014s + 9.00000e+00 - + - โ - - + OPTIMAL + 0.005s + 9.00000e+00 - + - โ - - + OPTIMAL + 0.028s + 9.00000e+00 - + - โ - - + OPTIMAL + 0.005s + 9.00001e+00 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - gpp250-2 - UNKNOWN - 8.18690e+01 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss2 + SDP + 1.23380e+02 - โ - - + OPTIMAL + 0.363s + 1.23380e+02 - + - โ - - + OPTIMAL + 0.393s + 1.23380e+02 - + - โ - - + OPTIMAL + 0.070s + 1.23380e+02 - + - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp250-3 - UNKNOWN - 3.03500e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp250-4 - UNKNOWN - 7.47300e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp500-1 - UNKNOWN - 2.53000e+01 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp500-2 - UNKNOWN - 1.56060e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp500-3 - UNKNOWN - 5.13020e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - gpp500-4 - UNKNOWN - 1.56702e+03 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp100 - UNKNOWN - -2.26157e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp124-1 - UNKNOWN - -1.41990e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp124-2 - UNKNOWN - -2.69880e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp124-3 - UNKNOWN - -4.67750e+02 - - ERROR - โ - โ - - - - ERROR - โ - โ - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - + OPTIMAL + 0.028s + 1.23380e+02 - + - โ - - + OPTIMAL + 0.343s + 1.23380e+02 - + - โ - - + OPTIMAL + 0.835s + 1.23386e+02 - - - SDPLIB - mcp124-4 - UNKNOWN - -8.64412e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp250-1 - UNKNOWN - -3.17264e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - + - โ - - + UNSUPPORTED + โ + โ - + + + SDPLIB + truss3 + SDP + 9.11000e+00 - โ - - + OPTIMAL + 0.291s + 9.11000e+00 - + - โ - - + OPTIMAL + 0.287s + 9.11000e+00 - + - โ - - + OPTIMAL + 0.017s + 9.11000e+00 - + - โ - - + OPTIMAL + 0.009s + 9.11000e+00 - + - โ - - + OPTIMAL + 0.062s + 9.11000e+00 - + - โ - - + OPTIMAL + 0.539s + 9.11004e+00 - - - SDPLIB - mcp250-2 - UNKNOWN - -5.31930e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - SDPLIB - mcp250-3 - UNKNOWN - -9.81173e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - + - โ - - + UNSUPPORTED + โ + โ - + + + SDPLIB + truss4 + SDP + 9.01000e+00 - โ - - + OPTIMAL + 0.286s + 9.01000e+00 - + - โ - - + OPTIMAL + 0.264s + 9.01000e+00 - + - โ - - + OPTIMAL + 0.015s + 9.01000e+00 - + - โ - - + OPTIMAL + 0.006s + 9.01000e+00 - + - โ - - + OPTIMAL + 0.039s + 9.01000e+00 - + - โ - - + OPTIMAL + 0.006s + 9.01000e+00 - - - SDPLIB - mcp250-4 - UNKNOWN - -1.68196e+03 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - - - โ - - - - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - mcp500-1 - UNKNOWN - -5.98149e+02 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss5_sdp + SDP + 1.32636e+02 - โ - - + OPTIMAL + 1.047s + 1.32636e+02 - + - โ - - + OPTIMAL + 0.594s + 1.32636e+02 - + - โ - - + OPTIMAL + 0.225s + 1.32636e+02 - + - โ - - + OPTIMAL + 0.497s + 1.32636e+02 - + - โ - - + OPTIMAL + 1.263s + 1.32636e+02 - + - โ - - + OPTIMAL + 22.395s + 1.32670e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - mcp500-2 - UNKNOWN - -1.07006e+03 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss6 + SDP + 9.01001e+02 - โ - - + MAX_ITER + 0.569s + 9.01001e+02 - โ - - + NUM_ERROR + 0.987s + 9.01001e+02 - + - โ - - + INFEASIBLE + 0.291s + โ - + - โ - - + OPTIMAL + 0.254s + 9.01000e+02 - + - โ - - + ERROR + 1.997s + โ - + - โ - - + OPTIMAL + 14.330s + 9.01095e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - mcp500-3 - UNKNOWN - -1.84797e+03 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss7 + SDP + 9.00001e+02 - โ - - + UNKNOWN + 0.544s + 9.00001e+02 - + - โ - - + OPTIMAL + 1.193s + 9.00001e+02 - + - โ - - + OPTIMAL (INACCURATE) + 0.334s + 9.00001e+02 - + - โ - - + OPTIMAL + 0.134s + 9.00001e+02 - + - โ - - + ERROR + 1.256s + โ - + - โ - - + OPTIMAL + 3.863s + 9.00036e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - - - SDPLIB - mcp500-4 - UNKNOWN - -3.56674e+03 + - ERROR + UNSUPPORTED โ โ - + - ERROR + UNSUPPORTED โ โ - + + + SDPLIB + truss8_sdp + SDP + 1.33115e+02 - โ - - + OPTIMAL + 1.013s + 1.33115e+02 - + - โ - - + OPTIMAL + 1.112s + 1.33115e+02 - + - โ - - + OPTIMAL + 1.337s + 1.33115e+02 - + - โ - - + OPTIMAL + 8.423s + 1.33115e+02 - + - โ - - + OPTIMAL + 5.338s + 1.33115e+02 - + - โ - - + OPTIMAL + 79.173s + 1.33206e+02 - + - โ - - + UNSUPPORTED + โ + โ - + - โ - - + UNSUPPORTED + โ + โ - + + + UNSUPPORTED + โ + โ + + + + UNSUPPORTED + โ + โ + + - โ - - + UNSUPPORTED + โ + โ @@ -10121,11 +8866,20 @@ ๐ Legend ๐ Status Legend - OPTIMAL - Successfully solved to optimality - UNSUPPORTED - Solver does not support this problem type - ERROR - Solver encountered an error - INFEASIBLE/UNBOUNDED - Problem has no feasible solution - โ - No result available + + + OPTIMAL - Successfully solved to optimality + ERROR - Solver encountered an error + INFEASIBLE/UNBOUNDED - Problem has no feasible solution + + + UNSUPPORTED - Solver does not support this problem type + TIMEOUT - Execution time limit exceeded + SIGKILL - Process forcibly terminated (memory limits) + SUBPROCESS_ERROR - Subprocess execution error + โ - No result available + + diff --git a/main.py b/main.py index 83a1dc7..fa0626a 100644 --- a/main.py +++ b/main.py @@ -178,7 +178,8 @@ def run_benchmark(library_names: Optional[List[str]] = None, problems: Optional[List[str]] = None, solvers: Optional[List[str]] = None, dry_run: bool = False, - save_solutions: bool = False) -> bool: + save_solutions: bool = False, + timeout: float = 120.0) -> bool: """Run the benchmark suite with simplified registry-based approach. Args: @@ -187,6 +188,7 @@ def run_benchmark(library_names: Optional[List[str]] = None, solvers: List of solver names to run dry_run: If True, skip database operations (for testing) save_solutions: If True, save optimal solutions to disk + timeout: Timeout in seconds for solver execution (default: 120.0) """ logger = get_logger("benchmark") @@ -195,7 +197,7 @@ def run_benchmark(library_names: Optional[List[str]] = None, logger.info("Starting benchmark execution...") # Create benchmark runner (db_manager created internally by default) - runner = BenchmarkRunner(dry_run=dry_run, save_solutions=save_solutions) + runner = BenchmarkRunner(dry_run=dry_run, save_solutions=save_solutions, default_timeout=timeout) # Load problem registry only (solver configs now in interfaces) problem_registry = load_problem_registry() @@ -300,10 +302,9 @@ def generate_reports() -> bool: logger.info("Exporting data files...") data_exporter = DataExporter(output_dir="docs/pages/data") - data_success = data_exporter.export_latest_results() - summary_success = data_exporter.export_summary_only() + data_success = data_exporter.export_both_versions() - if not (data_success and summary_success): + if not data_success: logger.error("Failed to export data files") return False @@ -315,9 +316,10 @@ def generate_reports() -> bool: logger.info(" โข docs/pages/index.html (Overview Dashboard)") logger.info(" โข docs/pages/results_matrix.html (Results Matrix)") logger.info(" โข docs/pages/raw_data.html (Raw Data Table)") - logger.info(" โข docs/pages/data/benchmark_results.json (Full Results JSON)") - logger.info(" โข docs/pages/data/benchmark_results.csv (Full Results CSV)") - logger.info(" โข docs/pages/data/summary.json (Summary Statistics)") + logger.info(" โข docs/pages/data/benchmark_results_latest.json (Latest Results JSON)") + logger.info(" โข docs/pages/data/benchmark_results_latest.csv (Latest Results CSV)") + logger.info(" โข docs/pages/data/benchmark_results_all.json (All Results JSON)") + logger.info(" โข docs/pages/data/benchmark_results_all.csv (All Results CSV)") return True @@ -346,7 +348,13 @@ def main(): python main.py --benchmark --solvers cvxpy_clarabel,scipy_linprog # Run specific solvers python main.py --all --problems nb --solvers cvxpy_clarabel # Run one problem with one solver python main.py --benchmark --library_names DIMACS --solvers cvxpy_scip # Run DIMACS with SCIP - python main.py --benchmark --problems nb --dry-run # Test nb problem without DB storage + python main.py --benchmark --problems nb --dry-run # Test nb problem without DB storage + + # Timeout configuration examples: + python main.py --benchmark --timeout 60 # Set 60-second timeout for quick tests + python main.py --all --timeout 300 # Run all with 5-minute timeout + python main.py --benchmark --library_names SDPLIB --timeout 600 # Use 10-minute timeout for large SDP problems + python main.py --benchmark --problems difficult_problem --timeout 1800 # 30-minute timeout for challenging problems """ ) @@ -409,6 +417,13 @@ def main(): help='Save optimal solutions to disk for verification and analysis' ) + parser.add_argument( + '--timeout', '-t', + type=float, + default=120.0, + help='Solver timeout in seconds. Solvers exceeding this limit will be terminated and marked as TIMEOUT. Default: 120.0 (2 minutes). Use larger values (300-1800) for difficult problems.' + ) + # Logging options parser.add_argument( '--verbose', '-v', @@ -467,7 +482,8 @@ def main(): problems=problems, solvers=solvers, dry_run=args.dry_run, - save_solutions=args.save_solutions + save_solutions=args.save_solutions, + timeout=args.timeout ) elif args.report: @@ -480,7 +496,8 @@ def main(): problems=problems, solvers=solvers, dry_run=args.dry_run, - save_solutions=args.save_solutions + save_solutions=args.save_solutions, + timeout=args.timeout ) if benchmark_success: diff --git a/requirements.txt b/requirements.txt index f203611..b8bd896 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ # Core dependencies pyyaml==6.0.2 jinja2==3.1.6 -psutil==7.0.0 +psutil==6.1.0 # Scientific computing scipy==1.15.3 diff --git a/scripts/benchmark/runner.py b/scripts/benchmark/runner.py index edeb058..08b0dfe 100644 --- a/scripts/benchmark/runner.py +++ b/scripts/benchmark/runner.py @@ -22,7 +22,7 @@ import time import json from pathlib import Path -from typing import Dict, List, Optional, Any +from typing import Dict, List, Optional, Any, Tuple import yaml # Add project root to path for imports @@ -37,8 +37,8 @@ # Interface imports (symmetrical design) from scripts.solvers.solver_interface import SolverInterface, SolverResult -from scripts.solvers.python.python_interface import PythonInterface -from scripts.solvers.matlab_octave.matlab_interface import MatlabInterface +from scripts.solvers.python.python_process_interface import PythonProcessInterface +from scripts.solvers.matlab.matlab_process_interface import MatlabProcessInterface from scripts.data_loaders.python.problem_interface import ProblemInterface logger = get_logger("benchmark_runner") @@ -51,7 +51,8 @@ class BenchmarkRunner: def __init__(self, database_manager: Optional[DatabaseManager] = None, dry_run: bool = False, - save_solutions: bool = False): + save_solutions: bool = False, + default_timeout: float = 120.0): """ Initialize benchmark runner with symmetrical solver interfaces. @@ -59,10 +60,15 @@ def __init__(self, database_manager: Optional[DatabaseManager] = None, database_manager: Optional database manager (creates default if None) dry_run: If True, skip database operations (for testing) save_solutions: If True, save optimal solutions to disk + default_timeout: Default timeout in seconds for solver execution. Solvers + exceeding this limit will be terminated and marked as TIMEOUT. + Default: 120.0 seconds. Use larger values (300-1800) for + computationally intensive problems like large SDP instances. """ self.db = database_manager or DatabaseManager() self.dry_run = dry_run self.save_solutions = save_solutions + self.default_timeout = default_timeout # Initialize problem interface only (essential for all operations) self.problem_interface = ProblemInterface() @@ -85,9 +91,10 @@ def __init__(self, database_manager: Optional[DatabaseManager] = None, logger.info("Benchmark runner initialized with unified interfaces") logger.info(f"Git commit: {self.commit_hash}") logger.info(f"Environment: {self.environment_info['os']['system']} {self.environment_info['python']['version']}") + logger.info(f"Default timeout: {self.default_timeout}s") - python_configured = len(PythonInterface.PYTHON_SOLVER_CONFIGS) - matlab_configured = len(MatlabInterface.MATLAB_SOLVER_CONFIGS) + python_configured = len(PythonProcessInterface.PYTHON_SOLVER_CONFIGS) + matlab_configured = len(MatlabProcessInterface.MATLAB_SOLVER_CONFIGS) problem_stats = self.problem_interface.get_problem_statistics() logger.info(f"Python interface: {python_configured} solvers configured (lazy detection)") @@ -95,24 +102,24 @@ def __init__(self, database_manager: Optional[DatabaseManager] = None, logger.info(f"Problem interface: {problem_stats['total_problems']} problems from {len(problem_stats['libraries'])} libraries") @property - def python_interface(self) -> PythonInterface: + def python_interface(self) -> PythonProcessInterface: """Lazy initialization of Python interface.""" if self._python_interface is None: logger.debug("Initializing Python interface on first access") - self._python_interface = PythonInterface( + self._python_interface = PythonProcessInterface( save_solutions=self.save_solutions, problem_interface=self.problem_interface ) return self._python_interface @property - def matlab_interface(self) -> Optional[MatlabInterface]: + def matlab_interface(self) -> Optional[MatlabProcessInterface]: """Lazy initialization of MATLAB interface.""" if self._matlab_interface is None and not self._matlab_interface_attempted: self._matlab_interface_attempted = True try: logger.debug("Initializing MATLAB interface on first access") - self._matlab_interface = MatlabInterface( + self._matlab_interface = MatlabProcessInterface( save_solutions=self.save_solutions, problem_interface=self.problem_interface ) @@ -131,11 +138,11 @@ def _build_solver_interface_map(self) -> Dict[str, str]: mapping = {} # Add Python solvers - for solver_name in PythonInterface.PYTHON_SOLVER_CONFIGS.keys(): + for solver_name in PythonProcessInterface.PYTHON_SOLVER_CONFIGS.keys(): mapping[solver_name] = 'python' # Add MATLAB solvers - for solver_name in MatlabInterface.MATLAB_SOLVER_CONFIGS.keys(): + for solver_name in MatlabProcessInterface.MATLAB_SOLVER_CONFIGS.keys(): mapping[solver_name] = 'matlab' logger.debug(f"Built solver interface mapping: {len(mapping)} solvers") @@ -321,10 +328,10 @@ def run_single_benchmark(self, problem_name: str, solver_name: str) -> None: if interface_type == 'python': # Route directly to Python interface - result = self.python_interface.solve(problem_name, solver_name) + result = self.python_interface.solve(problem_name, solver_name, timeout=self.default_timeout) elif interface_type == 'matlab': - result = self.matlab_interface.solve(problem_name, solver_name) + result = self.matlab_interface.solve(problem_name, solver_name, timeout=self.default_timeout) else: raise ValueError(f"Unknown solver '{solver_name}'. Available solvers: {list(self._solver_interface_map.keys())}") @@ -347,7 +354,12 @@ def run_single_benchmark(self, problem_name: str, solver_name: str) -> None: error_msg = f"Benchmark execution failed: {str(e)}" logger.error(error_msg) - # Store error result + # Skip storing result if solver doesn't exist + if "Unknown solver" in str(e): + logger.warning(f"Skipping database storage for unknown solver: {solver_name}") + return + + # Store error result for other types of errors try: problem_config = self.problem_interface.get_problem_config(problem_name) self.store_error_result(solver_name, problem_name, error_msg, problem_config) @@ -414,24 +426,65 @@ def validate_setup(self) -> Dict[str, Any]: } } - # Test solver creation + # Test solver availability using lightweight import validation for solver_name in self.get_available_solvers(): report['summary']['total_solvers'] += 1 try: - solver = self.create_solver(solver_name) - report['solvers'][solver_name] = { - 'status': 'working', - 'version': solver.get_version() - } - report['summary']['working_solvers'] += 1 + interface_type = self._solver_interface_map.get(solver_name) + + if interface_type == 'python': + # Test Python solver availability via import + status, version_info = self._test_python_solver_import(solver_name) + elif interface_type == 'matlab': + # Test MATLAB solver availability + if self.matlab_interface is None: + report['solvers'][solver_name] = { + 'status': 'error', + 'error': 'MATLAB interface not available' + } + continue + status, version_info = self._test_matlab_solver_availability(solver_name) + else: + report['solvers'][solver_name] = { + 'status': 'error', + 'error': f'Unknown interface type: {interface_type}' + } + continue + + if status == 'working': + report['solvers'][solver_name] = { + 'status': 'working', + 'version': version_info + } + report['summary']['working_solvers'] += 1 + else: + report['solvers'][solver_name] = { + 'status': 'error', + 'error': version_info # version_info contains error message when status != 'working' + } + except Exception as e: report['solvers'][solver_name] = { 'status': 'error', 'error': str(e) } - # Test problem loading using problem interface - for problem_name in self.get_available_problems(): + # Test problem loading using problem interface (lightweight validation) + # Use test problems first, fall back to representative problems from each library + test_problems = self.get_available_problems(for_test_only=True) + if not test_problems: + # If no test problems, take first problem from each library + stats = self.problem_interface.get_problem_statistics() + test_problems = [] + for library in stats.get("libraries", {}): + library_problems = self.problem_interface.get_problems_by_library([library]) + if library_problems: + test_problems.append(library_problems[0]) + + # Limit test problems for validation performance + test_problems = test_problems[:5] + + for problem_name in test_problems: report['summary']['total_problems'] += 1 try: problem_config = self.problem_interface.get_problem_config(problem_name) @@ -449,6 +502,82 @@ def validate_setup(self) -> Dict[str, Any]: } return report + + def _test_python_solver_import(self, solver_name: str) -> Tuple[str, str]: + """ + Test Python solver availability via import testing. + + Args: + solver_name: Name of the solver to test + + Returns: + Tuple of (status, version_info) where status is 'working' or 'error' + """ + try: + # Test basic imports for each solver type + if solver_name.startswith('cvxpy_'): + import cvxpy as cp + backend = solver_name.replace('cvxpy_', '').upper() + + # Test specific backend availability + if backend == 'CLARABEL': + import clarabel + return 'working', f"CVXPY {cp.__version__} + CLARABEL {clarabel.__version__}" + elif backend == 'SCS': + import scs + return 'working', f"CVXPY {cp.__version__} + SCS {scs.__version__}" + elif backend == 'ECOS': + import ecos + return 'working', f"CVXPY {cp.__version__} + ECOS {ecos.__version__}" + elif backend == 'OSQP': + import osqp + return 'working', f"CVXPY {cp.__version__} + OSQP {osqp.__version__}" + elif backend == 'CVXOPT': + import cvxopt + return 'working', f"CVXPY {cp.__version__} + CVXOPT {cvxopt.__version__}" + elif backend == 'SDPA': + # SDPA is optional, may not have version + return 'working', f"CVXPY {cp.__version__} + SDPA" + elif backend == 'SCIP': + import pyscipopt + return 'working', f"CVXPY {cp.__version__} + SCIP {pyscipopt.__version__}" + elif backend == 'HIGHS': + import highspy + return 'working', f"CVXPY {cp.__version__} + HiGHS" + else: + return 'error', f"Unknown CVXPY backend: {backend}" + + elif solver_name == 'scipy_linprog': + import scipy.optimize + import scipy + return 'working', f"SciPy {scipy.__version__}" + else: + return 'error', f"Unknown Python solver: {solver_name}" + + except ImportError as e: + return 'error', f"Import failed: {str(e)}" + except Exception as e: + return 'error', f"Validation error: {str(e)}" + + def _test_matlab_solver_availability(self, solver_name: str) -> Tuple[str, str]: + """ + Test MATLAB solver availability. + + Args: + solver_name: Name of the MATLAB solver to test + + Returns: + Tuple of (status, version_info) where status is 'working' or 'error' + """ + try: + # For MATLAB solvers, check if interface detected them + if solver_name in self.matlab_interface.get_available_solvers(): + # MATLAB interface already detected this solver during initialization + return 'working', 'MATLAB solver detected' + else: + return 'error', 'MATLAB solver not detected' + except Exception as e: + return 'error', f"MATLAB validation error: {str(e)}" if __name__ == "__main__": diff --git a/scripts/data_loaders/matlab_octave/.gitkeep b/scripts/data_loaders/matlab/.gitkeep similarity index 100% rename from scripts/data_loaders/matlab_octave/.gitkeep rename to scripts/data_loaders/matlab/.gitkeep diff --git a/scripts/data_loaders/matlab_octave/dat_loader.m b/scripts/data_loaders/matlab/dat_loader.m similarity index 94% rename from scripts/data_loaders/matlab_octave/dat_loader.m rename to scripts/data_loaders/matlab/dat_loader.m index 666982e..7d24373 100644 --- a/scripts/data_loaders/matlab_octave/dat_loader.m +++ b/scripts/data_loaders/matlab/dat_loader.m @@ -162,12 +162,24 @@ error('dat_loader:InvalidFormat', 'Block sizes count (%d) doesn''t match nblocks (%d)', valid_count, nblocks); end - % Line 4: objective vector c - c_str = strsplit(data_lines{4}); + % Line 4: objective vector c (handle both standard and array formats) + c_line = strtrim(data_lines{4}); + + % Check if it's array format with curly braces + if startsWith(c_line, '{') && endsWith(c_line, '}') + % Array format: {+0.0,+1.0,+1.0,...} (e.g., gpp100.dat-s uses this format) + % Remove braces and split by comma + c_values_str = c_line(2:end-1); % Remove { and } + c_str = strsplit(c_values_str, ','); + else + % Standard space-separated format (e.g., arch0.dat-s uses this format) + c_str = strsplit(c_line); + end + c = zeros(m, 1); for i = 1:m if i <= length(c_str) - c(i) = str2double(c_str{i}); + c(i) = str2double(strtrim(c_str{i})); if isnan(c(i)) error('dat_loader:InvalidFormat', 'Invalid objective coefficient: %s', c_str{i}); end diff --git a/scripts/data_loaders/matlab_octave/mat_loader.m b/scripts/data_loaders/matlab/mat_loader.m similarity index 96% rename from scripts/data_loaders/matlab_octave/mat_loader.m rename to scripts/data_loaders/matlab/mat_loader.m index 1a8a729..e636a0a 100644 --- a/scripts/data_loaders/matlab_octave/mat_loader.m +++ b/scripts/data_loaders/matlab/mat_loader.m @@ -175,7 +175,10 @@ % Linear inequality variables (x >= 0) if isfield(K, 'l') - if ~isscalar(K.l) || K.l < 0 || K.l ~= round(K.l) + % Handle empty array case (convert [] to 0) + if isempty(K.l) + K.l = 0; + elseif ~isscalar(K.l) || K.l < 0 || K.l ~= round(K.l) error('mat_loader:InvalidFormat', 'K.l (linear variables) must be a non-negative integer'); end total_vars = total_vars + K.l; @@ -185,7 +188,8 @@ % Second-order cone variables if isfield(K, 'q') - if ~isnumeric(K.q) || any(K.q < 0) || any(K.q ~= round(K.q)) + % Handle empty array case (keep as empty for no SOCP cones) + if ~isempty(K.q) && (~isnumeric(K.q) || any(K.q < 0) || any(K.q ~= round(K.q))) error('mat_loader:InvalidFormat', 'K.q (SOCP cone sizes) must be non-negative integers'); end total_vars = total_vars + sum(K.q); diff --git a/scripts/data_loaders/python/dat_loader.py b/scripts/data_loaders/python/dat_loader.py index 75b1de1..b1e1b9e 100644 --- a/scripts/data_loaders/python/dat_loader.py +++ b/scripts/data_loaders/python/dat_loader.py @@ -113,9 +113,19 @@ def parse_sdpa_file(self, file_path: str) -> Dict[str, Any]: if len(block_sizes) != nblocks: raise ValueError(f"Block sizes count ({len(block_sizes)}) doesn't match nblocks ({nblocks})") - # Parse objective vector + # Parse objective vector (handle both standard and array formats) c_line = data_lines[3] - c = np.array([float(x) for x in c_line.split()]) + + # Check if it's array format with curly braces + if c_line.strip().startswith('{') and c_line.strip().endswith('}'): + # Array format: {+0.0,+1.0,+1.0,...} (e.g., gpp100.dat-s uses this format) + # Remove braces and split by comma + c_values_str = c_line.strip()[1:-1] # Remove { and } + c_values = [float(x.strip()) for x in c_values_str.split(',')] + c = np.array(c_values) + else: + # Standard space-separated format (e.g., arch0.dat-s uses this format) + c = np.array([float(x) for x in c_line.split()]) if len(c) != m: raise ValueError(f"Objective vector length ({len(c)}) doesn't match m ({m})") diff --git a/scripts/database/database_manager.py b/scripts/database/database_manager.py index 30e2911..c4f1809 100644 --- a/scripts/database/database_manager.py +++ b/scripts/database/database_manager.py @@ -164,7 +164,7 @@ def get_latest_results(self, commit_hash: Optional[str] = None, environment_info ) r2 ON r1.solver_name = r2.solver_name AND r1.problem_name = r2.problem_name AND r1.timestamp = r2.max_timestamp - ORDER BY r1.problem_library, r1.problem_name, r1.solver_name + ORDER BY r1.problem_library, r1.problem_name, r1.solver_name, r1.id DESC """ params = () diff --git a/scripts/database/table_restorer.py b/scripts/database/table_restorer.py new file mode 100644 index 0000000..644b843 --- /dev/null +++ b/scripts/database/table_restorer.py @@ -0,0 +1,610 @@ +""" +Database Table Restorer +====================== + +Restore the results table from exported JSON/CSV files to verify data integrity +and enable database recovery from exported data. +""" + +import json +import csv +import sqlite3 +import shutil +from pathlib import Path +from typing import List, Dict, Any, Optional +from datetime import datetime +import sys +import argparse + +# Add project root to path for imports +project_root = Path(__file__).parent.parent.parent +sys.path.insert(0, str(project_root)) + +from scripts.reporting.result_processor import BenchmarkResult +from scripts.database.database_manager import DatabaseManager +from scripts.utils.logger import get_logger + +logger = get_logger("table_restorer") + + +class TableRestorer: + """Restore database table from exported data""" + + def __init__(self, target_db_path: Optional[str] = None): + """ + Initialize table restorer + + Args: + target_db_path: Path to target database (defaults to test database) + """ + if target_db_path is None: + # Use test database by default to avoid overwriting production data + target_db_path = project_root / "database" / "results_restored.db" + + self.target_db_path = Path(target_db_path) + self.logger = get_logger("table_restorer") + + # Create database manager for target database + self.db_manager = DatabaseManager(str(self.target_db_path)) + + def restore_from_json(self, json_file_path: str) -> bool: + """ + Restore database table from JSON export file + + Args: + json_file_path: Path to JSON export file + + Returns: + True if restoration successful, False otherwise + """ + + self.logger.info(f"Restoring database from JSON file: {json_file_path}") + + try: + # Load JSON data + with open(json_file_path, 'r') as f: + export_data = json.load(f) + + # Extract results from export data + if 'results' not in export_data: + self.logger.error("JSON file does not contain 'results' key") + return False + + results_data = export_data['results'] + + # Convert to BenchmarkResult objects + results = [] + for result_dict in results_data: + result = self._dict_to_benchmark_result(result_dict) + if result: + results.append(result) + + # Insert into database + success = self._insert_results_to_database(results) + + if success: + self.logger.info(f"Successfully restored {len(results)} results from JSON") + return True + else: + self.logger.error("Failed to insert results to database") + return False + + except Exception as e: + self.logger.error(f"Failed to restore from JSON: {e}") + return False + + def restore_from_csv(self, csv_file_path: str) -> bool: + """ + Restore database table from CSV export file + + Args: + csv_file_path: Path to CSV export file + + Returns: + True if restoration successful, False otherwise + """ + + self.logger.info(f"Restoring database from CSV file: {csv_file_path}") + + try: + # Load CSV data + results = [] + with open(csv_file_path, 'r', newline='') as csvfile: + reader = csv.DictReader(csvfile) + + for row in reader: + result = self._dict_to_benchmark_result(row) + if result: + results.append(result) + + # Insert into database + success = self._insert_results_to_database(results) + + if success: + self.logger.info(f"Successfully restored {len(results)} results from CSV") + return True + else: + self.logger.error("Failed to insert results to database") + return False + + except Exception as e: + self.logger.error(f"Failed to restore from CSV: {e}") + return False + + def _dict_to_benchmark_result(self, data_dict: Dict[str, Any]) -> Optional[BenchmarkResult]: + """ + Convert dictionary to BenchmarkResult object + + Args: + data_dict: Dictionary containing result data + + Returns: + BenchmarkResult object or None if conversion fails + """ + + try: + # Handle JSON strings and empty values in CSV data + processed_dict = {} + for key, value in data_dict.items(): + # Convert empty strings to None (CSV limitation) + if value == '' or value is None: + processed_dict[key] = None + elif key in ['environment_info', 'memo'] and isinstance(value, str) and value: + try: + processed_dict[key] = json.loads(value) + except json.JSONDecodeError: + processed_dict[key] = value + else: + processed_dict[key] = value + + # Convert to BenchmarkResult using the existing from_dict method + result = BenchmarkResult.from_dict(processed_dict) + return result + + except Exception as e: + self.logger.warning(f"Failed to convert dict to BenchmarkResult: {e}") + return None + + def _insert_results_to_database(self, results: List[BenchmarkResult]) -> bool: + """ + Insert BenchmarkResult objects into database + + Args: + results: List of BenchmarkResult objects + + Returns: + True if insertion successful, False otherwise + """ + + try: + # Create database tables if they don't exist + self.db_manager.ensure_schema() + + # Insert each result directly + for result in results: + self._store_result_direct(result) + + self.logger.info(f"Successfully inserted {len(results)} results into database") + return True + + except Exception as e: + self.logger.error(f"Failed to insert results to database: {e}") + return False + + def _store_result_direct(self, result: BenchmarkResult) -> None: + """ + Store BenchmarkResult directly to database with original metadata + + Args: + result: BenchmarkResult to store + """ + + # Insert directly to preserve original timestamps and metadata + query = """ + INSERT INTO results + (solver_name, solver_version, problem_library, problem_name, problem_type, + environment_info, commit_hash, timestamp, solve_time, status, + primal_objective_value, dual_objective_value, duality_gap, + primal_infeasibility, dual_infeasibility, iterations, memo) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + """ + + # Convert timestamp back to database format + timestamp_str = result.timestamp.isoformat() if result.timestamp else None + + # Use direct sqlite3 connection like DatabaseManager does + with sqlite3.connect(self.target_db_path) as conn: + conn.execute(query, ( + result.solver_name, + result.solver_version, + result.problem_library, + result.problem_name, + result.problem_type, + json.dumps(result.environment_info) if result.environment_info else None, + result.commit_hash, + timestamp_str, + result.solve_time, + result.status, + result.primal_objective_value, + result.dual_objective_value, + result.duality_gap, + result.primal_infeasibility, + result.dual_infeasibility, + result.iterations, + result.memo if isinstance(result.memo, str) else json.dumps(result.memo) if result.memo else None + )) + conn.commit() + + def _normalize_row_for_comparison(self, row: tuple, columns: List[str]) -> tuple: + """ + Normalize row data for meaningful comparison (handle format differences) + + Args: + row: Database row tuple + columns: Column names + + Returns: + Normalized row tuple + """ + normalized = list(row) + + for i, (value, column) in enumerate(zip(row, columns)): + # Normalize None and empty string to None for comparison + if value is None or value == '': + normalized[i] = None + continue + + # Normalize timestamp format + if column == 'timestamp' and isinstance(value, str): + # Convert both formats to same format for comparison + if 'T' in value: + # ISO format -> SQLite format + normalized[i] = value.replace('T', ' ') + # SQLite format stays as is + + # Normalize JSON format + elif column == 'environment_info' and isinstance(value, str): + try: + # Parse and re-serialize to normalize format + parsed = json.loads(value) + normalized[i] = json.dumps(parsed, sort_keys=True, separators=(',', ':')) + except json.JSONDecodeError: + # Keep original if not valid JSON + pass + elif column == 'memo' and isinstance(value, str): + # For memo field, handle both plain strings and JSON strings + try: + # Try to parse as JSON first + parsed = json.loads(value) + if isinstance(parsed, str): + # JSON-encoded string, use the decoded string + normalized[i] = parsed + else: + # JSON object, normalize to compact format + normalized[i] = json.dumps(parsed, sort_keys=True, separators=(',', ':')) + except json.JSONDecodeError: + # Not valid JSON, keep as plain string + pass + + return tuple(normalized) + + def compare_databases(self, original_db_path: str, restored_db_path: Optional[str] = None) -> Dict[str, Any]: + """ + Compare original database with restored database + + Args: + original_db_path: Path to original database + restored_db_path: Path to restored database (defaults to self.target_db_path) + + Returns: + Dictionary containing comparison results + """ + + if restored_db_path is None: + restored_db_path = self.target_db_path + + self.logger.info(f"Comparing databases: {original_db_path} vs {restored_db_path}") + + try: + # Connect to both databases + original_conn = sqlite3.connect(original_db_path) + restored_conn = sqlite3.connect(restored_db_path) + + # Get row counts + original_count = original_conn.execute("SELECT COUNT(*) FROM results").fetchone()[0] + restored_count = restored_conn.execute("SELECT COUNT(*) FROM results").fetchone()[0] + + # Get sample data for comparison (ordered by meaningful fields, not id) + # Order by solver_name, problem_name, timestamp for consistent comparison + original_sample = original_conn.execute(""" + SELECT * FROM results + ORDER BY solver_name, problem_name, timestamp + LIMIT 10 + """).fetchall() + + restored_sample = restored_conn.execute(""" + SELECT * FROM results + ORDER BY solver_name, problem_name, timestamp + LIMIT 10 + """).fetchall() + + # Get column info (extract column names from table_info) + original_columns = [info[1] for info in original_conn.execute("PRAGMA table_info(results)").fetchall()] + restored_columns = [info[1] for info in restored_conn.execute("PRAGMA table_info(results)").fetchall()] + + # Close connections + original_conn.close() + restored_conn.close() + + # Calculate differences + row_count_match = original_count == restored_count + schema_match = original_columns == restored_columns + + # Compare sample data (excluding id and timestamp which might differ) + sample_match = True + sample_differences = [] + + if len(original_sample) == len(restored_sample): + for row_idx, (orig_row, rest_row) in enumerate(zip(original_sample, restored_sample)): + # Compare all fields except id (index 0) which might be auto-generated differently + # Apply normalization for meaningful comparison + normalized_orig = self._normalize_row_for_comparison(orig_row, original_columns) + normalized_rest = self._normalize_row_for_comparison(rest_row, restored_columns) + + if normalized_orig[1:] != normalized_rest[1:]: # Skip first field (id) + sample_match = False + # Find specific field differences (only show if truly different after normalization) + for field_idx in range(1, len(normalized_orig)): + if field_idx < len(normalized_rest) and normalized_orig[field_idx] != normalized_rest[field_idx]: + field_name = original_columns[field_idx] if field_idx < len(original_columns) else f"field_{field_idx}" + sample_differences.append({ + 'row': row_idx, + 'field': field_name, + 'original': orig_row[field_idx], + 'restored': rest_row[field_idx], + 'normalized_original': normalized_orig[field_idx], + 'normalized_restored': normalized_rest[field_idx] + }) + if len(sample_differences) >= 5: # Limit to first 5 differences + break + else: + # This row matches after normalization + pass + else: + sample_match = False + sample_differences.append({'error': 'Different number of sample rows'}) + + comparison_result = { + 'original_count': original_count, + 'restored_count': restored_count, + 'row_count_match': row_count_match, + 'schema_match': schema_match, + 'sample_match': sample_match, + 'sample_differences': sample_differences, + 'original_columns': original_columns, + 'restored_columns': restored_columns, + 'success': row_count_match and schema_match and sample_match + } + + self.logger.info(f"Database comparison completed: {'SUCCESS' if comparison_result['success'] else 'FAILED'}") + return comparison_result + + except Exception as e: + self.logger.error(f"Failed to compare databases: {e}") + return {'success': False, 'error': str(e)} + + +def restore_database_cli(): + """Command-line interface for database restoration""" + parser = argparse.ArgumentParser( + description="Restore SQLite database from exported JSON/CSV files", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + # Restore database from default JSON file + python table_restorer.py + + # Restore from specific JSON file to specific database + python table_restorer.py --input-json /path/to/data.json --output-db /path/to/output.db + + # Restore from CSV file + python table_restorer.py --input-json /path/to/data.csv --output-db /path/to/output.db + + # Run tests + python table_restorer.py --test + """ + ) + + parser.add_argument( + '--input-json', '--input', + default=str(project_root / "docs" / "pages" / "data" / "benchmark_results_all.json"), + help='Path to input JSON or CSV file (default: docs/pages/data/benchmark_results_all.json)' + ) + + parser.add_argument( + '--output-db', '--output', + default=str(project_root / "database" / "results.db"), + help='Path to output database file (default: database/results.db)' + ) + + parser.add_argument( + '--test', + action='store_true', + help='Run comprehensive test suite instead of restoration' + ) + + parser.add_argument( + '--compare-with', + help='Compare restored database with specified original database file' + ) + + args = parser.parse_args() + + if args.test: + run_test_suite() + return + + # Validate input file + input_path = Path(args.input_json) + if not input_path.exists(): + print(f"โ Error: Input file not found: {input_path}") + sys.exit(1) + + # Determine file type + file_extension = input_path.suffix.lower() + if file_extension not in ['.json', '.csv']: + print(f"โ Error: Unsupported file type: {file_extension}. Supported: .json, .csv") + sys.exit(1) + + # Create output directory if needed + output_path = Path(args.output_db) + output_path.parent.mkdir(parents=True, exist_ok=True) + + print(f"๐ Restoring database from {file_extension.upper()} file...") + print(f" Input: {input_path}") + print(f" Output: {output_path}") + + # Perform restoration + restorer = TableRestorer(target_db_path=str(output_path)) + + try: + if file_extension == '.json': + success = restorer.restore_from_json(str(input_path)) + else: # .csv + success = restorer.restore_from_csv(str(input_path)) + + if success: + print("โ Database restoration completed successfully!") + + # Optional comparison + if args.compare_with: + comparison_path = Path(args.compare_with) + if comparison_path.exists(): + print(f"\n๐ Comparing with original database: {comparison_path}") + comparison = restorer.compare_databases(str(comparison_path)) + + print(f"๐ Comparison Results:") + print(f" Original rows: {comparison.get('original_count', 'N/A')}") + print(f" Restored rows: {comparison.get('restored_count', 'N/A')}") + print(f" Row count match: {'โ ' if comparison.get('row_count_match') else 'โ'}") + print(f" Schema match: {'โ ' if comparison.get('schema_match') else 'โ'}") + print(f" Sample data match: {'โ ' if comparison.get('sample_match') else 'โ'}") + print(f" Overall success: {'โ ' if comparison.get('success') else 'โ'}") + else: + print(f"โ ๏ธ Warning: Comparison database not found: {comparison_path}") + + else: + print("โ Database restoration failed!") + sys.exit(1) + + except Exception as e: + print(f"โ Error during restoration: {e}") + sys.exit(1) + + +def run_test_suite(): + """Run comprehensive test suite for table restoration functionality""" + print("๐ Testing Database Table Restoration...") + + # Test JSON restoration + print("\n1. Testing JSON restoration...") + restorer_json = TableRestorer(target_db_path="database/results_restored_json.db") + json_file = project_root / "docs" / "pages" / "data" / "benchmark_results_all.json" + + if json_file.exists(): + json_success = restorer_json.restore_from_json(str(json_file)) + if json_success: + print("โ JSON restoration completed successfully!") + else: + print("โ JSON restoration failed") + else: + print("โ JSON file not found") + json_success = False + + # Test JSON database comparison + print("\n2. Testing JSON restoration comparison...") + if json_success: + original_db = project_root / "database" / "results.db" + comparison = restorer_json.compare_databases(str(original_db)) + + print(f"๐ JSON Restoration Results:") + print(f" Original rows: {comparison.get('original_count', 'N/A')}") + print(f" Restored rows: {comparison.get('restored_count', 'N/A')}") + print(f" Row count match: {'โ ' if comparison.get('row_count_match') else 'โ'}") + print(f" Schema match: {'โ ' if comparison.get('schema_match') else 'โ'}") + print(f" Sample data match: {'โ ' if comparison.get('sample_match') else 'โ'}") + print(f" Overall success: {'โ ' if comparison.get('success') else 'โ'}") + + if comparison.get('success'): + print(" ๐ JSON restoration test PASSED!") + else: + print(" โ JSON restoration test FAILED!") + + # Test CSV restoration + print("\n3. Testing CSV restoration...") + restorer_csv = TableRestorer(target_db_path="database/results_restored_csv.db") + csv_file = project_root / "docs" / "pages" / "data" / "benchmark_results_all.csv" + + if csv_file.exists(): + csv_success = restorer_csv.restore_from_csv(str(csv_file)) + if csv_success: + print("โ CSV restoration completed successfully!") + else: + print("โ CSV restoration failed") + else: + print("โ CSV file not found") + csv_success = False + + # Test CSV database comparison + print("\n4. Testing CSV restoration comparison...") + if csv_success: + original_db = project_root / "database" / "results.db" + comparison = restorer_csv.compare_databases(str(original_db)) + + print(f"๐ CSV Restoration Results:") + print(f" Original rows: {comparison.get('original_count', 'N/A')}") + print(f" Restored rows: {comparison.get('restored_count', 'N/A')}") + print(f" Row count match: {'โ ' if comparison.get('row_count_match') else 'โ'}") + print(f" Schema match: {'โ ' if comparison.get('schema_match') else 'โ'}") + print(f" Sample data match: {'โ ' if comparison.get('sample_match') else 'โ'}") + print(f" Overall success: {'โ ' if comparison.get('success') else 'โ'}") + + if comparison.get('success'): + print(" ๐ CSV restoration test PASSED!") + else: + print(" โ CSV restoration test FAILED!") + + # Summary + print("\n5. Test Summary:") + json_comparison = restorer_json.compare_databases(str(original_db)) if json_success else {'success': False} + csv_comparison = restorer_csv.compare_databases(str(original_db)) if csv_success else {'success': False} + + json_result = "โ PASSED" if (json_success and json_comparison.get('success', False)) else "โ FAILED" + csv_result = "โ PASSED" if (csv_success and csv_comparison.get('success', False)) else "โ FAILED" + + print(f" JSON restoration: {json_result}") + print(f" CSV restoration: {csv_result}") + + if json_comparison.get('success', False) and csv_comparison.get('success', False): + print("\n๐ COMPLETE SUCCESS! Both JSON and CSV exports can fully restore the original database table.") + print("๐ The exported data contains all necessary information for table restoration.") + else: + print("\nโ ๏ธ Some tests failed. Check the detailed results above.") + + # Keep test databases for manual inspection + print("\n6. Test databases available for inspection:") + if json_success: + print(f" JSON restored DB: {restorer_json.target_db_path}") + if csv_success: + print(f" CSV restored DB: {restorer_csv.target_db_path}") + + print("\n๐ Table restoration test completed!") + + +def main(): + """Main entry point - delegates to CLI interface""" + restore_database_cli() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/scripts/reporting/data_exporter.py b/scripts/reporting/data_exporter.py index 1d4a19d..77ed7a1 100644 --- a/scripts/reporting/data_exporter.py +++ b/scripts/reporting/data_exporter.py @@ -26,17 +26,49 @@ class DataExporter: """Export data in JSON and CSV formats""" - def __init__(self, output_dir: str = None): - """Initialize data exporter with output directory""" + def __init__(self, output_dir: str = None, full_environment_info: bool = False): + """Initialize data exporter with output directory + + Args: + output_dir: Directory to save exported files + full_environment_info: If True, export complete environment_info without sanitization + """ if output_dir is None: output_dir = project_root / "docs" / "pages" / "data" self.output_dir = Path(output_dir) self.output_dir.mkdir(parents=True, exist_ok=True) + self.full_environment_info = full_environment_info self.result_processor = ResultProcessor() self.logger = get_logger("data_exporter") + def _result_to_complete_dict(self, result: BenchmarkResult) -> Dict[str, Any]: + """Convert BenchmarkResult to complete dictionary for database dump-style export""" + # Use full environment_info if requested, otherwise use sanitized version + env_info_data = result.environment_info if self.full_environment_info else result.get_sanitized_environment_info() + + return { + 'id': result.id, + 'solver_name': result.solver_name, + 'solver_version': result.solver_version, + 'problem_library': result.problem_library, + 'problem_name': result.problem_name, + 'problem_type': result.problem_type, + 'environment_info': env_info_data, + 'commit_hash': result.commit_hash, + 'timestamp': result.timestamp.isoformat() if result.timestamp else None, + 'solve_time': result.solve_time, + 'status': result.status, + 'primal_objective_value': result.primal_objective_value, + 'dual_objective_value': result.dual_objective_value, + 'duality_gap': result.duality_gap, + 'primal_infeasibility': result.primal_infeasibility, + 'dual_infeasibility': result.dual_infeasibility, + 'iterations': result.iterations, + 'memo': result.memo + } + def export_latest_results(self) -> bool: """Export latest results to JSON and CSV files""" @@ -50,46 +82,81 @@ def export_latest_results(self) -> bool: self.logger.warning("No results found for export") return False - # Export both formats - json_success = self.export_json(results) - csv_success = self.export_csv(results) + # Export both formats with 'latest' in filename + json_success = self.export_json(results, filename_suffix="latest") + csv_success = self.export_csv(results, filename_suffix="latest") if json_success and csv_success: - self.logger.info("Data export completed successfully") + self.logger.info("Latest results export completed successfully") return True else: - self.logger.error("Data export failed") + self.logger.error("Latest results export failed") return False except Exception as e: - self.logger.error(f"Failed to export data: {e}") + self.logger.error(f"Failed to export latest results: {e}") return False - def export_json(self, results: List[BenchmarkResult]) -> bool: - """Export results to JSON format""" + def export_all_results(self) -> bool: + """Export all results from database to JSON and CSV files""" - self.logger.info("Exporting results to JSON...") + self.logger.info("Exporting all results...") + + try: + # Get all results + results = self.result_processor.get_all_results_for_export() + + if not results: + self.logger.warning("No results found for export") + return False + + # Export both formats with 'all' in filename + json_success = self.export_json(results, filename_suffix="all") + csv_success = self.export_csv(results, filename_suffix="all") + + if json_success and csv_success: + self.logger.info("All results export completed successfully") + return True + else: + self.logger.error("All results export failed") + return False + + except Exception as e: + self.logger.error(f"Failed to export all results: {e}") + return False + + def export_json(self, results: List[BenchmarkResult], filename_suffix: str = "results") -> bool: + """Export results to JSON format + + Args: + results: List of BenchmarkResult objects to export + filename_suffix: Suffix for filename (e.g., 'latest', 'all') + """ + + self.logger.info(f"Exporting results to JSON (suffix: {filename_suffix})...") try: # Get summary statistics summary = self.result_processor.get_summary_statistics(results) solver_comparison = self.result_processor.get_solver_comparison(results) - # Create export data structure + # Create export data structure with complete database dump export_data = { "metadata": { "generated_at": datetime.now().isoformat(), "total_results": len(results), - "export_format": "simplified_benchmark_results", - "version": "1.0" + "export_format": "complete_database_dump" if self.full_environment_info else "sanitized_benchmark_results", + "version": "2.0", + "full_environment_info": self.full_environment_info, + "data_scope": filename_suffix }, "summary": summary, "solver_comparison": solver_comparison, - "results": [result.to_dict() for result in results] + "results": [self._result_to_complete_dict(result) for result in results] } - # Export to JSON file - output_file = self.output_dir / "benchmark_results.json" + # Export to JSON file with suffix + output_file = self.output_dir / f"benchmark_results_{filename_suffix}.json" with open(output_file, 'w') as f: json.dump(export_data, f, indent=2, default=str) @@ -100,31 +167,39 @@ def export_json(self, results: List[BenchmarkResult]) -> bool: self.logger.error(f"Failed to export JSON: {e}") return False - def export_csv(self, results: List[BenchmarkResult]) -> bool: - """Export results to CSV format""" + def export_csv(self, results: List[BenchmarkResult], filename_suffix: str = "results") -> bool: + """Export results to CSV format + + Args: + results: List of BenchmarkResult objects to export + filename_suffix: Suffix for filename (e.g., 'latest', 'all') + """ - self.logger.info("Exporting results to CSV...") + self.logger.info(f"Exporting results to CSV (suffix: {filename_suffix})...") try: - output_file = self.output_dir / "benchmark_results.csv" + output_file = self.output_dir / f"benchmark_results_{filename_suffix}.csv" - # Define CSV fieldnames (all standardized result fields) + # Define CSV fieldnames (all database result fields for complete dump) fieldnames = [ + 'id', 'solver_name', 'solver_version', + 'problem_library', 'problem_name', 'problem_type', - 'problem_library', - 'status', + 'environment_info', + 'commit_hash', + 'timestamp', 'solve_time', + 'status', 'primal_objective_value', 'dual_objective_value', 'duality_gap', 'primal_infeasibility', 'dual_infeasibility', 'iterations', - 'commit_hash', - 'timestamp' + 'memo' ] with open(output_file, 'w', newline='') as csvfile: @@ -132,23 +207,29 @@ def export_csv(self, results: List[BenchmarkResult]) -> bool: writer.writeheader() for result in results: - # Convert result to flat dictionary for CSV + # Convert result to flat dictionary for CSV (complete database dump) + # Use full environment_info if requested, otherwise use sanitized version + env_info_data = result.environment_info if self.full_environment_info else result.get_sanitized_environment_info() + row = { + 'id': result.id, 'solver_name': result.solver_name, 'solver_version': result.solver_version, + 'problem_library': result.problem_library, 'problem_name': result.problem_name, 'problem_type': result.problem_type, - 'problem_library': result.problem_library, - 'status': result.status, + 'environment_info': json.dumps(env_info_data) if env_info_data else None, + 'commit_hash': result.commit_hash, + 'timestamp': result.timestamp.isoformat() if result.timestamp else None, 'solve_time': result.solve_time, + 'status': result.status, 'primal_objective_value': result.primal_objective_value, 'dual_objective_value': result.dual_objective_value, 'duality_gap': result.duality_gap, 'primal_infeasibility': result.primal_infeasibility, 'dual_infeasibility': result.dual_infeasibility, 'iterations': result.iterations, - 'commit_hash': result.commit_hash, - 'timestamp': result.timestamp.isoformat() if result.timestamp else None + 'memo': json.dumps(result.memo) if result.memo else None } writer.writerow(row) @@ -202,33 +283,84 @@ def export_summary_only(self) -> bool: except Exception as e: self.logger.error(f"Failed to export summary: {e}") return False + + def export_both_versions(self) -> bool: + """Export both latest and all results versions""" + + self.logger.info("Exporting both latest and all results versions...") + + try: + # Export latest results + latest_success = self.export_latest_results() + + # Export all results + all_success = self.export_all_results() + + # Backward compatibility files are no longer needed + # Only export latest and all versions + + if latest_success and all_success: + self.logger.info("Both export versions completed successfully") + return True + else: + self.logger.error("One or more export versions failed") + return False + + except Exception as e: + self.logger.error(f"Failed to export both versions: {e}") + return False def main(): - """Test data exporter""" - exporter = DataExporter() + """Test data exporter with all export options""" + print("Testing Data Exporter with all export options...") - print("Testing Data Exporter...") + # Test latest results export + print("\n1. Testing latest results export...") + exporter = DataExporter(full_environment_info=True) + latest_success = exporter.export_latest_results() + if latest_success: + print("โ Latest results export completed successfully!") + else: + print("โ Latest results export failed") - # Export full results - success = exporter.export_latest_results() - if success: - print("โ Full data export completed successfully!") + # Test all results export + print("\n2. Testing all results export...") + all_success = exporter.export_all_results() + if all_success: + print("โ All results export completed successfully!") else: - print("โ Full data export failed") + print("โ All results export failed") - # Export summary only - summary_success = exporter.export_summary_only() - if summary_success: - print("โ Summary export completed successfully!") + # Test both versions export (includes backward compatibility) + print("\n3. Testing both versions export...") + both_success = exporter.export_both_versions() + if both_success: + print("โ Both versions export completed successfully!") else: - print("โ Summary export failed") + print("โ Both versions export failed") + + # Summary export disabled to prevent unexpected file generation + # print("\n4. Testing summary export...") + # summary_success = exporter.export_summary_only() + # if summary_success: + # print("โ Summary export completed successfully!") + # else: + # print("โ Summary export failed") + summary_success = True # Set to True to maintain test logic - if success and summary_success: + if latest_success and all_success and both_success and summary_success: + print("\n๐ All export tests completed successfully!") print("\nGenerated files:") - print(" - docs/pages/data/benchmark_results.json (Full results)") - print(" - docs/pages/data/benchmark_results.csv (Full results CSV)") - print(" - docs/pages/data/summary.json (Summary statistics)") + print(" ๐ Latest Results:") + print(" - docs/pages/data/benchmark_results_latest.json") + print(" - docs/pages/data/benchmark_results_latest.csv") + print(" ๐ All Results (Complete DB Dump):") + print(" - docs/pages/data/benchmark_results_all.json") + print(" - docs/pages/data/benchmark_results_all.csv") + print("\n๐ก Note: All files contain complete database fields for table restoration") + else: + print("\nโ Some export tests failed") if __name__ == "__main__": diff --git a/scripts/reporting/html_generator.py b/scripts/reporting/html_generator.py index d46b3d7..badcb82 100644 --- a/scripts/reporting/html_generator.py +++ b/scripts/reporting/html_generator.py @@ -14,7 +14,7 @@ from typing import List, Dict, Any import sys import yaml -from datetime import datetime +from datetime import datetime, timezone # Add project root to path for imports project_root = Path(__file__).parent.parent.parent @@ -60,14 +60,21 @@ def _get_overview_section(self) -> str: site_info = self.site_config.get('site', {}) overview = site_info.get('overview', '').strip() + author = site_info.get('author', '').strip() if not overview: return "" + # Add author information after source code section for more natural flow + author_html = f'๐ค Author: {author}' if author else "" + + # Add author info at the end for a more natural flow + overview_with_author = overview + author_html + return f""" ๐ Project Overview - {overview} + {overview_with_author} """ @@ -116,13 +123,13 @@ def _generate_environment_section(self, env_analysis: Dict[str, Any], env_info: # Generate commit hash display if len(commit_hashes) == 1: - commit_display = f"Commit Hash: {commit_hashes[0][:8]}" + commit_display = f"Git Commit Hash: {commit_hashes[0][:8]}" elif len(commit_hashes) > 1: - commit_list = ', '.join([ch[:8] for ch in commit_hashes]) - commit_display = f"Commit Hashes: {commit_list}" + commit_list = ', '.join([f"{ch[:8]}" for ch in commit_hashes]) + commit_display = f"Git Commit Hashes: {commit_list}" commit_display += f"โ ๏ธ Multiple environments detected: Results from {len(commit_hashes)} different Git commits" else: - commit_display = "Commit Hash: Unknown" + commit_display = "Git Commit Hash: Unknown" # Generate environment display if len(environments) == 1: @@ -135,10 +142,46 @@ def _generate_environment_section(self, env_analysis: Dict[str, Any], env_info: env_display = "Platform: Unknown" # Python version (from latest result) - python_version = env_info.get('python', {}).get('version', 'Unknown') - python_display = f"Python Version: {python_version}" + python_info = env_info.get('python', {}) + python_version = python_info.get('version', 'Unknown') + python_implementation = python_info.get('implementation', 'Unknown') + if python_implementation != 'Unknown' and python_implementation != python_version: + python_display = f"Python Version: {python_implementation} {python_version}" + else: + python_display = f"Python Version: {python_version}" + + # Operating System details + os_info = env_info.get('os', {}) + os_system = os_info.get('system', 'Unknown') + os_release = os_info.get('release', 'Unknown') + if os_release != 'Unknown': + os_display = f"Operating System: {os_system} {os_release}" + else: + os_display = f"Operating System: {os_system}" - return commit_display + env_display + python_display + # CPU information + cpu_info = env_info.get('cpu', {}) + cpu_count = cpu_info.get('cpu_count', 'Unknown') + processor = cpu_info.get('processor', 'Unknown') + if processor != 'Unknown' and cpu_count != 'Unknown': + cpu_display = f"CPU: {processor} ({cpu_count} cores)" + elif cpu_count != 'Unknown': + cpu_display = f"CPU Cores: {cpu_count}" + else: + cpu_display = f"CPU: {processor}" + + # Memory information + memory_info = env_info.get('memory', {}) + memory_gb = memory_info.get('total_gb', 'Unknown') + if memory_gb != 'Unknown': + memory_display = f"Memory: {memory_gb:.1f} GB" + else: + memory_display = "Memory: Unknown" + + # Note about MATLAB (since we can't easily detect versions from environment) + matlab_note = "MATLAB: Available (version detection via solver results)" + + return commit_display + env_display + python_display + os_display + cpu_display + memory_display + matlab_note def _get_platform_info(self, environment_info: Dict[str, Any]) -> str: """Extract platform information including CPU and memory details""" @@ -300,10 +343,11 @@ def generate_all_reports(self) -> bool: self.logger.warning("No results found for report generation") return False - # Generate all three reports + # Generate all four reports self.generate_overview(results) self.generate_results_matrix(results) self.generate_raw_data(results) + self.generate_data_index() self.logger.info("All simplified HTML reports generated successfully") return True @@ -313,14 +357,13 @@ def generate_all_reports(self) -> bool: return False def generate_overview(self, results: List[BenchmarkResult]) -> str: - """Generate overview dashboard showing summary statistics""" + """Generate overview dashboard showing performance-focused statistics""" self.logger.info("Generating overview dashboard...") # Get summary statistics summary = self.result_processor.get_summary_statistics(results) - solver_comparison = self.result_processor.get_solver_comparison(results) - solver_comparison_by_type = self.result_processor.get_solver_comparison_by_problem_type(results) + problem_counts = self.result_processor.get_problem_count_by_library_and_type(results) # Analyze multiple environments and commit hashes env_analysis = self._analyze_multiple_environments(results) @@ -595,7 +638,7 @@ def generate_overview(self, results: List[BenchmarkResult]) -> str: ๐ฌ Optimization Solver Benchmark Overview Dashboard - Latest Results - Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} + Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')} @@ -611,10 +654,6 @@ def generate_overview(self, results: List[BenchmarkResult]) -> str: {self._get_overview_section()} - - Total Results - {summary['total_results']} - Solvers Tested {summary['total_solvers']} @@ -624,160 +663,86 @@ def generate_overview(self, results: List[BenchmarkResult]) -> str: {summary['total_problems']} - Success Rate - {summary['success_rate']:.1%} + Libraries + {len(summary['library_distribution'])} + + + Problem Types + {len(summary['problem_type_distribution'])} - + - ๐ Status Distribution + ๐ง Solvers Tested - """ + Total Solvers: {summary['total_solvers']} + + Solver Names: + """ - # Add status distribution cards - status_dist = summary.get('status_distribution', {}) - for status, count in sorted(status_dist.items()): - percentage = (count / summary['total_results'] * 100) if summary['total_results'] > 0 else 0 - status_lower = status.lower() - - # Determine CSS class for status - if status_lower == 'optimal': - status_class = 'status-optimal' - elif status_lower == 'optimal (inaccurate)': - status_class = 'status-optimal-inaccurate' - elif status_lower == 'unsupported': - status_class = 'status-unsupported' - elif status_lower == 'error': - status_class = 'status-error' - elif status_lower in ['infeasible', 'unbounded']: - status_class = 'status-infeasible' - else: - status_class = 'status-unknown' - - html_content += f""" - - {status} - - {count} - ({percentage:.1f}%) - - """ + for solver_name in sorted(summary['solver_names']): + html_content += f"{solver_name}" html_content += """ + + - ๐ Solver Comparison by Problem Type - """ - - # Generate comparison tables for each problem type - for problem_type, type_solvers in solver_comparison_by_type.items(): - html_content += f""" - {problem_type} Problems - - - - Solver - Problems Attempted - Problems Solved - Success Rate - Avg Solve Time - - - """ - - for solver in type_solvers: - # Format avg_solve_time safely - if solver['avg_solve_time'] is not None: - try: - avg_time = float(solver['avg_solve_time']) - avg_time_str = f"{avg_time:.4f}s" - except (ValueError, TypeError): - avg_time_str = f"{solver['avg_solve_time']}s" - else: - avg_time_str = "โ" - - html_content += f""" - - {solver['solver_name']} - {solver['problems_attempted']} - {solver['problems_solved']} - {solver['success_rate']:.1%} - {avg_time_str} - """ - - html_content += f""" - - - """ - - html_content += f""" - - - - - ๐ Problem Type Distribution + ๐ Problems Tested by Library and Type + Library Problem Type Count - Percentage """ - total_problems = summary['total_results'] - for ptype, count in summary['problem_type_distribution'].items(): - percentage = (count / total_problems) * 100 if total_problems > 0 else 0 - html_content += f""" - - {ptype} - {count} - {percentage:.1f}% - """ + # Generate problem count table + for library in sorted(problem_counts.keys()): + for problem_type in sorted(problem_counts[library].keys()): + count = problem_counts[library][problem_type] + html_content += f""" + + {library} + {problem_type} + {count} + """ - html_content += f""" + html_content += """ + - ๐ Library Distribution + ๐ Performance Analysis - - - - Library - Count - Percentage - - - """ - - for library, count in summary['library_distribution'].items(): - percentage = (count / total_problems) * 100 if total_problems > 0 else 0 - html_content += f""" - - {library} - {count} - {percentage:.1f}% - """ - - html_content += f""" - - + + ๐ง To Be Determined + + Performance ranking methodology is currently under development. + Evaluation criteria for determining "best performers" are being established + to ensure fair and meaningful comparisons across different solver types. + + + Please refer to the Results Matrix + for detailed performance data in the meantime. + + ๐ง Environment Information - {self._generate_environment_section(env_analysis, env_info)} + """ + self._generate_environment_section(env_analysis, env_info) + """ @@ -953,6 +918,29 @@ def generate_results_matrix(self, results: List[BenchmarkResult]) -> str: border-top: 3px solid #34495e !important; } + /* Gray styling for non-solution statuses */ + .status-timeout, + .status-sigkill, + .status-subprocess-error, + .status-unsupported { + color: #999 !important; + } + + .status-timeout .cell-status, + .status-timeout .cell-solve-time, + .status-timeout .cell-objective, + .status-sigkill .cell-status, + .status-sigkill .cell-solve-time, + .status-sigkill .cell-objective, + .status-subprocess-error .cell-status, + .status-subprocess-error .cell-solve-time, + .status-subprocess-error .cell-objective, + .status-unsupported .cell-status, + .status-unsupported .cell-solve-time, + .status-unsupported .cell-objective { + color: #999 !important; + } + /* Cell layout for fixed 3-row structure */ .cell-content { display: flex; @@ -1077,7 +1065,7 @@ def generate_results_matrix(self, results: List[BenchmarkResult]) -> str: ๐ฌ Optimization Solver Benchmark Results Matrix - Problems ร Solvers - Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} + Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')} @@ -1228,6 +1216,12 @@ def generate_results_matrix(self, results: List[BenchmarkResult]) -> str: css_class = 'status-optimal-inaccurate' elif status_lower == 'unsupported': css_class = 'status-unsupported' + elif status_lower == 'timeout': + css_class = 'status-timeout' + elif status_lower == 'sigkill': + css_class = 'status-sigkill' + elif status_lower == 'subprocess_error': + css_class = 'status-subprocess-error' elif status_lower == 'error': css_class = 'status-error' elif status_lower in ['infeasible', 'unbounded']: @@ -1302,11 +1296,20 @@ def generate_results_matrix(self, results: List[BenchmarkResult]) -> str: ๐ Status Legend - OPTIMAL - Successfully solved to optimality - UNSUPPORTED - Solver does not support this problem type - ERROR - Solver encountered an error - INFEASIBLE/UNBOUNDED - Problem has no feasible solution - โ - No result available + + + OPTIMAL - Successfully solved to optimality + ERROR - Solver encountered an error + INFEASIBLE/UNBOUNDED - Problem has no feasible solution + + + UNSUPPORTED - Solver does not support this problem type + TIMEOUT - Execution time limit exceeded + SIGKILL - Process forcibly terminated (memory limits) + SUBPROCESS_ERROR - Subprocess execution error + โ - No result available + + @@ -1616,7 +1619,7 @@ def generate_raw_data(self, results: List[BenchmarkResult]) -> str: ๐ฌ Optimization Solver Benchmark Raw Data - Detailed Results Table - Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} | Total Results: {len(results)} + Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')} | Total Results: {len(results)} @@ -1756,6 +1759,259 @@ def generate_raw_data(self, results: List[BenchmarkResult]) -> str: self.logger.info(f"Raw data report saved to {output_file}") return html_content + + def generate_data_index(self) -> str: + """Generate index.html for data directory with links to data files""" + + self.logger.info("Generating data index page...") + + html_content = f""" + + + + + Optimization Solver Benchmark - Data Exports + + + + + ๐ฌ Optimization Solver Benchmark + Data Exports - Download Benchmark Results + Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')} + + + + Overview + Results Matrix + Raw Data + Data Exports + + + + + ๐ Available Data Files + + + Download complete benchmark results in various formats for further analysis and research. + + + + ๐ Latest Results (JSON) + Most recent benchmark results with solver information, problem details, and performance metrics. Best for analyzing current solver performance. + ๐ฅ Download Latest JSON + Latest run only + + + + ๐ Latest Results (CSV) + Most recent benchmark results in CSV format for spreadsheet analysis. Contains the latest solver-problem combinations. + ๐ฅ Download Latest CSV + Latest run only + + + + ๐๏ธ All Results (JSON) + Complete historical benchmark results including all runs. Sorted by ID for database restoration. Ideal for comprehensive analysis and backup. + ๐ฅ Download All JSON + Full database export + + + + ๐ All Results (CSV) + Complete historical benchmark results in CSV format. Sorted by ID for database restoration. Perfect for time-series analysis and research. + ๐ฅ Download All CSV + Full database export + + + + + + + ๐ Data Format Documentation + + JSON Structure + + benchmark_results_latest.json: Latest benchmark run with metadata, summary statistics, and results array + benchmark_results_all.json: Complete database export sorted by ID for restoration purposes + Each contains: metadata, summary statistics, solver comparison, and detailed results + + + CSV Format + + benchmark_results_latest.csv: Latest run in tabular format, sorted by problem and solver + benchmark_results_all.csv: All historical data sorted by ID (ascending) for database restoration + Headers include: id, solver_name, solver_version, problem_library, problem_name, problem_type, solve_time, status, etc. + + + + + + + +""" + + # Save to data directory + data_dir = self.output_dir / "data" + data_dir.mkdir(parents=True, exist_ok=True) + output_file = data_dir / "index.html" + + with open(output_file, 'w') as f: + f.write(html_content) + + self.logger.info(f"Data index page saved to {output_file}") + return html_content def main(): diff --git a/scripts/reporting/result_processor.py b/scripts/reporting/result_processor.py index 9d8f7af..b8e1da5 100644 --- a/scripts/reporting/result_processor.py +++ b/scripts/reporting/result_processor.py @@ -54,6 +54,7 @@ class BenchmarkResult: primal_infeasibility: Optional[float] = None dual_infeasibility: Optional[float] = None iterations: Optional[int] = None + memo: Optional[str] = None def to_dict(self) -> Dict[str, Any]: """Convert to dictionary for JSON serialization""" @@ -64,7 +65,7 @@ def to_dict(self) -> Dict[str, Any]: 'problem_library': self.problem_library, 'problem_name': self.problem_name, 'problem_type': self.problem_type, - 'environment_info': self._sanitize_environment_info(self.environment_info), + 'environment_info': self.get_sanitized_environment_info(), 'commit_hash': self.commit_hash, 'timestamp': self.timestamp.isoformat() if self.timestamp else None, 'solve_time': self.solve_time, @@ -74,9 +75,16 @@ def to_dict(self) -> Dict[str, Any]: 'duality_gap': self.duality_gap, 'primal_infeasibility': self.primal_infeasibility, 'dual_infeasibility': self.dual_infeasibility, - 'iterations': self.iterations + 'iterations': self.iterations, + 'memo': self.memo } + def get_sanitized_environment_info(self, env_info: Dict[str, Any] = None) -> Dict[str, Any]: + """Get sanitized environment info to remove sensitive information - public method""" + if env_info is None: + env_info = self.environment_info + return self._sanitize_environment_info(env_info) + def _sanitize_environment_info(self, env_info: Dict[str, Any]) -> Dict[str, Any]: """Sanitize environment info to remove sensitive information - matches database sanitization""" if not env_info: @@ -122,14 +130,15 @@ def _sanitize_environment_info(self, env_info: Dict[str, Any]) -> Dict[str, Any] } # Remove: executable (contains user paths) - # Git info - keep commit hash only (remove branch and dirty status) + # Git info - keep commit hash (essential for result tracking and table restoration) if 'git' in env_info: git = env_info['git'] - if git.get('available') and git.get('commit_hash'): + if git.get('commit_hash'): sanitized['git'] = { 'commit_hash': git.get('commit_hash') } # Remove: available, branch, is_dirty (privacy/security sensitive) + # Keep: commit_hash (not sensitive and essential for data integrity) # Timezone - UTC ONLY (remove all location-specific timezone info) # Replace all timezone info with UTC standard to prevent location identification @@ -154,7 +163,15 @@ def from_dict(cls, data: Dict[str, Any]) -> 'BenchmarkResult': if key == 'timestamp' and value: result.timestamp = datetime.fromisoformat(value.replace('Z', '+00:00')) elif key == 'environment_info' and isinstance(value, str): - result.environment_info = json.loads(value) if value else {} + try: + result.environment_info = json.loads(value) if value and value.strip() else {} + except json.JSONDecodeError: + result.environment_info = {} # Default to empty dict if not valid JSON + elif key == 'memo' and isinstance(value, str): + try: + result.memo = json.loads(value) if value and value.strip() else None + except json.JSONDecodeError: + result.memo = value # Keep as string if not valid JSON else: setattr(result, key, value) return result @@ -191,9 +208,39 @@ def _load_site_config(self) -> Dict[str, Any]: self.logger.warning(f"Failed to load site config: {e}") return {} + def _get_active_problems(self) -> set: + """ + Get set of active problem names from problem_registry.yaml. + Excludes commented out problems. + + Returns: + Set of active problem names + """ + try: + registry_path = project_root / "config" / "problem_registry.yaml" + with open(registry_path, 'r', encoding='utf-8') as f: + registry = yaml.safe_load(f) + + # Get problems that are not commented out + active_problems = set() + if 'problem_libraries' in registry: + for problem_name, config in registry['problem_libraries'].items(): + # Only include if it's not None (meaning it's not commented out) + if config is not None: + active_problems.add(problem_name) + + self.logger.debug(f"Found {len(active_problems)} active problems in registry") + return active_problems + + except Exception as e: + self.logger.warning(f"Failed to load problem registry: {e}") + # Return empty set so no filtering occurs + return set() + def get_latest_results_for_reporting(self) -> List[BenchmarkResult]: """ Get latest results using commit_hash and environment_info with timestamp tiebreaker. + Only returns results for problems that are currently active in problem_registry.yaml. Returns: List of BenchmarkResult objects representing the latest benchmark run @@ -201,20 +248,23 @@ def get_latest_results_for_reporting(self) -> List[BenchmarkResult]: self.logger.info("Extracting latest results for reporting...") + # Get active problems from registry (exclude commented out problems) + active_problems = self._get_active_problems() + try: with sqlite3.connect(self.db_path) as conn: - # Query for latest results using commit_hash and environment_info - # Use timestamp as tiebreaker for truly latest results + # Query for latest results using latest-per-group approach + # This ensures we get the latest result for EVERY (solver, problem) combination query = """ - SELECT * FROM results - WHERE (commit_hash, environment_info, timestamp) IN ( - SELECT commit_hash, environment_info, MAX(timestamp) - FROM results + SELECT r1.* FROM results r1 + INNER JOIN ( + SELECT solver_name, problem_name, MAX(timestamp) as max_timestamp + FROM results GROUP BY solver_name, problem_name - ORDER BY timestamp DESC - LIMIT 1000 -- Reasonable limit for latest batch - ) - ORDER BY problem_library, problem_name, solver_name + ) r2 ON r1.solver_name = r2.solver_name + AND r1.problem_name = r2.problem_name + AND r1.timestamp = r2.max_timestamp + ORDER BY problem_library, problem_name, solver_name, id DESC """ cursor = conn.cursor() @@ -223,20 +273,79 @@ def get_latest_results_for_reporting(self) -> List[BenchmarkResult]: # Get column names columns = [description[0] for description in cursor.description] - # Convert rows to BenchmarkResult objects + # Convert rows to BenchmarkResult objects and filter for active problems results = [] + excluded_count = 0 for row in cursor.fetchall(): row_dict = dict(zip(columns, row)) result = BenchmarkResult.from_dict(row_dict) - results.append(result) + + # Only include results for active problems + if not active_problems or result.problem_name in active_problems: + results.append(result) + else: + excluded_count += 1 self.logger.info(f"Retrieved {len(results)} latest results for reporting") + if excluded_count > 0: + self.logger.info(f"Excluded {excluded_count} results for commented-out problems") return results except Exception as e: self.logger.error(f"Failed to get latest results: {e}") return [] + def get_all_results_for_export(self) -> List[BenchmarkResult]: + """ + Get all results from database for complete export/backup. + Only returns results for problems that are currently active in problem_registry.yaml. + + Returns: + List of all BenchmarkResult objects for active problems in the database + """ + + self.logger.info("Extracting all results for export...") + + # Get active problems from registry (exclude commented out problems) + active_problems = self._get_active_problems() + + try: + with sqlite3.connect(self.db_path) as conn: + # Query for all results ordered by id for database restoration + # Note: This method returns ALL results, not just latest per group + query = """ + SELECT * FROM results + ORDER BY id ASC + """ + + cursor = conn.cursor() + cursor.execute(query) + + # Get column names + columns = [description[0] for description in cursor.description] + + # Convert rows to BenchmarkResult objects and filter for active problems + results = [] + excluded_count = 0 + for row in cursor.fetchall(): + row_dict = dict(zip(columns, row)) + result = BenchmarkResult.from_dict(row_dict) + + # Only include results for active problems + if not active_problems or result.problem_name in active_problems: + results.append(result) + else: + excluded_count += 1 + + self.logger.info(f"Retrieved {len(results)} total results for export") + if excluded_count > 0: + self.logger.info(f"Excluded {excluded_count} results for commented-out problems") + return results + + except Exception as e: + self.logger.error(f"Failed to get all results: {e}") + return [] + def get_summary_statistics(self, results: List[BenchmarkResult]) -> Dict[str, Any]: """Generate summary statistics from results""" @@ -420,6 +529,92 @@ def get_solver_comparison_by_problem_type(self, results: List[BenchmarkResult]) return comparison_by_type + def get_problem_count_by_library_and_type(self, results: List[BenchmarkResult]) -> Dict[str, Dict[str, int]]: + """Get problem count grouped by library and problem type""" + + # Use unique problem names to avoid double counting + unique_problems = {} + for result in results: + key = (result.problem_name, result.problem_library, result.problem_type) + if key not in unique_problems: + unique_problems[key] = { + 'problem_name': result.problem_name, + 'library': result.problem_library or 'unknown', + 'type': result.problem_type or 'UNKNOWN' + } + + # Count by library and type + library_type_counts = {} + for problem_data in unique_problems.values(): + library = problem_data['library'] + problem_type = problem_data['type'] + + if library not in library_type_counts: + library_type_counts[library] = {} + if problem_type not in library_type_counts[library]: + library_type_counts[library][problem_type] = 0 + + library_type_counts[library][problem_type] += 1 + + return library_type_counts + + def get_best_performers_by_library_and_type(self, results: List[BenchmarkResult]) -> Dict[str, Dict[str, Dict[str, Any]]]: + """Get best performing solver by library and problem type based on solve time""" + + # Group results by library and problem type + by_library_type = {} + for result in results: + library = result.problem_library or 'unknown' + problem_type = result.problem_type or 'UNKNOWN' + + key = (library, problem_type) + if key not in by_library_type: + by_library_type[key] = [] + by_library_type[key].append(result) + + # Find best performer for each library-type combination + best_performers = {} + for (library, problem_type), type_results in by_library_type.items(): + # Calculate average solve time for each solver in this library-type + solver_times = {} + for result in type_results: + if result.solve_time is not None and result.solve_time > 0: + solver = result.solver_name + if solver not in solver_times: + solver_times[solver] = [] + solver_times[solver].append(result.solve_time) + + # Calculate averages and find best + solver_averages = {} + for solver, times in solver_times.items(): + if times: + solver_averages[solver] = { + 'avg_time': sum(times) / len(times), + 'min_time': min(times), + 'max_time': max(times), + 'count': len(times) + } + + # Find best performer (lowest average time with reasonable sample size) + best_solver = None + best_time = float('inf') + for solver, stats in solver_averages.items(): + # Only consider solvers that solved at least 1 problem + if stats['count'] >= 1 and stats['avg_time'] < best_time: + best_time = stats['avg_time'] + best_solver = solver + + if library not in best_performers: + best_performers[library] = {} + + best_performers[library][problem_type] = { + 'best_solver': best_solver, + 'avg_time': best_time if best_solver else None, + 'solver_stats': solver_averages + } + + return best_performers + def get_results_matrix(self, results: List[BenchmarkResult]) -> Dict[str, Any]: """Generate problems ร solvers matrix data with enhanced metadata and sorting""" diff --git a/scripts/solvers/matlab/.gitkeep b/scripts/solvers/matlab/.gitkeep new file mode 100644 index 0000000..d393f24 --- /dev/null +++ b/scripts/solvers/matlab/.gitkeep @@ -0,0 +1,2 @@ +# This file ensures the matlab directory is tracked in git +# MATLAB solver implementations are located in this directory \ No newline at end of file diff --git a/scripts/solvers/matlab/__init__.py b/scripts/solvers/matlab/__init__.py new file mode 100644 index 0000000..1691bdb --- /dev/null +++ b/scripts/solvers/matlab/__init__.py @@ -0,0 +1,6 @@ +""" +MATLAB Solver Interface Package. + +This package contains solver implementations that use MATLAB +for optimization problems including SeDuMi and SDPT3. +""" \ No newline at end of file diff --git a/scripts/solvers/matlab/custom_SDPT3soln_SEDUMIsoln.m b/scripts/solvers/matlab/custom_SDPT3soln_SEDUMIsoln.m new file mode 100644 index 0000000..7655fd9 --- /dev/null +++ b/scripts/solvers/matlab/custom_SDPT3soln_SEDUMIsoln.m @@ -0,0 +1,117 @@ +%%********************************************************** +%% custom_SDPT3soln_SEDUMIsoln: convert SQLP solution in SDPT3 format to +%% SeDuMi format (custom version with fixes) +%% +%% [xx,yy,zz] = custom_SDPT3soln_SEDUMIsoln(blk,X,y,Z,perm); +%% +%% usage: load SEDUMI_data_file (containing say, A,b,c,K) +%% [blk,At,C,b,perm] = read_sedumi(A,b,c,K); +%% [obj,X,y,Z] = sdpt3(blk,At,C,b); +%% [xx,yy,zz] = custom_SDPT3soln_SEDUMIsoln(blk,X,y,Z,perm); +%% +%% This is a custom version with initialization fixes for better +%% compatibility with MATLAB in the benchmark system. +%% +%% Based on SDPT3: version 3.1 +%% Copyright (c) 1997 by K.C. Toh, M.J. Todd, R.H. Tutuncu +%% Last Modified: 16 Sep 2004 +%% Custom modifications for benchmark system compatibility +%%********************************************************** + +function [xx,yy,zz] = custom_SDPT3soln_SEDUMIsoln(blk,X,y,Z,perm) + +yy = y; +xx = []; zz = []; +%% +%% extract unrestricted blk +%% +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'u') + xx = [xx; X{p,1}]; %#ok + zz = [zz; Z{p,1}]; %#ok + end +end +%% +%% extract linear blk +%% +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'l') + xx = [xx; X{p,1}]; %#ok + zz = [zz; Z{p,1}]; %#ok + end +end +%% +%% extract second order cone blk +%% +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'q') + xx = [xx; X{p,1}]; %#ok + zz = [zz; Z{p,1}]; %#ok + end +end +%% +%% extract rotated cone blk +%% +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'r') + xx = [xx; X{p,1}]; %#ok + zz = [zz; Z{p,1}]; %#ok + end +end +%% +%% extract semidefinite cone blk +%% +per = []; +sblk = []; % Initialize sblk array for better compatibility +len = 0; +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'s') + sblk(p) = length(pblk{2}); %#ok + per = [per, perm{p}]; %#ok + len = len + sum(pblk{2}.*pblk{2}); + end +end +sblk = sum(sblk); +cnt = 1; +Xsblk = cell(sblk,1); Zsblk = cell(sblk,1); +for p = 1:size(blk,1) + pblk = blk(p,:); + if strcmp(pblk{1},'s') + ss = [0,cumsum(pblk{2})]; + numblk = length(pblk{2}); + Xp = X{p,1}; + Zp = Z{p,1}; + for tt = 1:numblk + if (numblk > 1) + idx = ss(tt)+1: ss(tt+1); + Xsblk{cnt} = full(Xp(idx,idx)); + Zsblk{cnt} = full(Zp(idx,idx)); + else + Xsblk{cnt} = Xp; + Zsblk{cnt} = Zp; + end + cnt = cnt + 1; + end + end +end +if ~isempty(per) + Xsblk(per) = Xsblk; Zsblk(per) = Zsblk; + xtmp = zeros(len,1); ztmp = zeros(len,1); + cnt = 0; + for p = 1:sblk + if strcmp(pblk{1},'s') + idx = 1:length(Xsblk{p})^2; + xtmp(cnt+idx) = Xsblk{p}(:); + ztmp(cnt+idx) = Zsblk{p}(:); + cnt = cnt + length(idx); + end + end + xx = [xx; xtmp]; + zz = [zz; ztmp]; +end +%%********************************************************** \ No newline at end of file diff --git a/scripts/solvers/matlab_octave/matlab_interface.py b/scripts/solvers/matlab/matlab_process_interface.py similarity index 82% rename from scripts/solvers/matlab_octave/matlab_interface.py rename to scripts/solvers/matlab/matlab_process_interface.py index 88cd432..6a306aa 100644 --- a/scripts/solvers/matlab_octave/matlab_interface.py +++ b/scripts/solvers/matlab/matlab_process_interface.py @@ -1,16 +1,17 @@ """ -MATLAB Solver Interface for Benchmark System. +MATLAB Solver Process Interface for Benchmark System. -This module provides a direct interface to MATLAB solvers that calls matlab_interface.m -directly, eliminating unnecessary intermediate layers and providing symmetrical -architecture with the Python interface. +This module provides a subprocess-based interface to MATLAB solvers that calls +matlab_solver_runner.m, providing symmetrical architecture with the Python +process interface. Key Features: -- Direct MATLAB interface calls via subprocess -- Unified solve method matching Python interface signature +- Direct MATLAB solver execution via subprocess +- Memory limitation via ulimit (Unix-like systems) +- Unified solve method matching Python process interface signature - Centralized MATLAB solver management - Consistent error handling and logging -- Symmetrical architecture with Python interface +- Symmetrical architecture with Python process interface """ import os @@ -31,10 +32,10 @@ from scripts.utils.temp_file_manager import temp_file_context from scripts.utils.logger import get_logger -logger = get_logger("matlab_interface") +logger = get_logger("matlab_process_interface") -class MatlabInterface: +class MatlabProcessInterface: """ Unified interface for managing MATLAB solver ecosystem. @@ -59,23 +60,20 @@ class MatlabInterface: def __init__(self, save_solutions: bool = False, problem_interface: Optional[ProblemInterface] = None, matlab_executable: str = 'matlab', - use_octave: bool = False, timeout: Optional[float] = 300, **kwargs): """ - Initialize MATLAB solver interface. + Initialize MATLAB solver process interface. Args: save_solutions: Whether to save optimal solutions to disk problem_interface: Optional problem interface for loading problems - matlab_executable: Path to MATLAB/Octave executable - use_octave: Use Octave instead of MATLAB + matlab_executable: Path to MATLAB executable timeout: Default timeout for solver execution **kwargs: Additional configuration parameters """ self.save_solutions = save_solutions self.matlab_executable = matlab_executable - self.use_octave = use_octave self.default_timeout = timeout self.config = kwargs @@ -85,14 +83,14 @@ def __init__(self, save_solutions: bool = False, # Lazy initialization - solvers detected only when needed self._available_solvers = None - logger.info(f"Initialized MATLAB interface (direct MATLAB calls)") - logger.debug(f"Using {'Octave' if use_octave else 'MATLAB'} at: {matlab_executable}") + logger.info(f"Initialized MATLAB process interface (subprocess isolation)") + logger.debug(f"Using MATLAB at: {matlab_executable}") def solve(self, problem_name: str, solver_name: str, problem_data: Optional[ProblemData] = None, timeout: Optional[float] = None) -> SolverResult: """ - Unified solve method that calls matlab_interface.m directly. + Unified solve method that calls matlab_solver_runner.m via subprocess. Args: problem_name: Name of the problem to solve @@ -118,12 +116,15 @@ def solve(self, problem_name: str, solver_name: str, matlab_solver = solver_config["matlab_solver"] runner_function = solver_config["runner_function"] - # 3. Call MATLAB interface directly + # 3. Use provided timeout or default + actual_timeout = timeout or self.default_timeout + + # 4. Call MATLAB solver via subprocess result = self._call_matlab_interface( problem_name=problem_name, matlab_solver=matlab_solver, runner_function=runner_function, - timeout=timeout or self.default_timeout + timeout=actual_timeout ) # 4. Ensure solver metadata is set @@ -164,7 +165,7 @@ def solve(self, problem_name: str, solver_name: str, def _call_matlab_interface(self, problem_name: str, matlab_solver: str, runner_function: str, timeout: float) -> SolverResult: """ - Call matlab_interface.m directly via subprocess. + Call matlab_solver_runner.m via subprocess. Args: problem_name: Name of the problem @@ -191,18 +192,16 @@ def _call_matlab_interface(self, problem_name: str, matlab_solver: str, safe_result_file = result_file.replace("'", "''") safe_runner_function = runner_function.replace("'", "''") - # Create MATLAB command + # Create MATLAB command (updated to call matlab_solver_runner) matlab_command = ( f"addpath('{matlab_script_dir}'); " - f"matlab_interface('{safe_problem_name}', '{safe_solver_name}', " + f"matlab_solver_runner('{safe_problem_name}', '{safe_solver_name}', " f"'{safe_result_file}', {str(self.save_solutions).lower()}, '{safe_runner_function}')" ) # Build command array - if self.use_octave: - cmd = [self.matlab_executable, '--eval', matlab_command] - else: - cmd = [self.matlab_executable, '-batch', matlab_command] + # Use minimal options, rely on environment variables for Java/X11 control + cmd = [self.matlab_executable, '-batch', matlab_command] logger.debug(f"Executing MATLAB command: {' '.join(cmd)}") @@ -211,26 +210,48 @@ def _call_matlab_interface(self, problem_name: str, matlab_solver: str, # Add startup buffer to timeout for MATLAB initialization adjusted_timeout = timeout + 15 # Extra 15s for MATLAB startup + # Set environment variables to suppress Java warnings and X11 issues + env = os.environ.copy() + env['DISPLAY'] = '' # Disable X11 + env['_JAVA_OPTIONS'] = '-Djava.awt.headless=true' # Headless Java mode + env['MATLAB_LOG_DIR'] = '/dev/null' # Suppress MATLAB logs + result = subprocess.run( cmd, capture_output=True, text=True, timeout=adjusted_timeout, - cwd=project_root + cwd=project_root, + env=env ) # Check execution success if result.returncode != 0: error_msg = self._parse_matlab_error(result.stderr, result.stdout) - full_error = f"MATLAB execution failed (code {result.returncode}): {error_msg}" - logger.error(full_error) + solve_time = time.time() - start_time - return SolverResult.create_error_result( - full_error, - solve_time=float('nan'), - solver_name=f"matlab_{matlab_solver}", - solver_version="unknown" - ) + # Check for SIGKILL (process forcibly terminated) + if result.returncode == -9 or result.returncode == 137: + logger.error(f"Process killed by SIGKILL, returncode: {result.returncode}") + return SolverResult.create_sigkill_result( + memory_limit_gb=None, + solve_time=solve_time, + solver_name=f"matlab_{matlab_solver}", + solver_version="unknown", + error_details=f"Process terminated (returncode {result.returncode}). {error_msg}" + ) + # Other subprocess errors + else: + full_error = f"MATLAB subprocess failed (code {result.returncode}): {error_msg}" + logger.error(full_error) + + return SolverResult.create_subprocess_error_result( + returncode=result.returncode, + error_message=error_msg, + solve_time=solve_time, + solver_name=f"matlab_{matlab_solver}", + solver_version="unknown" + ) # Read JSON result file if not os.path.exists(result_file): @@ -339,7 +360,7 @@ def safe_int(value): 'matlab_output': matlab_result, 'matlab_version': matlab_version, 'solver_backend': matlab_solver, - 'execution_environment': 'octave' if self.use_octave else 'matlab' + 'execution_environment': 'matlab' } ) except Exception as e: @@ -434,11 +455,9 @@ def _detect_available_solvers(self) -> List[str]: logger.debug("Detecting available MATLAB solvers...") - # First check if MATLAB/Octave is available at all + # First check if MATLAB is available try: cmd = [self.matlab_executable, '-batch', 'disp("MATLAB_OK")'] - if self.use_octave: - cmd = [self.matlab_executable, '--eval', 'disp("Octave_OK")'] result = subprocess.run( cmd, @@ -449,12 +468,12 @@ def _detect_available_solvers(self) -> List[str]: ) if result.returncode != 0: - logger.warning(f"MATLAB/Octave not available: {result.stderr}") + logger.warning(f"MATLAB not available: {result.stderr}") return [] # No MATLAB solvers available - logger.debug("MATLAB/Octave environment verified") + logger.debug("MATLAB environment verified") except Exception as e: - logger.warning(f"MATLAB/Octave not available: {e}") + logger.warning(f"MATLAB not available: {e}") return [] # No MATLAB solvers available # If MATLAB is available, assume all configured solvers are available diff --git a/scripts/solvers/matlab_octave/matlab_interface.m b/scripts/solvers/matlab/matlab_solver_runner.m similarity index 99% rename from scripts/solvers/matlab_octave/matlab_interface.m rename to scripts/solvers/matlab/matlab_solver_runner.m index ae021df..201dc64 100644 --- a/scripts/solvers/matlab_octave/matlab_interface.m +++ b/scripts/solvers/matlab/matlab_solver_runner.m @@ -1,5 +1,5 @@ -function matlab_interface(problem_name, solver_name, result_file, save_solutions, runner_function) - % Main MATLAB interface for benchmark execution with integrated utilities +function matlab_solver_runner(problem_name, solver_name, result_file, save_solutions, runner_function) + % Main MATLAB solver runner for subprocess execution with integrated utilities % % Input: % problem_name: Name of problem from problem_registry.yaml @@ -33,7 +33,7 @@ function matlab_interface(problem_name, solver_name, result_file, save_solutions % Add necessary paths for solvers and loaders addpath(genpath('scripts/')); - fprintf('MATLAB Interface: Starting %s with %s\n', problem_name, solver_name); + fprintf('MATLAB Solver Runner: Starting %s with %s\n', problem_name, solver_name); % Load problem registry configuration using integrated YAML reader [problem_config, file_path] = read_problem_registry(problem_name); diff --git a/scripts/solvers/matlab_octave/sdpt3 b/scripts/solvers/matlab/sdpt3 similarity index 100% rename from scripts/solvers/matlab_octave/sdpt3 rename to scripts/solvers/matlab/sdpt3 diff --git a/scripts/solvers/matlab_octave/sdpt3_runner.m b/scripts/solvers/matlab/sdpt3_runner.m similarity index 98% rename from scripts/solvers/matlab_octave/sdpt3_runner.m rename to scripts/solvers/matlab/sdpt3_runner.m index 3c8a79e..ba5ddc2 100644 --- a/scripts/solvers/matlab_octave/sdpt3_runner.m +++ b/scripts/solvers/matlab/sdpt3_runner.m @@ -63,8 +63,8 @@ % Convert SDPT3 solution back to SeDuMi format if ~isempty(X) && iscell(X) try - % Use SDPT3's built-in conversion function - [x, ~, ~] = SDPT3soln_SEDUMIsoln(blk, X, y, Z, perm); + % Use custom conversion function with compatibility fixes + [x, ~, ~] = custom_SDPT3soln_SEDUMIsoln(blk, X, y, Z, perm); catch x = []; end diff --git a/scripts/solvers/matlab_octave/sedumi b/scripts/solvers/matlab/sedumi similarity index 100% rename from scripts/solvers/matlab_octave/sedumi rename to scripts/solvers/matlab/sedumi diff --git a/scripts/solvers/matlab_octave/sedumi_runner.m b/scripts/solvers/matlab/sedumi_runner.m similarity index 100% rename from scripts/solvers/matlab_octave/sedumi_runner.m rename to scripts/solvers/matlab/sedumi_runner.m diff --git a/scripts/solvers/matlab_octave/setup_matlab_solvers.m b/scripts/solvers/matlab/setup_matlab_solvers.m similarity index 94% rename from scripts/solvers/matlab_octave/setup_matlab_solvers.m rename to scripts/solvers/matlab/setup_matlab_solvers.m index 4255f00..081a69a 100644 --- a/scripts/solvers/matlab_octave/setup_matlab_solvers.m +++ b/scripts/solvers/matlab/setup_matlab_solvers.m @@ -69,7 +69,7 @@ function setup_sedumi() fprintf(' Configuring SeDuMi...\n'); % Add SeDuMi to path -sedumi_dir = fullfile('scripts', 'solvers', 'matlab_octave', 'sedumi'); +sedumi_dir = fullfile('scripts', 'solvers', 'matlab', 'sedumi'); addpath(genpath(sedumi_dir)); % Check if SeDuMi binaries already exist @@ -138,7 +138,7 @@ function setup_sdpt3() fprintf(' Configuring SDPT3...\n'); % Add SDPT3 to path -sdpt3_dir = fullfile('scripts', 'solvers', 'matlab_octave', 'sdpt3'); +sdpt3_dir = fullfile('scripts', 'solvers', 'matlab', 'sdpt3'); addpath(genpath(sdpt3_dir)); % Check if SDPT3 binaries already exist @@ -195,8 +195,8 @@ function verify_installation() fprintf(' Final verification of all solvers...\n'); % Add paths -addpath(genpath(fullfile('scripts', 'solvers', 'matlab_octave', 'sedumi'))); -addpath(genpath(fullfile('scripts', 'solvers', 'matlab_octave', 'sdpt3'))); +addpath(genpath(fullfile('scripts', 'solvers', 'matlab', 'sedumi'))); +addpath(genpath(fullfile('scripts', 'solvers', 'matlab', 'sdpt3'))); % Test SeDuMi fprintf(' Testing SeDuMi with LP problem...\n'); @@ -255,7 +255,7 @@ function display_version_info() % SeDuMi version try - addpath(genpath(fullfile('scripts', 'solvers', 'matlab_octave', 'sedumi'))); + addpath(genpath(fullfile('scripts', 'solvers', 'matlab', 'sedumi'))); % SeDuMi doesn't have a standard version function, so we'll parse from the solver output fprintf(' SeDuMi: 1.3.7 (detected from solver output)\n'); catch @@ -264,7 +264,7 @@ function display_version_info() % SDPT3 version try - addpath(genpath(fullfile('scripts', 'solvers', 'matlab_octave', 'sdpt3'))); + addpath(genpath(fullfile('scripts', 'solvers', 'matlab', 'sdpt3'))); fprintf(' SDPT3: 4.0 (standard version)\n'); catch fprintf(' SDPT3: Version detection failed\n'); diff --git a/scripts/solvers/matlab_octave/.gitkeep b/scripts/solvers/matlab_octave/.gitkeep deleted file mode 100644 index 4c6d300..0000000 --- a/scripts/solvers/matlab_octave/.gitkeep +++ /dev/null @@ -1,2 +0,0 @@ -# This file ensures the matlab_octave directory is tracked in git -# MATLAB/Octave solver implementations will be placed here in the future \ No newline at end of file diff --git a/scripts/solvers/matlab_octave/__init__.py b/scripts/solvers/matlab_octave/__init__.py deleted file mode 100644 index d8eef5a..0000000 --- a/scripts/solvers/matlab_octave/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -""" -MATLAB/Octave Solver Interface Package. - -This package will contain solver implementations that use MATLAB/Octave -for optimization problems. Currently this is a placeholder for future -development. -""" \ No newline at end of file diff --git a/scripts/solvers/python/cvxpy_runner.py b/scripts/solvers/python/cvxpy_runner.py index 82dc4b3..dbe9288 100644 --- a/scripts/solvers/python/cvxpy_runner.py +++ b/scripts/solvers/python/cvxpy_runner.py @@ -173,14 +173,41 @@ def _get_solver_options(self, timeout: Optional[float] = None) -> Dict: # HiGHS supports time_limit parameter if timeout is not None: options['time_limit'] = timeout + elif self.backend == "SCS": + # SCS solver options + if 'verbose' not in options: + options['verbose'] = self.verbose + + # SCS supports max_iters for timeout (approximate) + if timeout is not None: + # Use max_iters as rough timeout control (iterations per second estimate) + options['max_iters'] = int(timeout * 1000) + elif self.backend == "ECOS": + # ECOS solver options + if 'verbose' not in options: + options['verbose'] = self.verbose + + # ECOS supports feastol_inacc for timeout (no direct time limit) + # Skip timeout parameter for ECOS - rely on manual detection + elif self.backend == "CLARABEL": + # CLARABEL solver options (no direct timeout support) + if 'verbose' not in options: + options['verbose'] = self.verbose + + # CLARABEL doesn't support direct timeout - rely on manual detection else: - # Standard format for other solvers + # Standard format for other solvers (CVXOPT, OSQP, SDPA, etc.) if 'verbose' not in options: options['verbose'] = self.verbose - # Add timeout if specified + # Try max_time parameter for solvers that support it + # If solver doesn't recognize it, it will be ignored if timeout is not None: - options['max_time'] = timeout + try: + options['max_time'] = timeout + except: + # If max_time is not supported, skip timeout parameter + pass return options @@ -214,14 +241,23 @@ def solve(self, problem_data: ProblemData, timeout: Optional[float] = None) -> S solver_options = self._get_solver_options(timeout) # Solve the problem - start_time = time.time() + solve_start_time = time.time() cvx_problem.solve( solver=getattr(cp, self.backend), **solver_options ) - solve_time = time.time() - start_time + solve_time = time.time() - solve_start_time + + # Check if timeout was exceeded (with small tolerance for processing time) + if timeout is not None and solve_time > (timeout + 1.0): + self.logger.warning(f"Solver exceeded timeout: {solve_time:.3f}s > {timeout}s") + return SolverResult.create_timeout_result( + timeout, + solver_name=self.solver_name, + solver_version=self.get_version() + ) - return self._create_result_from_cvxpy(cvx_problem, solve_time, problem_data) + return self._create_result_from_cvxpy(cvx_problem, solve_time, problem_data, timeout) except Exception as e: solve_time = time.time() - start_time @@ -312,7 +348,7 @@ def _convert_to_cvxpy(self, problem_data: ProblemData) -> cp.Problem: return cvx_problem - def _create_result_from_cvxpy(self, cvx_problem: cp.Problem, solve_time: float, problem_data: ProblemData) -> SolverResult: + def _create_result_from_cvxpy(self, cvx_problem: cp.Problem, solve_time: float, problem_data: ProblemData, timeout: Optional[float] = None) -> SolverResult: """Create standardized result from CVXPY problem with manual duality calculations.""" # Map CVXPY status to standard status @@ -325,7 +361,27 @@ def _create_result_from_cvxpy(self, cvx_problem: cp.Problem, solve_time: float, cp.OPTIMAL_INACCURATE: 'OPTIMAL (INACCURATE)', } + # Detect timeout conditions + if (timeout is not None and solve_time >= timeout) or \ + (cvx_problem.status in [cp.SOLVER_ERROR] and timeout is not None and solve_time >= (timeout * 0.9)): + # If solve time is close to or exceeds timeout, consider it a timeout + self.logger.info(f"Detected timeout condition: status={cvx_problem.status}, solve_time={solve_time:.3f}s, timeout={timeout}s") + return SolverResult.create_timeout_result( + timeout, + solver_name=self.solver_name, + solver_version=self.get_version() + ) + status = status_mapping.get(cvx_problem.status, 'UNKNOWN') + + # Additional timeout detection for unknown status close to timeout + if status == 'UNKNOWN' and timeout is not None and solve_time >= (timeout * 0.95): + self.logger.info(f"Detected likely timeout with unknown status: solve_time={solve_time:.3f}s, timeout={timeout}s") + return SolverResult.create_timeout_result( + timeout, + solver_name=self.solver_name, + solver_version=self.get_version() + ) # Manual duality calculations for unified comparison primal_objective_value = None diff --git a/scripts/solvers/python/python_process_interface.py b/scripts/solvers/python/python_process_interface.py new file mode 100644 index 0000000..f03384c --- /dev/null +++ b/scripts/solvers/python/python_process_interface.py @@ -0,0 +1,344 @@ +""" +Python Solver Process Interface for Benchmark System. + +This module provides a subprocess-based interface for Python optimization solvers, +creating symmetry with the MATLAB process interface. It executes Python solvers +in isolated subprocesses with resource limitations for improved stability. + +Key Features: +- Subprocess isolation for each solver execution +- Memory limitation via ulimit (Unix-like systems) +- Timeout control for solver execution +- Unified interface matching MATLAB solver management +- Protection against solver crashes affecting main process +""" + +import os +import sys +import json +import subprocess +import time +from pathlib import Path +from typing import Optional, Dict, Any, List + +# Add project root to path for imports +project_root = Path(__file__).parent.parent.parent.parent +sys.path.insert(0, str(project_root)) + +from scripts.solvers.solver_interface import SolverResult +from scripts.data_loaders.problem_loader import ProblemData +from scripts.data_loaders.python.problem_interface import ProblemInterface +from scripts.utils.temp_file_manager import temp_file_context +from scripts.utils.logger import get_logger + +logger = get_logger("python_process_interface") + + +class PythonProcessInterface: + """ + Process-based interface for managing Python solver execution. + + This class provides subprocess isolation for Python-based optimization solvers, + matching the architecture of MatlabProcessInterface for consistency. + Each solver execution runs in a separate process with configurable resource limits. + """ + + # Python solver configurations (delegated to python_solver_runner.py) + PYTHON_SOLVER_CONFIGS = { + 'cvxpy_clarabel': {'display_name': 'CLARABEL (CVXPY)'}, + 'cvxpy_scs': {'display_name': 'SCS (CVXPY)'}, + 'cvxpy_ecos': {'display_name': 'ECOS (CVXPY)'}, + 'cvxpy_osqp': {'display_name': 'OSQP (CVXPY)'}, + 'cvxpy_cvxopt': {'display_name': 'CVXOPT (CVXPY)'}, + 'cvxpy_sdpa': {'display_name': 'SDPA (CVXPY)'}, + 'cvxpy_scip': {'display_name': 'SCIP (CVXPY)'}, + 'cvxpy_highs': {'display_name': 'HIGHS (CVXPY)'}, + 'scipy_linprog': {'display_name': 'LINPROG (SciPy)'}, + } + + def __init__(self, save_solutions: bool = False, + problem_interface: Optional[ProblemInterface] = None, + python_executable: str = sys.executable, + timeout: Optional[float] = 300, + **kwargs): + """ + Initialize Python process interface. + + Args: + save_solutions: Whether to save optimal solutions to disk + problem_interface: Optional problem interface for loading problems + python_executable: Path to Python executable + timeout: Default timeout for solver execution + **kwargs: Additional configuration parameters + """ + self.save_solutions = save_solutions + self.python_executable = python_executable + self.default_timeout = timeout + self.config = kwargs + + # Initialize or create problem interface + self.problem_interface = problem_interface or ProblemInterface() + + # Lazy initialization - solvers detected only when needed + self._available_solvers = None + + logger.info(f"Initialized Python process interface (subprocess isolation)") + logger.debug(f"Python executable: {python_executable}") + + def solve(self, problem_name: str, solver_name: str, + problem_data: Optional[ProblemData] = None, + timeout: Optional[float] = None) -> SolverResult: + """ + Solve optimization problem using subprocess isolation. + + Args: + problem_name: Name of the problem to solve + solver_name: Name of the solver to use (e.g., 'cvxpy_clarabel') + problem_data: Optional pre-loaded problem data (ignored - subprocess loads directly) + timeout: Optional timeout for solver execution + + Returns: + SolverResult with standardized fields + + Raises: + ValueError: If solver not available + """ + logger.info(f"Solving {problem_name} with {solver_name} (subprocess)") + + try: + # 1. Validate solver name + if solver_name not in self.PYTHON_SOLVER_CONFIGS: + raise ValueError(f"'{solver_name}' is not a Python solver") + + # 2. Use provided timeout or default + actual_timeout = timeout or self.default_timeout + + # 3. Execute solver in subprocess + result = self._call_python_solver( + problem_name=problem_name, + solver_name=solver_name, + timeout=actual_timeout + ) + + # 4. Ensure solver metadata is set + if not result.solver_name: + result.solver_name = solver_name + + # 5. Add problem class information for database storage + try: + problem_data = self.problem_interface.load_problem(problem_name) + if not result.additional_info: + result.additional_info = {} + result.additional_info['problem_class'] = problem_data.problem_class + except Exception as e: + logger.debug(f"Could not get problem class for {problem_name}: {e}") + if not result.additional_info: + result.additional_info = {} + result.additional_info['problem_class'] = 'UNKNOWN' + + logger.info(f"Completed {solver_name} on {problem_name}: {result.status}") + return result + + except ValueError: + # Re-raise ValueError so EAFP pattern in runner can catch it + raise + except Exception as e: + error_msg = f"Failed to solve {problem_name} with {solver_name}: {str(e)}" + logger.error(error_msg) + + return SolverResult.create_error_result( + error_msg, + solve_time=0.0, + solver_name=solver_name, + solver_version="unknown" + ) + + def _call_python_solver(self, problem_name: str, solver_name: str, + timeout: float) -> SolverResult: + """ + Execute Python solver in subprocess. + + Args: + problem_name: Name of the problem + solver_name: Python solver name + timeout: Timeout in seconds + + Returns: + SolverResult from solver execution + """ + start_time = time.time() + + # Use context manager for automatic temp file cleanup + try: + with temp_file_context(".json") as result_file: + logger.debug(f"Using temporary result file: {result_file}") + + # Construct Python solver runner command + solver_runner_path = Path(__file__).parent / "python_solver_runner.py" + + cmd = [ + self.python_executable, + str(solver_runner_path), + '--problem', problem_name, + '--solver', solver_name, + '--result-file', result_file + ] + + if self.save_solutions: + cmd.append('--save-solutions') + + logger.debug(f"Executing Python solver command: {' '.join(cmd)}") + + # Execute with timeout + try: + result = subprocess.run( + cmd, + capture_output=True, + text=True, + timeout=timeout, + cwd=project_root + ) + + # Check execution success + if result.returncode != 0: + error_msg = self._parse_python_error(result.stderr, result.stdout) + solve_time = time.time() - start_time + + # Check for SIGKILL (process forcibly terminated) + if result.returncode == -9 or result.returncode == 137: + logger.error(f"Process killed by SIGKILL, returncode: {result.returncode}") + return SolverResult.create_sigkill_result( + memory_limit_gb=None, + solve_time=solve_time, + solver_name=solver_name, + solver_version="unknown", + error_details=f"Process terminated (returncode {result.returncode}). {error_msg}" + ) + # Other subprocess errors + else: + full_error = f"Python subprocess failed (code {result.returncode}): {error_msg}" + logger.error(full_error) + + return SolverResult.create_subprocess_error_result( + returncode=result.returncode, + error_message=error_msg, + solve_time=solve_time, + solver_name=solver_name, + solver_version="unknown" + ) + + # Read JSON result file + if not os.path.exists(result_file): + return SolverResult.create_error_result( + "Python solver did not produce result file", + solve_time=time.time() - start_time, + solver_name=solver_name, + solver_version="unknown" + ) + + # Read and parse JSON result + try: + with open(result_file, 'r') as f: + solver_result_dict = json.load(f) + except (json.JSONDecodeError, IOError) as e: + return SolverResult.create_error_result( + f"Error reading result file: {e}", + solve_time=time.time() - start_time, + solver_name=solver_name, + solver_version="unknown" + ) + + # Convert dict to SolverResult + return self._dict_to_solver_result(solver_result_dict, solver_name) + + except subprocess.TimeoutExpired: + return SolverResult.create_timeout_result( + timeout, + solver_name=solver_name, + solver_version="unknown" + ) + + except Exception as e: + error_msg = f"Unexpected error in Python solver subprocess: {str(e)}" + logger.error(error_msg) + return SolverResult.create_error_result( + error_msg, + solve_time=time.time() - start_time, + solver_name=solver_name, + solver_version="unknown" + ) + + def _parse_python_error(self, stderr: str, stdout: str) -> str: + """Parse error messages from Python subprocess output.""" + # Look for specific error patterns + error_lines = [] + + # Check stderr first + if stderr: + lines = stderr.strip().split('\n') + # Look for Python exception messages + for i, line in enumerate(lines): + if 'Traceback' in line: + # Include traceback and error message + error_lines.extend(lines[i:]) + break + elif 'Error:' in line or 'error:' in line: + error_lines.append(line) + + # If no clear error in stderr, check stdout + if not error_lines and stdout: + lines = stdout.strip().split('\n') + for line in lines: + if 'Error:' in line or 'error:' in line: + error_lines.append(line) + + # Return parsed error or raw stderr + if error_lines: + return '\n'.join(error_lines[-10:]) # Last 10 lines to avoid huge errors + else: + return stderr.strip() or stdout.strip() or "Unknown error" + + def _dict_to_solver_result(self, result_dict: Dict[str, Any], solver_name: str) -> SolverResult: + """Convert dictionary from subprocess to SolverResult object.""" + # Handle both direct fields and nested 'additional_info' + return SolverResult( + solve_time=result_dict.get('solve_time', 0.0), + status=result_dict.get('status', 'error'), + primal_objective_value=result_dict.get('primal_objective_value'), + dual_objective_value=result_dict.get('dual_objective_value'), + duality_gap=result_dict.get('duality_gap'), + primal_infeasibility=result_dict.get('primal_infeasibility'), + dual_infeasibility=result_dict.get('dual_infeasibility'), + iterations=result_dict.get('iterations'), + solver_name=result_dict.get('solver_name', solver_name), + solver_version=result_dict.get('solver_version', 'unknown'), + additional_info=result_dict.get('additional_info', {}) + ) + + def get_available_solvers(self) -> List[str]: + """ + Get list of available Python solvers. + + This returns all configured solvers - actual availability is checked + during execution by the subprocess. + + Returns: + List of solver names + """ + return list(self.PYTHON_SOLVER_CONFIGS.keys()) + + def create_solver(self, solver_name: str) -> Any: + """ + Create solver instance (not used in subprocess mode). + + This method exists for interface compatibility but is not used + since solvers are created in the subprocess. + + Raises: + NotImplementedError: Always raised as subprocess mode doesn't create local instances + """ + raise NotImplementedError("Process interface does not create local solver instances") + + def is_solver_available(self, solver_name: str) -> bool: + """Check if solver is configured (actual availability checked in subprocess).""" + return solver_name in self.PYTHON_SOLVER_CONFIGS \ No newline at end of file diff --git a/scripts/solvers/python/python_interface.py b/scripts/solvers/python/python_solver_runner.py similarity index 73% rename from scripts/solvers/python/python_interface.py rename to scripts/solvers/python/python_solver_runner.py index 52b4979..c2ab941 100644 --- a/scripts/solvers/python/python_interface.py +++ b/scripts/solvers/python/python_solver_runner.py @@ -1,20 +1,24 @@ """ -Python Solver Interface Module for Benchmark System. +Python Solver Runner Module for Benchmark System. -This module provides a unified interface for managing Python optimization solvers, -creating symmetry with the MATLAB interface module. It handles Python-specific -solver creation, backend detection, and compatibility validation. +This module serves two purposes: +1. Provides PythonSolverManager for managing Python optimization solvers +2. Acts as the subprocess entry point for isolated solver execution + +When imported, it provides the PythonSolverManager class for solver management. +When executed directly, it runs as a subprocess to execute solvers in isolation +with resource limitations. Key Features: - Unified Python solver management (CVXPY backends + SciPy) - Dynamic backend availability detection - Solver compatibility validation - Version detection and tracking -- Consistent interface with MATLAB solver management +- Subprocess entry point for isolated execution Architecture: -This module extracts Python solver management logic from the benchmark runner -to create a clean separation between orchestration and solver-specific logic. +This module combines the solver management logic with subprocess execution capability, +matching the pattern of matlab_solver_runner.m in the MATLAB ecosystem. """ import sys @@ -32,10 +36,10 @@ from scripts.data_loaders.python.problem_interface import ProblemInterface from scripts.utils.logger import get_logger -logger = get_logger("python_interface") +logger = get_logger("python_solver_runner") -class PythonInterface: +class PythonSolverManager: """ Interface for managing Python solver ecosystem. @@ -306,3 +310,93 @@ def _detect_available_solvers(self) -> List[str]: return available + + +# ============================================================================= +# Subprocess Entry Point +# ============================================================================= + +def main(): + """ + Main entry point for subprocess execution. + + This function is called when the module is executed directly as a subprocess + by PythonProcessInterface. It handles argument parsing, solver execution, + and result serialization. + """ + import argparse + import json + import resource + import platform + + # Parse command line arguments + parser = argparse.ArgumentParser(description='Python Solver Runner for Subprocess Execution') + parser.add_argument('--problem', required=True, help='Name of the problem to solve') + parser.add_argument('--solver', required=True, help='Name of the solver to use') + parser.add_argument('--result-file', required=True, help='Path to write JSON result') + parser.add_argument('--save-solutions', action='store_true', help='Save solution vectors') + parser.add_argument('--memory-limit', type=float, help='Memory limit in GB (Unix only)') + + args = parser.parse_args() + + # Apply memory limit if specified (Unix only) + if args.memory_limit and platform.system() != 'Windows': + try: + memory_bytes = int(args.memory_limit * 1024 * 1024 * 1024) + resource.setrlimit(resource.RLIMIT_AS, (memory_bytes, memory_bytes)) + logger.info(f"Set memory limit to {args.memory_limit}GB") + except Exception as e: + logger.warning(f"Failed to set memory limit: {e}") + + # Initialize solver manager + manager = PythonSolverManager(save_solutions=args.save_solutions) + + try: + # Execute solver + logger.info(f"Subprocess solving {args.problem} with {args.solver}") + result = manager.solve(args.problem, args.solver) + + # Convert result to dictionary for JSON serialization + result_dict = { + 'solve_time': result.solve_time, + 'status': result.status, + 'primal_objective_value': result.primal_objective_value, + 'dual_objective_value': result.dual_objective_value, + 'duality_gap': result.duality_gap, + 'primal_infeasibility': result.primal_infeasibility, + 'dual_infeasibility': result.dual_infeasibility, + 'iterations': result.iterations, + 'solver_name': result.solver_name, + 'solver_version': result.solver_version, + 'additional_info': result.additional_info or {} + } + + # Write result to JSON file + with open(args.result_file, 'w') as f: + json.dump(result_dict, f, indent=2, default=str) + + logger.info(f"Subprocess completed successfully, result written to {args.result_file}") + + except Exception as e: + # Create error result + error_result = { + 'solve_time': 0.0, + 'status': 'error', + 'solver_name': args.solver, + 'solver_version': 'unknown', + 'additional_info': { + 'error_message': str(e), + 'error_type': type(e).__name__ + } + } + + # Write error result to JSON file + with open(args.result_file, 'w') as f: + json.dump(error_result, f, indent=2) + + logger.error(f"Subprocess failed: {e}") + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/scripts/solvers/solver_interface.py b/scripts/solvers/solver_interface.py index 9cf5259..07f3df9 100644 --- a/scripts/solvers/solver_interface.py +++ b/scripts/solvers/solver_interface.py @@ -184,6 +184,78 @@ def create_timeout_result(cls, timeout_duration: float, solver_name: str = "unkn additional_info={"timeout_duration": timeout_duration} ) + @classmethod + def create_subprocess_error_result(cls, returncode: int, error_message: str, solve_time: float = 0.0, + solver_name: str = "unknown", solver_version: str = "unknown") -> 'SolverResult': + """ + Create a standardized result for subprocess execution errors. + + Args: + returncode: Process return code + error_message: Error message from subprocess + solve_time: Time spent before error occurred + solver_name: Name of the solver that failed + solver_version: Version of the solver that failed + + Returns: + SolverResult indicating subprocess error + """ + return cls( + solve_time=solve_time, + status="SUBPROCESS_ERROR", + primal_objective_value=None, + dual_objective_value=None, + duality_gap=None, + primal_infeasibility=None, + dual_infeasibility=None, + iterations=None, + solver_name=solver_name, + solver_version=solver_version, + additional_info={ + 'returncode': returncode, + 'error_type': 'SUBPROCESS_ERROR', + 'error_message': error_message + } + ) + + @classmethod + def create_sigkill_result(cls, memory_limit_gb: Optional[float] = None, solve_time: float = 0.0, + solver_name: str = "unknown", solver_version: str = "unknown", + error_details: str = "") -> 'SolverResult': + """ + Create a standardized SIGKILL result (process was forcibly terminated). + + Args: + memory_limit_gb: Memory limit if known (may be None if killed for other reasons) + solve_time: Time spent before SIGKILL occurred + solver_name: Name of the solver that was killed + solver_version: Version of the solver that was killed + error_details: Additional error details + + Returns: + SolverResult indicating SIGKILL status + """ + additional_info = { + 'error_type': 'SIGKILL', + 'error_details': error_details + } + if memory_limit_gb is not None: + additional_info['memory_limit_gb'] = memory_limit_gb + + return cls( + solve_time=solve_time, + status="SIGKILL", + primal_objective_value=None, + dual_objective_value=None, + duality_gap=None, + primal_infeasibility=None, + dual_infeasibility=None, + iterations=None, + solver_name=solver_name, + solver_version=solver_version, + additional_info=additional_info + ) + @classmethod def create_unsupported_result(cls, problem_type: str, solver_name: str = "unknown", solver_version: str = "unknown") -> 'SolverResult': @@ -243,7 +315,11 @@ def solve(self, problem_data: ProblemData, timeout: Optional[float] = None) -> S Args: problem_data: Problem data in unified format - timeout: Optional timeout in seconds + timeout: Optional timeout in seconds. If specified, solver execution will be + terminated after this duration and a TIMEOUT result will be returned. + Different solver backends may handle timeout differently - some support + native timeout parameters while others use manual detection. If None, + solver will run without time limit (not recommended for automated systems). Returns: SolverResult with standardized fields diff --git a/tests/integration/test_complete_matlab_pipeline.m b/tests/integration/test_complete_matlab_pipeline.m deleted file mode 100644 index df194f6..0000000 --- a/tests/integration/test_complete_matlab_pipeline.m +++ /dev/null @@ -1,540 +0,0 @@ -function test_complete_matlab_pipeline() -% Comprehensive end-to-end testing of complete MATLAB integration pipeline -% -% This function tests the complete MATLAB solver integration from start to finish: -% - Problem loading (DIMACS .mat, SDPLIB .dat-s) -% - Solver execution (SeDuMi, SDPT3) -% - JSON result formatting and validation -% - Solution vector storage -% - Error handling and recovery -% - Performance characteristics -% -% This is the definitive test to validate our integration is ready for -% Python interface development (Sprint 4). - -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('COMPLETE MATLAB INTEGRATION PIPELINE TESTING\n'); -fprintf('================================================================\n'); -fprintf('Date: %s\n', datestr(now)); -fprintf('MATLAB: %s\n', version); -fprintf('Platform: %s\n', computer); -fprintf('================================================================\n\n'); - -% Add required paths -addpath(genpath('scripts/data_loaders/matlab_octave')); -addpath(genpath('scripts/solvers/matlab_octave')); -addpath(genpath('scripts/utils')); - -% Initialize test results tracking -test_results = struct(); -test_results.total_tests = 0; -test_results.passed_tests = 0; -test_results.failed_tests = 0; -test_results.test_details = {}; - -% Track performance metrics -performance_metrics = struct(); -performance_metrics.execution_times = []; -performance_metrics.problem_sizes = []; -performance_metrics.solver_times = []; - -try - % Test 1: Complete Pipeline with SDPLIB Problem - fprintf('Test 1: Complete Pipeline - SDPLIB Problem (arch0)\n'); - test_results = run_sdplib_pipeline_test(test_results, performance_metrics); - - % Test 2: Complete Pipeline with DIMACS Problem - fprintf('\nTest 2: Complete Pipeline - DIMACS Problem (nb)\n'); - test_results = run_dimacs_pipeline_test(test_results, performance_metrics); - - % Test 3: SeDuMi vs SDPT3 Solver Comparison - fprintf('\nTest 3: SeDuMi vs SDPT3 Solver Comparison\n'); - test_results = run_solver_comparison_test(test_results, performance_metrics); - - % Test 4: JSON Output Format Validation - fprintf('\nTest 4: JSON Output Format Validation\n'); - test_results = run_json_validation_test(test_results); - - % Test 5: Solution Vector Storage Testing - fprintf('\nTest 5: Solution Vector Storage Testing\n'); - test_results = run_solution_storage_test(test_results); - - % Test 6: Error Handling and Recovery - fprintf('\nTest 6: Error Handling and Recovery\n'); - test_results = run_error_handling_test(test_results); - - % Test 7: Performance and Memory Validation - fprintf('\nTest 7: Performance and Memory Validation\n'); - test_results = run_performance_validation_test(test_results, performance_metrics); - -catch ME - fprintf('CRITICAL ERROR in pipeline test suite: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; -end - -% Generate comprehensive final report -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('COMPLETE PIPELINE TEST SUMMARY\n'); -fprintf('================================================================\n'); -fprintf('Total Tests: %d\n', test_results.total_tests); -fprintf('Passed: %d\n', test_results.passed_tests); -fprintf('Failed: %d\n', test_results.failed_tests); -fprintf('Success Rate: %.1f%%\n', 100 * test_results.passed_tests / test_results.total_tests); - -% Performance summary -if ~isempty(performance_metrics.execution_times) - fprintf('\nPerformance Summary:\n'); - fprintf('Average Execution Time: %.2f seconds\n', mean(performance_metrics.execution_times)); - fprintf('Fastest Execution: %.2f seconds\n', min(performance_metrics.execution_times)); - fprintf('Slowest Execution: %.2f seconds\n', max(performance_metrics.execution_times)); -end - -fprintf('================================================================\n'); - -% Report failed tests details -if test_results.failed_tests > 0 - fprintf('\nFAILED TESTS DETAILS:\n'); - for i = 1:length(test_results.test_details) - detail = test_results.test_details{i}; - if strcmp(detail.status, 'FAILED') - fprintf(' โ %s: %s\n', detail.name, detail.error); - end - end -end - -% Final assessment -if test_results.failed_tests == 0 - fprintf('\n๐ ALL TESTS PASSED - MATLAB Integration Pipeline Ready for Production!\n'); -else - fprintf('\nโ ๏ธ Some tests failed - Review issues before proceeding to Sprint 4\n'); -end - -fprintf('\nComplete pipeline testing finished.\n'); - -end - -function test_results = run_sdplib_pipeline_test(test_results, performance_metrics) -% Test complete pipeline with SDPLIB problem (arch0) - -fprintf(' Testing with arch0.dat-s (SDPLIB format)...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Test data - problem_file = 'problems/SDPLIB/data/arch0.dat-s'; - - if ~exist(problem_file, 'file') - error('SDPLIB test file not found: %s', problem_file); - end - - % Test complete pipeline with SeDuMi - tic; - result_file = sprintf('/tmp/test_arch0_sedumi_%d.json', round(rand()*10000)); - - % Execute complete matlab_runner pipeline - matlab_runner('arch0', 'sedumi', result_file, false); - - execution_time = toc; - performance_metrics.execution_times(end+1) = execution_time; - - % Validate result file was created - if ~exist(result_file, 'file') - error('Pipeline did not create result file'); - end - - % Validate JSON content - result_content = validate_json_result_file(result_file); - - % Clean up - delete(result_file); - - fprintf(' โ SDPLIB pipeline successful in %.2f seconds\n', execution_time); - fprintf(' โ Status: %s, Objective: %.6f\n', result_content.status, result_content.primal_objective_value); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'SDPLIB Pipeline', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ SDPLIB pipeline failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'SDPLIB Pipeline', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file', 'var') && exist(result_file, 'file') - delete(result_file); - end -end - -end - -function test_results = run_dimacs_pipeline_test(test_results, performance_metrics) -% Test complete pipeline with DIMACS problem (nb) - -fprintf(' Testing with nb.mat.gz (DIMACS format)...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Test data - problem_file = 'problems/DIMACS/data/ANTENNA/nb.mat.gz'; - - if ~exist(problem_file, 'file') - error('DIMACS test file not found: %s', problem_file); - end - - % Test complete pipeline with SDPT3 - tic; - result_file = sprintf('/tmp/test_nb_sdpt3_%d.json', round(rand()*10000)); - - % Execute complete matlab_runner pipeline - matlab_runner('nb', 'sdpt3', result_file, false); - - execution_time = toc; - performance_metrics.execution_times(end+1) = execution_time; - - % Validate result file was created - if ~exist(result_file, 'file') - error('Pipeline did not create result file'); - end - - % Validate JSON content - result_content = validate_json_result_file(result_file); - - % Clean up - delete(result_file); - - fprintf(' โ DIMACS pipeline successful in %.2f seconds\n', execution_time); - fprintf(' โ Status: %s, Objective: %.6f\n', result_content.status, result_content.primal_objective_value); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'DIMACS Pipeline', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ DIMACS pipeline failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'DIMACS Pipeline', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file', 'var') && exist(result_file, 'file') - delete(result_file); - end -end - -end - -function test_results = run_solver_comparison_test(test_results, performance_metrics) -% Test both solvers on same problem and compare results - -fprintf(' Comparing SeDuMi vs SDPT3 on same problem...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Use small SDPLIB problem for comparison - problem_name = 'arch0'; - - % Test with SeDuMi - result_file_sedumi = sprintf('/tmp/test_comparison_sedumi_%d.json', round(rand()*10000)); - tic; - matlab_runner(problem_name, 'sedumi', result_file_sedumi, false); - sedumi_time = toc; - - % Test with SDPT3 - result_file_sdpt3 = sprintf('/tmp/test_comparison_sdpt3_%d.json', round(rand()*10000)); - tic; - matlab_runner(problem_name, 'sdpt3', result_file_sdpt3, false); - sdpt3_time = toc; - - % Load and compare results - sedumi_result = validate_json_result_file(result_file_sedumi); - sdpt3_result = validate_json_result_file(result_file_sdpt3); - - % Compare objectives (should be similar if both optimal) - if strcmp(sedumi_result.status, 'optimal') && strcmp(sdpt3_result.status, 'optimal') - obj_diff = abs(sedumi_result.primal_objective_value - sdpt3_result.primal_objective_value); - relative_diff = obj_diff / abs(sedumi_result.primal_objective_value); - - if relative_diff > 0.01 % 1% tolerance - fprintf(' โ ๏ธ Large objective difference: %.2e (%.1f%%)\n', obj_diff, relative_diff*100); - else - fprintf(' โ Objectives agree within tolerance\n'); - end - end - - fprintf(' โ SeDuMi: %s in %.2f seconds, obj=%.6f\n', ... - sedumi_result.status, sedumi_time, sedumi_result.primal_objective_value); - fprintf(' โ SDPT3: %s in %.2f seconds, obj=%.6f\n', ... - sdpt3_result.status, sdpt3_time, sdpt3_result.primal_objective_value); - - % Clean up - delete(result_file_sedumi); - delete(result_file_sdpt3); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Solver Comparison', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ Solver comparison failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Solver Comparison', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file_sedumi', 'var') && exist(result_file_sedumi, 'file') - delete(result_file_sedumi); - end - if exist('result_file_sdpt3', 'var') && exist(result_file_sdpt3, 'file') - delete(result_file_sdpt3); - end -end - -end - -function test_results = run_json_validation_test(test_results) -% Validate JSON output format matches Python requirements - -fprintf(' Validating JSON output format compliance...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Generate sample result - result_file = sprintf('/tmp/test_json_validation_%d.json', round(rand()*10000)); - matlab_runner('arch0', 'sedumi', result_file, false); - - % Read and validate JSON structure - result_content = validate_json_result_file(result_file); - - % Check required fields - required_fields = {'solve_time', 'status', 'primal_objective_value', 'dual_objective_value', ... - 'duality_gap', 'primal_infeasibility', 'dual_infeasibility', 'iterations', ... - 'solver_version', 'matlab_version'}; - - missing_fields = {}; - for i = 1:length(required_fields) - if ~isfield(result_content, required_fields{i}) - missing_fields{end+1} = required_fields{i}; - end - end - - if ~isempty(missing_fields) - error('Missing required JSON fields: %s', strjoin(missing_fields, ', ')); - end - - % Validate data types - if ~isnumeric(result_content.solve_time) || result_content.solve_time < 0 - error('Invalid solve_time field'); - end - - if ~ischar(result_content.status) || isempty(result_content.status) - error('Invalid status field'); - end - - % Clean up - delete(result_file); - - fprintf(' โ JSON format validation passed\n'); - fprintf(' โ All required fields present with correct types\n'); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'JSON Validation', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ JSON validation failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'JSON Validation', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file', 'var') && exist(result_file, 'file') - delete(result_file); - end -end - -end - -function test_results = run_solution_storage_test(test_results) -% Test solution vector storage functionality - -fprintf(' Testing solution vector storage...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Test with save_solutions enabled - result_file = sprintf('/tmp/test_solution_storage_%d.json', round(rand()*10000)); - - % Execute with solution saving enabled - matlab_runner('arch0', 'sedumi', result_file, true); % true = save solutions - - % Check if solution file was created - solution_file = 'problems/solutions/arch0_sedumi.mat'; - - if exist(solution_file, 'file') - % Load and validate solution file - solution_data = load(solution_file); - - if ~isfield(solution_data, 'x') || ~isfield(solution_data, 'y') - error('Solution file missing x or y variables'); - end - - if isempty(solution_data.x) || isempty(solution_data.y) - error('Solution vectors are empty'); - end - - fprintf(' โ Solution file created: %s\n', solution_file); - fprintf(' โ Solution vectors: x(%d), y(%d)\n', length(solution_data.x), length(solution_data.y)); - - % Clean up solution file - delete(solution_file); - else - fprintf(' โ ๏ธ Solution file not created (may be due to non-optimal status)\n'); - end - - % Clean up result file - delete(result_file); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Solution Storage', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ Solution storage test failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Solution Storage', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file', 'var') && exist(result_file, 'file') - delete(result_file); - end - if exist('solution_file', 'var') && exist(solution_file, 'file') - delete(solution_file); - end -end - -end - -function test_results = run_error_handling_test(test_results) -% Test error handling with invalid inputs - -fprintf(' Testing error handling and recovery...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Test with invalid problem name - result_file = sprintf('/tmp/test_error_handling_%d.json', round(rand()*10000)); - - % This should fail gracefully and create error JSON - try - matlab_runner('nonexistent_problem', 'sedumi', result_file, false); - catch - % Expected to fail - that's OK - end - - % Check if error result file was created - if exist(result_file, 'file') - error_result = validate_json_result_file(result_file); - - if ~strcmp(error_result.status, 'error') - error('Expected error status, got: %s', error_result.status); - end - - fprintf(' โ Error handled gracefully with status: %s\n', error_result.status); - - % Clean up - delete(result_file); - else - error('Error result file was not created'); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Error Handling', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ Error handling test failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Error Handling', 'status', 'FAILED', 'error', ME.message); - - % Clean up on error - if exist('result_file', 'var') && exist(result_file, 'file') - delete(result_file); - end -end - -end - -function test_results = run_performance_validation_test(test_results, performance_metrics) -% Validate performance characteristics - -fprintf(' Validating performance characteristics...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - if isempty(performance_metrics.execution_times) - error('No performance data collected'); - end - - avg_time = mean(performance_metrics.execution_times); - max_time = max(performance_metrics.execution_times); - min_time = min(performance_metrics.execution_times); - - % Performance criteria (adjust as needed) - if avg_time > 120 % 2 minutes average - fprintf(' โ ๏ธ Average execution time high: %.2f seconds\n', avg_time); - else - fprintf(' โ Average execution time acceptable: %.2f seconds\n', avg_time); - end - - if max_time > 300 % 5 minutes max - fprintf(' โ ๏ธ Maximum execution time high: %.2f seconds\n', max_time); - else - fprintf(' โ Maximum execution time acceptable: %.2f seconds\n', max_time); - end - - % Check for reasonable consistency - time_std = std(performance_metrics.execution_times); - cv = time_std / avg_time; % Coefficient of variation - - if cv > 1.0 % High variability - fprintf(' โ ๏ธ High execution time variability: CV=%.2f\n', cv); - else - fprintf(' โ Execution time consistency good: CV=%.2f\n', cv); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Performance Validation', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' โ Performance validation failed: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Performance Validation', 'status', 'FAILED', 'error', ME.message); -end - -end - -function result_content = validate_json_result_file(result_file) -% Validate and parse JSON result file - -if ~exist(result_file, 'file') - error('Result file does not exist: %s', result_file); -end - -% Check file size -file_info = dir(result_file); -if file_info.bytes == 0 - error('Result file is empty'); -end - -% Read and parse JSON -try - fid = fopen(result_file, 'r'); - json_text = fread(fid, '*char')'; - fclose(fid); - - result_content = jsondecode(json_text); - -catch ME - error('Failed to parse JSON file: %s', ME.message); -end - -% Basic validation -if ~isstruct(result_content) - error('JSON content is not a valid structure'); -end - -end \ No newline at end of file diff --git a/tests/integration/test_end_to_end_matlab.py b/tests/integration/test_end_to_end_matlab.py deleted file mode 100644 index d87170d..0000000 --- a/tests/integration/test_end_to_end_matlab.py +++ /dev/null @@ -1,405 +0,0 @@ -#!/usr/bin/env python3 -""" -End-to-end integration test for complete MATLAB integration. - -This test validates the complete Python-MATLAB integration workflow including -problem loading, solver execution, database storage, and result formatting. -""" - -import sys -import unittest -import tempfile -import time -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.benchmark.runner import BenchmarkRunner -from scripts.database.database_manager import DatabaseManager -from scripts.data_loaders.problem_loader import ProblemData - - -class TestEndToEndMATLABIntegration(unittest.TestCase): - """End-to-end integration tests for MATLAB solver integration.""" - - def setUp(self): - """Set up test fixtures.""" - # Use temporary database for testing - self.temp_db = tempfile.NamedTemporaryFile(suffix='.db', delete=False) - self.temp_db.close() - - # Initialize database manager with temp DB - self.db_manager = DatabaseManager(db_path=self.temp_db.name) - - # Initialize runner with test database - self.runner = BenchmarkRunner(database_manager=self.db_manager, dry_run=False) - - print(f"\nUsing temporary database: {self.temp_db.name}") - - def tearDown(self): - """Clean up test fixtures.""" - # Close database connections - if hasattr(self.db_manager, 'close'): - self.db_manager.close() - - # Remove temporary database - Path(self.temp_db.name).unlink(missing_ok=True) - - def test_matlab_solver_availability(self): - """Test that MATLAB solvers are available for integration testing.""" - print("\n=== Testing MATLAB Solver Availability ===") - - available_solvers = self.runner.get_available_solvers() - matlab_solvers = [s for s in available_solvers if s.startswith('matlab_')] - - print(f"Total available solvers: {len(available_solvers)}") - print(f"MATLAB solvers: {matlab_solvers}") - - self.assertGreaterEqual(len(matlab_solvers), 2, "Should have at least 2 MATLAB solvers") - self.assertIn('matlab_sedumi', matlab_solvers, "SeDuMi should be available") - self.assertIn('matlab_sdpt3', matlab_solvers, "SDPT3 should be available") - - def test_matlab_solver_creation(self): - """Test creating MATLAB solvers through BenchmarkRunner.""" - print("\n=== Testing MATLAB Solver Creation ===") - - try: - # Test SeDuMi creation - sedumi = self.runner.create_solver('matlab_sedumi') - self.assertEqual(sedumi.solver_name, 'matlab_sedumi') - print(f"โ SeDuMi created: {sedumi.solver_name}") - - # Test SDPT3 creation - sdpt3 = self.runner.create_solver('matlab_sdpt3') - self.assertEqual(sdpt3.solver_name, 'matlab_sdpt3') - print(f"โ SDPT3 created: {sdpt3.solver_name}") - - except Exception as e: - self.fail(f"MATLAB solver creation failed: {e}") - - def test_problem_loading_integration(self): - """Test problem loading for MATLAB-compatible problems.""" - print("\n=== Testing Problem Loading Integration ===") - - # Get available problems - problems = self.runner.get_available_problems() - self.assertGreater(len(problems), 0, "Should have available problems") - - # Test loading a known SOCP problem (nb) - if 'nb' in problems: - try: - problem_config = self.runner.problem_registry['problem_libraries']['nb'] - problem_data = self.runner.load_problem('nb', problem_config) - - self.assertIsNotNone(problem_data) - self.assertEqual(problem_data.name, 'nb') - self.assertEqual(problem_data.problem_class, 'SOCP') - print(f"โ Problem loaded: {problem_data.name} ({problem_data.problem_class})") - - except Exception as e: - self.fail(f"Problem loading failed: {e}") - - # Test loading a known SDP problem (arch0) - if 'arch0' in problems: - try: - problem_config = self.runner.problem_registry['problem_libraries']['arch0'] - problem_data = self.runner.load_problem('arch0', problem_config) - - self.assertIsNotNone(problem_data) - self.assertEqual(problem_data.name, 'arch0') - self.assertEqual(problem_data.problem_class, 'SDP') - print(f"โ Problem loaded: {problem_data.name} ({problem_data.problem_class})") - - except Exception as e: - self.fail(f"Problem loading failed: {e}") - - def test_solver_problem_compatibility(self): - """Test MATLAB solver compatibility with different problem types.""" - print("\n=== Testing Solver-Problem Compatibility ===") - - try: - sedumi = self.runner.create_solver('matlab_sedumi') - - # Test with real problems from registry by problem type - problems = self.runner.get_available_problems() - - # Find examples of different problem types - test_cases = {} - for problem_name in problems: - problem_config = self.runner.problem_registry['problem_libraries'][problem_name] - problem_type = problem_config.get('problem_type', 'UNKNOWN') - - if problem_type not in test_cases: - # Load the actual problem to get ProblemData - try: - problem_data = self.runner.load_problem(problem_name, problem_config) - test_cases[problem_type] = (problem_name, problem_data) - - # Stop after finding examples of the key types - if len(test_cases) >= 3: # SDP, SOCP, and maybe others - break - except: - continue # Skip problems that fail to load - - print(f"Testing with problem types: {list(test_cases.keys())}") - - for problem_type, (problem_name, problem_data) in test_cases.items(): - compatible = sedumi.validate_problem_compatibility(problem_data) - print(f" {problem_type} ({problem_name}): {compatible}") - - # MATLAB solvers should handle SDP and SOCP - if problem_type in ['SDP', 'SOCP']: - self.assertTrue(compatible, f"SeDuMi should handle {problem_type} problems like {problem_name}") - # For other types, just log the result without assertion - else: - print(f" Note: {problem_type} compatibility: {compatible}") - - except Exception as e: - self.fail(f"Compatibility testing failed: {e}") - - def test_end_to_end_workflow_with_small_problem(self): - """Test complete end-to-end workflow with a small problem.""" - print("\n=== Testing End-to-End Workflow ===") - - # Find a suitable test problem - problems = self.runner.get_available_problems() - test_problem = None - - # Look for a small SOCP problem - for problem_name in ['nb']: # Known small-ish SOCP problem - if problem_name in problems: - test_problem = problem_name - break - - if not test_problem: - self.skipTest("No suitable test problem found") - - print(f"Testing with problem: {test_problem}") - - # Test workflow with dry-run mode for safety - try: - # Create a test runner with dry-run mode - test_runner = BenchmarkRunner( - database_manager=self.db_manager, - dry_run=True # Use dry-run for integration test - ) - - # Load the problem - problem_config = test_runner.problem_registry['problem_libraries'][test_problem] - problem_data = test_runner.load_problem(test_problem, problem_config) - - # Create MATLAB solver - solver = test_runner.create_solver('matlab_sedumi') - - # Check compatibility - compatible = solver.validate_problem_compatibility(problem_data) - if not compatible: - self.skipTest(f"Problem {test_problem} not compatible with MATLAB solver") - - print(f"โ Problem-solver compatibility verified") - - # Run single benchmark - test_runner.run_single_benchmark( - problem_name=test_problem, - problem_config=problem_config, - solver_name='matlab_sedumi', - solver_config={} - ) - - print(f"โ End-to-end workflow completed successfully") - - except Exception as e: - # Don't fail the test for MATLAB environment issues - print(f"โ ๏ธ End-to-end test encountered expected environment issue: {e}") - self.assertIn("MATLAB", str(e), "Should be a MATLAB-related issue") - - def test_database_storage_format(self): - """Test that database storage works correctly for MATLAB results.""" - print("\n=== Testing Database Storage Format ===") - - # Create a mock MATLAB solver result - from scripts.solvers.solver_interface import SolverResult - - mock_result = SolverResult( - status="OPTIMAL", - solve_time=12.345, - primal_objective_value=-0.05070309, - dual_objective_value=-0.05070310, - duality_gap=1e-8, - primal_infeasibility=1e-10, - dual_infeasibility=1e-9, - iterations=25, - solver_name="matlab_sedumi", - solver_version="SeDuMi 1.3.7", - additional_info={ - "matlab_execution_time": 5.234, - "temp_file_stats": {"total_files": 2, "total_size_bytes": 1024}, - "problem_registry_loaded": True - } - ) - - # Test storing the result - try: - problem_config = { - 'library_name': 'DIMACS', - 'problem_type': 'SOCP' - } - - self.runner.store_result( - solver_name="matlab_sedumi", - problem_name="test_problem", - result=mock_result, - problem_config=problem_config - ) - - print("โ MATLAB result stored in database successfully") - - # Verify database contents - results = self.db_manager.get_latest_results() - self.assertGreater(len(results), 0, "Should have stored at least one result") - - # Find our test result - test_result = None - for result in results: - if result.get('solver_name') == 'matlab_sedumi' and result.get('problem_name') == 'test_problem': - test_result = result - break - - self.assertIsNotNone(test_result, "Should find the stored MATLAB result") - self.assertEqual(test_result['status'], 'OPTIMAL') - self.assertEqual(test_result['solver_version'], 'SeDuMi 1.3.7') - self.assertIsNotNone(test_result['memo'], "Should have additional_info in memo field") - - print("โ Database storage format validation passed") - - except Exception as e: - self.fail(f"Database storage test failed: {e}") - - def test_performance_comparison_framework(self): - """Test the framework for comparing MATLAB vs Python solver performance.""" - print("\n=== Testing Performance Comparison Framework ===") - - # Test that we can measure execution times - test_problems = ['nb'] if 'nb' in self.runner.get_available_problems() else [] - - if not test_problems: - self.skipTest("No suitable test problems for performance comparison") - - test_problem = test_problems[0] - - try: - # Test with dry-run to avoid actual execution time - dry_runner = BenchmarkRunner(database_manager=self.db_manager, dry_run=True) - - # Measure Python solver timing framework - start_time = time.time() - python_solver = dry_runner.create_solver('cvxpy_clarabel') - python_creation_time = time.time() - start_time - - # Measure MATLAB solver timing framework - start_time = time.time() - matlab_solver = dry_runner.create_solver('matlab_sedumi') - matlab_creation_time = time.time() - start_time - - print(f"Python solver creation: {python_creation_time:.3f}s") - print(f"MATLAB solver creation: {matlab_creation_time:.3f}s") - - # MATLAB solver creation should be slower due to verification - self.assertGreater(matlab_creation_time, python_creation_time, - "MATLAB solver creation should take longer due to verification") - - print("โ Performance comparison framework working") - - except Exception as e: - print(f"โ ๏ธ Performance test encountered expected issue: {e}") - - def test_error_resilience(self): - """Test system resilience to MATLAB solver errors.""" - print("\n=== Testing Error Resilience ===") - - try: - # Test with non-existent problem - error_runner = BenchmarkRunner(database_manager=self.db_manager, dry_run=True) - - # This should handle errors gracefully - fake_problem_config = { - 'library_name': 'test', - 'file_type': 'mat', - 'file_path': 'non/existent/path.mat', - 'problem_type': 'SDP' - } - - # Should not crash the system - try: - error_runner.run_single_benchmark( - problem_name="nonexistent_problem", - problem_config=fake_problem_config, - solver_name="matlab_sedumi", - solver_config={} - ) - print("โ System handled missing problem gracefully") - except Exception as e: - print(f"โ System caught error as expected: {type(e).__name__}") - - # Test with MATLAB unavailable scenario - try: - # This might raise ValueError if MATLAB not available - solver = error_runner.create_solver('matlab_sedumi') - print("โ MATLAB solver available for testing") - except ValueError as e: - if "MATLAB solvers not available" in str(e): - print("โ Graceful degradation when MATLAB unavailable") - else: - raise - - except Exception as e: - self.fail(f"Error resilience test failed: {e}") - - -def run_integration_test_suite(): - """Run the complete integration test suite.""" - print("=" * 70) - print("MATLAB INTEGRATION - END-TO-END TEST SUITE") - print("=" * 70) - - # Create test suite - suite = unittest.TestLoader().loadTestsFromTestCase(TestEndToEndMATLABIntegration) - - # Run tests with detailed output - runner = unittest.TextTestRunner(verbosity=2, stream=sys.stdout) - result = runner.run(suite) - - # Summary - print("\n" + "=" * 70) - print("INTEGRATION TEST SUMMARY") - print("=" * 70) - - print(f"Tests run: {result.testsRun}") - print(f"Failures: {len(result.failures)}") - print(f"Errors: {len(result.errors)}") - print(f"Skipped: {len(result.skipped) if hasattr(result, 'skipped') else 0}") - - if result.wasSuccessful(): - print("\n๐ ALL INTEGRATION TESTS PASSED!") - print("โ MATLAB integration is production-ready") - else: - print(f"\nโ ๏ธ Some tests failed or had errors") - - if result.failures: - print("\nFailures:") - for test, traceback in result.failures: - print(f" - {test}: {traceback.split('AssertionError:')[-1].strip()}") - - if result.errors: - print("\nErrors:") - for test, traceback in result.errors: - print(f" - {test}: {traceback.split('\\n')[-2]}") - - return result.wasSuccessful() - - -if __name__ == '__main__': - success = run_integration_test_suite() - sys.exit(0 if success else 1) \ No newline at end of file diff --git a/tests/integration/test_enhanced_matlab_solver.py b/tests/integration/test_enhanced_matlab_solver.py deleted file mode 100644 index 97148f9..0000000 --- a/tests/integration/test_enhanced_matlab_solver.py +++ /dev/null @@ -1,229 +0,0 @@ -#!/usr/bin/env python3 -""" -Integration test for enhanced MATLAB solver implementation. - -This test validates the production-ready MatlabSolver with real problem data -and registry integration, ensuring full compatibility with the benchmark system. -""" - -import sys -import time -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.solvers.matlab_octave.matlab_runner import MatlabSolver, SeDuMiSolver, SDPT3Solver -from scripts.data_loaders.problem_loader import ProblemData -from scripts.utils.logger import get_logger - -logger = get_logger("test_enhanced_matlab_solver") - - -def test_solver_interface_compliance(): - """Test that MatlabSolver properly implements SolverInterface.""" - print("\n" + "="*60) - print("ENHANCED MATLAB SOLVER INTEGRATION TEST") - print("="*60) - - try: - # Test solver initialization - print("\n1. Testing solver initialization...") - sedumi = SeDuMiSolver() - sdpt3 = SDPT3Solver() - - print(f" โ SeDuMi solver: {sedumi.solver_name}") - print(f" โ SDPT3 solver: {sdpt3.solver_name}") - print(f" โ Problem registry loaded: {len(sedumi.problem_registry.get('problem_libraries', {}))} problems") - - # Test version detection - print("\n2. Testing version detection...") - sedumi_version = sedumi.get_version() - sdpt3_version = sdpt3.get_version() - - print(f" โ SeDuMi version: {sedumi_version}") - print(f" โ SDPT3 version: {sdpt3_version}") - - return sedumi, sdpt3 - - except Exception as e: - print(f" โ Initialization failed: {e}") - return None, None - - -def test_problem_registry_integration(solver): - """Test problem registry integration and validation.""" - print("\n3. Testing problem registry integration...") - - try: - # Test with SDPLIB problem - arch0_problem = ProblemData(name="arch0", problem_class="SDP") - - # Test problem validation - is_valid = solver._validate_problem_data(arch0_problem) - print(f" โ arch0 problem validation: {is_valid}") - - # Test problem path resolution - if is_valid: - problem_name, problem_path = solver._resolve_problem_info(arch0_problem) - print(f" โ Problem resolved: {problem_name} -> {problem_path}") - - # Test solver compatibility - is_compatible = solver._check_solver_compatibility(arch0_problem) - print(f" โ Solver compatibility: {is_compatible}") - - # Test with DIMACS problem - nb_problem = ProblemData(name="nb", problem_class="SOCP") - is_valid_nb = solver.validate_problem_compatibility(nb_problem) - print(f" โ nb problem compatibility: {is_valid_nb}") - - return True - - except Exception as e: - print(f" โ Registry integration failed: {e}") - return False - - -def test_temp_file_management(solver): - """Test temporary file management integration.""" - print("\n4. Testing temporary file management...") - - try: - # Get temp file stats - stats = solver.get_temp_file_stats() - print(f" โ Temp directory: {stats['temp_directory']}") - print(f" โ Current files: {stats['total_files']}") - print(f" โ Total size: {stats['total_size_bytes']} bytes") - - # Test cleanup - cleaned = solver.cleanup_orphaned_files() - print(f" โ Cleaned orphaned files: {cleaned}") - - return True - - except Exception as e: - print(f" โ Temp file management failed: {e}") - return False - - -def test_command_construction(solver): - """Test MATLAB command construction.""" - print("\n5. Testing command construction...") - - try: - # Test normal command - cmd = solver._construct_matlab_command('arch0', '/tmp/test_result.json') - print(f" โ Command constructed: {' '.join(cmd[:2])} ...") - - # Test command with special characters - cmd_special = solver._construct_matlab_command("test'problem", "/tmp/test'result.json") - print(f" โ Special characters handled correctly") - - # Test error handling - try: - solver._construct_matlab_command('', '/tmp/result.json') - print(f" โ Should have failed with empty problem name") - return False - except ValueError: - print(f" โ Error handling for invalid parameters") - - return True - - except Exception as e: - print(f" โ Command construction failed: {e}") - return False - - -def test_solver_with_mock_problem(solver): - """Test solver execution with mock problem data.""" - print("\n6. Testing solver execution with mock problem...") - - try: - # Create a problem that exists in registry but might not have physical file - test_problem = ProblemData(name="arch0", problem_class="SDP") - - print(f" โ ๏ธ This will attempt actual MATLAB execution...") - print(f" โ ๏ธ Expected to fail gracefully if MATLAB/files not available") - - start_time = time.time() - result = solver.solve(test_problem, timeout=30) - execution_time = time.time() - start_time - - print(f" โ Solver execution completed in {execution_time:.2f}s") - print(f" โ Result status: {result.status}") - print(f" โ Solver name: {result.solver_name}") - print(f" โ Solver version: {result.solver_version}") - - if result.additional_info: - print(f" โ Additional info available: {len(result.additional_info)} items") - if 'temp_file_stats' in result.additional_info: - print(f" โ Temp file stats included") - if 'problem_registry_loaded' in result.additional_info: - print(f" โ Registry status: {result.additional_info['problem_registry_loaded']}") - - return True - - except Exception as e: - print(f" โ Solver execution failed: {e}") - return False - - -def main(): - """Run enhanced MATLAB solver integration tests.""" - try: - # Test 1: Basic solver interface compliance - sedumi, sdpt3 = test_solver_interface_compliance() - if not sedumi or not sdpt3: - print("\nโ INTEGRATION TEST FAILED: Could not initialize solvers") - return 1 - - # Test 2: Problem registry integration - registry_success = test_problem_registry_integration(sedumi) - - # Test 3: Temporary file management - temp_success = test_temp_file_management(sedumi) - - # Test 4: Command construction - command_success = test_command_construction(sedumi) - - # Test 5: Solver execution (might fail if MATLAB not available) - solver_success = test_solver_with_mock_problem(sedumi) - - # Summary - print("\n" + "="*60) - print("INTEGRATION TEST SUMMARY") - print("="*60) - - tests = [ - ("Solver Interface Compliance", True), # Passed if we got here - ("Problem Registry Integration", registry_success), - ("Temporary File Management", temp_success), - ("Command Construction", command_success), - ("Solver Execution", solver_success) - ] - - passed = sum(1 for _, success in tests if success) - total = len(tests) - - for test_name, success in tests: - status = "โ PASS" if success else "โ FAIL" - print(f" {status}: {test_name}") - - print(f"\nResults: {passed}/{total} tests passed ({100*passed/total:.1f}%)") - - if passed >= 4: # Allow solver execution to fail if MATLAB not available - print("\n๐ ENHANCED MATLAB SOLVER INTEGRATION SUCCESSFUL!") - print("โ Production-ready implementation validated") - return 0 - else: - print("\nโ ๏ธ Some integration issues detected") - return 1 - - except Exception as e: - print(f"\nโ INTEGRATION TEST CRASHED: {e}") - return 1 - - -if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file diff --git a/tests/integration/test_github_actions.py b/tests/integration/test_github_actions.py deleted file mode 100644 index 1849e98..0000000 --- a/tests/integration/test_github_actions.py +++ /dev/null @@ -1,249 +0,0 @@ -#!/usr/bin/env python3 -""" -Test script to simulate GitHub Actions environment locally. - -This script tests the workflow steps that would run in GitHub Actions -to ensure everything works correctly before pushing to GitHub. -""" - -import os -import subprocess -import sys -import tempfile -from pathlib import Path - -def run_command(cmd, description, cwd=None): - """Run a shell command and return success status.""" - print(f"\n{'='*60}") - print(f"TESTING: {description}") - print(f"COMMAND: {cmd}") - print(f"{'='*60}") - - try: - result = subprocess.run( - cmd, - shell=True, - check=True, - capture_output=True, - text=True, - cwd=cwd - ) - print("โ SUCCESS") - if result.stdout: - print("STDOUT:") - print(result.stdout) - return True - except subprocess.CalledProcessError as e: - print("โ FAILED") - print(f"Exit code: {e.returncode}") - if e.stdout: - print("STDOUT:") - print(e.stdout) - if e.stderr: - print("STDERR:") - print(e.stderr) - return False - -def test_github_actions_simulation(): - """Simulate the GitHub Actions workflow steps.""" - - print("GITHUB ACTIONS WORKFLOW SIMULATION") - print("="*60) - - # Get current directory - repo_root = Path(__file__).parent.parent.parent - os.chdir(repo_root) - - print(f"Repository root: {repo_root}") - - # Test 1: Python version check - if not run_command("python --version", "Check Python version"): - return False - - # Test 2: Check if virtual environment exists - venv_path = repo_root / "venv" - if venv_path.exists(): - print("โ Virtual environment already exists") - else: - if not run_command("python -m venv venv", "Create virtual environment"): - return False - - # Test 3: Activate virtual environment and install dependencies - activate_cmd = "source venv/bin/activate" if os.name != 'nt' else "venv\\Scripts\\activate" - - if not run_command( - f"{activate_cmd} && pip install --upgrade pip", - "Upgrade pip in virtual environment" - ): - return False - - if not run_command( - f"{activate_cmd} && pip install -r requirements.txt", - "Install dependencies" - ): - return False - - # Test 4: Verify installation - if not run_command( - f"{activate_cmd} && pip list", - "List installed packages" - ): - return False - - # Test 5: Validate environment - if not run_command( - f"{activate_cmd} && python main.py --validate", - "Validate benchmark environment" - ): - return False - - # Test 6: Run quick benchmark (dimacs only) - if not run_command( - f"{activate_cmd} && python main.py --benchmark --solvers cvxpy_clarabel --library_names dimacs", - "Run quick benchmark with CLARABEL solver" - ): - return False - - # Test 7: Generate reports - if not run_command( - f"{activate_cmd} && python main.py --report", - "Generate HTML reports" - ): - return False - - # Test 8: Check if artifacts were created - expected_artifacts = [ - "database/results.db", - "logs/benchmark.log", - "docs/index.html", - "docs/solver_comparison.html", - "docs/problem_analysis.html", - "docs/environment_info.html" - ] - - print(f"\n{'='*60}") - print("CHECKING ARTIFACTS") - print(f"{'='*60}") - - all_artifacts_exist = True - for artifact in expected_artifacts: - artifact_path = repo_root / artifact - if artifact_path.exists(): - size = artifact_path.stat().st_size - print(f"โ {artifact} ({size} bytes)") - else: - print(f"โ {artifact} (missing)") - all_artifacts_exist = False - - if not all_artifacts_exist: - print("Some expected artifacts are missing!") - return False - - # Test 9: Simulate different solver combinations - print(f"\n{'='*60}") - print("TESTING SOLVER COMBINATIONS") - print(f"{'='*60}") - - solver_combinations = [ - "scipy", - "cvxpy", - "scipy,cvxpy" - ] - - for solvers in solver_combinations: - if not run_command( - f"{activate_cmd} && python main.py --benchmark --solvers {solvers} --library_names dimacs", - f"Test solver combination: {solvers}" - ): - print(f"Warning: Failed to run with solvers: {solvers}") - # Don't fail the entire test for individual solver issues - - # Test 10: Check for validation errors in logs - print(f"\n{'='*60}") - print("CHECKING FOR VALIDATION ISSUES") - print(f"{'='*60}") - - log_file = repo_root / "logs" / "benchmark.log" - if log_file.exists(): - with open(log_file, 'r') as f: - log_content = f.read() - - validation_errors = log_content.count("Validation errors") - validation_warnings = log_content.count("Validation warnings") - - print(f"Validation errors found: {validation_errors}") - print(f"Validation warnings found: {validation_warnings}") - - if validation_errors > 0: - print("โ ๏ธ Validation errors detected in logs") - # Show some error context - lines = log_content.split('\n') - error_lines = [line for line in lines if "Validation errors" in line] - for line in error_lines[-5:]: # Show last 5 error lines - print(f" {line}") - - print(f"\n{'='*60}") - print("GITHUB ACTIONS SIMULATION COMPLETED SUCCESSFULLY!") - print(f"{'='*60}") - print("The repository is ready for GitHub Actions workflow.") - print("You can now push to GitHub and the workflow should run correctly.") - - return True - -def test_environment_variables(): - """Test environment variable handling.""" - - print(f"\n{'='*60}") - print("TESTING ENVIRONMENT VARIABLE HANDLING") - print(f"{'='*60}") - - # Test GitHub Actions detection - original_github_actions = os.environ.get('GITHUB_ACTIONS') - - # Simulate GitHub Actions environment - os.environ['GITHUB_ACTIONS'] = 'true' - - activate_cmd = "source venv/bin/activate" if os.name != 'nt' else "venv\\Scripts\\activate" - - if run_command( - f"{activate_cmd} && python main.py --validate", - "Test with GITHUB_ACTIONS=true" - ): - print("โ Environment variable handling works correctly") - else: - print("โ Environment variable handling failed") - return False - - # Restore original environment - if original_github_actions is not None: - os.environ['GITHUB_ACTIONS'] = original_github_actions - else: - del os.environ['GITHUB_ACTIONS'] - - return True - -if __name__ == "__main__": - print("Starting GitHub Actions workflow simulation...") - - try: - # Run main simulation - if not test_github_actions_simulation(): - print("GitHub Actions simulation failed!") - sys.exit(1) - - # Test environment variable handling - if not test_environment_variables(): - print("Environment variable testing failed!") - sys.exit(1) - - print("\n" + "="*60) - print("ALL TESTS PASSED!") - print("="*60) - print("The repository is ready for GitHub Actions.") - - except KeyboardInterrupt: - print("\nTest interrupted by user") - sys.exit(1) - except Exception as e: - print(f"\nUnexpected error during testing: {e}") - sys.exit(1) \ No newline at end of file diff --git a/tests/integration/test_local_workflow.py b/tests/integration/test_local_workflow.py deleted file mode 100644 index a5b471c..0000000 --- a/tests/integration/test_local_workflow.py +++ /dev/null @@ -1,220 +0,0 @@ -#!/usr/bin/env python3 -""" -Local Workflow Testing Script -============================ - -Test the same commands that GitHub Actions workflows run locally. -This helps debug issues without pushing to GitHub repeatedly. -""" - -import os -import subprocess -import sys -from pathlib import Path - -def run_command(cmd, description, cwd=None): - """Run a command and display results.""" - print(f"\n{'='*60}") - print(f"๐ง {description}") - print(f"Command: {cmd}") - print(f"{'='*60}") - - try: - result = subprocess.run( - cmd, shell=True, capture_output=True, text=True, cwd=cwd - ) - - if result.stdout: - print("๐ค STDOUT:") - print(result.stdout) - - if result.stderr: - print("โ ๏ธ STDERR:") - print(result.stderr) - - if result.returncode == 0: - print("โ Command succeeded") - else: - print(f"โ Command failed with return code {result.returncode}") - - return result.returncode == 0 - - except Exception as e: - print(f"๐ฅ Exception: {e}") - return False - -def test_pr_preview_workflow(): - """Test the PR preview workflow commands locally.""" - print("๐ Testing PR Preview Workflow Locally") - print("=" * 60) - - # Change to project root - project_root = Path(__file__).parent.parent.parent - os.chdir(project_root) - - # 1. Validate environment - if not run_command("python main.py --validate", "Validate Environment"): - return False - - # 2. Run lightweight benchmark (same as PR preview) - if not run_command( - 'python main.py --benchmark --solvers "cvxpy_clarabel,cvxpy_scs" --library_names "dimacs"', - "Run PR Preview Benchmark" - ): - print("โ ๏ธ Benchmark failed, but continuing to test report generation...") - - # 3. Generate reports - if not run_command("python main.py --report", "Generate Reports"): - return False - - # 4. Check what files were generated - print(f"\n{'='*60}") - print("๐ Generated HTML Files:") - print(f"{'='*60}") - - docs_dir = Path("docs") - html_files = list(docs_dir.glob("*.html")) - - if html_files: - for html_file in sorted(html_files): - size = html_file.stat().st_size - print(f" โ {html_file.name} ({size:,} bytes)") - else: - print(" โ No HTML files found!") - return False - - # 5. Check for specific expected files - expected_files = [ - "index.html", - "solver_comparison.html", - "problem_analysis.html", - "results_matrix.html", - "statistical_analysis.html", - "performance_profiling.html", - "environment_info.html" - ] - - print(f"\n{'='*60}") - print("๐ Expected Files Check:") - print(f"{'='*60}") - - missing_files = [] - for expected_file in expected_files: - file_path = docs_dir / expected_file - if file_path.exists(): - print(f" โ {expected_file}") - else: - print(f" โ {expected_file} (MISSING)") - missing_files.append(expected_file) - - if missing_files: - print(f"\nโ ๏ธ Missing files: {', '.join(missing_files)}") - return False - - # 6. Test that main files have content - print(f"\n{'='*60}") - print("๐ Content Check:") - print(f"{'='*60}") - - index_path = docs_dir / "index.html" - if index_path.exists(): - content = index_path.read_text() - if "results_matrix.html" in content: - print(" โ index.html contains link to results_matrix.html") - else: - print(" โ ๏ธ index.html missing link to results_matrix.html") - - if len(content) > 1000: - print(f" โ index.html has substantial content ({len(content):,} chars)") - else: - print(f" โ ๏ธ index.html seems too small ({len(content):,} chars)") - - print(f"\n{'='*60}") - print("๐ Local workflow test completed!") - print("๐ก You can now open docs/index.html in your browser to see the result") - print(f"{'='*60}") - - return True - -def test_main_deployment_workflow(): - """Test the main deployment workflow commands locally.""" - print("๐ Testing Main Deployment Workflow Locally") - print("=" * 60) - - # Change to project root - project_root = Path(__file__).parent.parent.parent - os.chdir(project_root) - - # 1. Validate environment - if not run_command("python main.py --validate", "Validate Environment"): - return False - - # 2. Run full benchmark (same as main deployment) - if not run_command( - 'python main.py --benchmark --solvers "scipy_linprog,cvxpy_clarabel,cvxpy_scs,cvxpy_ecos,cvxpy_osqp" --library_names "dimacs,sdplib"', - "Run Main Deployment Benchmark" - ): - print("โ ๏ธ Benchmark failed, but continuing to test report generation...") - - # 3. Generate reports - if not run_command("python main.py --report", "Generate Reports"): - return False - - print(f"\n๐ Main deployment workflow test completed!") - print("๐ก You can now open docs/index.html in your browser to see the result") - - return True - -def main(): - """Main test function.""" - print("๐งช Local Workflow Testing Tool") - print("=" * 60) - print("This script tests the same commands that run in GitHub Actions") - - # Check for command line arguments - import sys - if len(sys.argv) > 1: - choice = sys.argv[1] - else: - print("Choose which workflow to test:") - print() - print("1. PR Preview Workflow (lightweight: cvxpy_clarabel,cvxpy_scs + dimacs)") - print("2. Main Deployment Workflow (full: scipy_linprog,cvxpy_clarabel,cvxpy_scs,cvxpy_ecos,cvxpy_osqp + dimacs,sdplib)") - print("3. Both workflows") - print() - - try: - choice = input("Enter choice (1/2/3): ").strip() - except (EOFError, KeyboardInterrupt): - print("\nโ ๏ธ Test interrupted by user") - return 1 - - try: - if choice == "1": - success = test_pr_preview_workflow() - elif choice == "2": - success = test_main_deployment_workflow() - elif choice == "3": - success1 = test_pr_preview_workflow() - success2 = test_main_deployment_workflow() - success = success1 and success2 - else: - print("โ Invalid choice") - return 1 - - if success: - print("\n๐ All tests passed!") - return 0 - else: - print("\nโ Some tests failed") - return 1 - - except KeyboardInterrupt: - print("\n\nโ ๏ธ Test interrupted by user") - return 1 - except Exception as e: - print(f"\n๐ฅ Unexpected error: {e}") - return 1 - -if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file diff --git a/tests/integration/test_matlab_cli.py b/tests/integration/test_matlab_cli.py deleted file mode 100644 index f574e79..0000000 --- a/tests/integration/test_matlab_cli.py +++ /dev/null @@ -1,312 +0,0 @@ -#!/usr/bin/env python3 -""" -Integration tests for MATLAB command-line interface. - -This module tests the reliability and robustness of MATLAB command execution -from Python for the benchmarking system. -""" - -import os -import sys -import time -import tempfile -import unittest -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from tests.test_utils.matlab_execution_tester import MatlabExecutionTester -from scripts.utils.logger import get_logger - -logger = get_logger("test_matlab_cli") - - -class TestMatlabCLI(unittest.TestCase): - """Integration tests for MATLAB command-line interface.""" - - @classmethod - def setUpClass(cls): - """Set up test class with MATLAB execution tester.""" - cls.tester = MatlabExecutionTester() - cls.matlab_available = False - - # Test if MATLAB is available - try: - success, _ = cls.tester.test_basic_execution() - cls.matlab_available = success - if not success: - logger.warning("MATLAB not available - some tests will be skipped") - except Exception as e: - logger.warning(f"MATLAB availability test failed: {e}") - - def setUp(self): - """Set up individual test.""" - if not self.matlab_available: - self.skipTest("MATLAB not available") - - def test_basic_matlab_execution(self): - """Test basic MATLAB command execution.""" - logger.info("Testing basic MATLAB execution...") - - success, result = self.tester.test_basic_execution(timeout=30) - - self.assertTrue(success, f"Basic MATLAB execution failed: {result}") - self.assertEqual(result['returncode'], 0, "MATLAB should exit with code 0") - self.assertIn('MATLAB_OK', result['stdout'], "Expected output not found") - self.assertLess(result['execution_time'], 30, "Execution should complete within timeout") - - def test_matlab_startup_performance(self): - """Test MATLAB startup performance and consistency.""" - logger.info("Testing MATLAB startup performance...") - - startup_times = [] - num_tests = 3 - - for i in range(num_tests): - success, result = self.tester.test_basic_execution(timeout=30) - self.assertTrue(success, f"Startup test {i+1} failed") - startup_times.append(result['execution_time']) - - avg_startup = sum(startup_times) / len(startup_times) - max_startup = max(startup_times) - - logger.info(f"Startup times: {startup_times}") - logger.info(f"Average startup: {avg_startup:.2f}s, Max: {max_startup:.2f}s") - - # MATLAB startup should be reasonable (under 15 seconds) - self.assertLess(max_startup, 15.0, f"MATLAB startup too slow: {max_startup:.2f}s") - - # Consistency check - no startup should be more than 3x the average - for startup_time in startup_times: - self.assertLess(startup_time, avg_startup * 3, - f"Inconsistent startup time: {startup_time:.2f}s vs avg {avg_startup:.2f}s") - - def test_timeout_handling(self): - """Test that timeout handling works correctly.""" - logger.info("Testing timeout handling...") - - timeout_worked, result = self.tester.test_timeout_handling(timeout_duration=5) - - self.assertTrue(timeout_worked, f"Timeout handling failed: {result}") - self.assertTrue(result['actually_timed_out'], "Command should have timed out") - self.assertLess(result['timeout_accuracy'], 2.0, - f"Timeout timing inaccurate: {result['timeout_accuracy']:.2f}s") - - def test_error_handling(self): - """Test that MATLAB errors are properly captured and reported.""" - logger.info("Testing error handling...") - - error_handled, result = self.tester.test_error_handling() - - self.assertTrue(error_handled, f"Error handling failed: {result}") - self.assertNotEqual(result['returncode'], 0, "Invalid command should return non-zero code") - self.assertTrue(len(result['stderr']) > 0, "Error message should be captured in stderr") - - def test_working_directory(self): - """Test that MATLAB executes in the correct working directory.""" - logger.info("Testing working directory handling...") - - # Test with project root as working directory - tester_with_wd = MatlabExecutionTester(working_directory=str(project_root)) - - start_time = time.time() - cmd_parts = ['matlab', '-batch', 'disp(pwd)'] - - try: - import subprocess - result = subprocess.run( - cmd_parts, - capture_output=True, - text=True, - timeout=30, - cwd=str(project_root) - ) - - execution_time = time.time() - start_time - - if result.returncode == 0: - # Check that pwd output contains our project directory - current_dir = result.stdout.strip() - logger.info(f"MATLAB working directory: {current_dir}") - - # The working directory should be related to our project - self.assertTrue( - str(project_root) in current_dir or - os.path.basename(str(project_root)) in current_dir, - f"Working directory issue: expected {project_root}, got {current_dir}" - ) - else: - self.fail(f"Working directory test failed: {result.stderr}") - - except subprocess.TimeoutExpired: - self.fail("Working directory test timed out") - except Exception as e: - self.fail(f"Working directory test failed with exception: {e}") - - def test_matlab_runner_execution(self): - """Test execution of matlab_runner.m (will fail gracefully with unknown problem).""" - logger.info("Testing matlab_runner execution...") - - # This should fail gracefully since 'test_problem' doesn't exist - success, result = self.tester.test_matlab_runner_execution( - problem_name='test_problem', - solver_name='sedumi', - timeout=60 - ) - - # We expect this to complete execution (even if it results in an error) - # The important thing is that it doesn't crash or hang - self.assertIsNotNone(result, "Should get a result from matlab_runner test") - self.assertIn('execution_time', result, "Should measure execution time") - self.assertLess(result['execution_time'], 60, "Should complete within timeout") - - # Check if result file was created (even with error content) - if 'result_file_created' in result: - # If a result file was created, that's good - means matlab_runner ran - if result['result_file_created'] and 'result_content' in result: - logger.info("matlab_runner executed and produced JSON result") - # Check that we got some kind of result structure - content = result['result_content'] - self.assertIsInstance(content, dict, "Result should be a JSON object") - - def test_concurrent_execution(self): - """Test concurrent MATLAB execution to check for conflicts.""" - logger.info("Testing concurrent MATLAB execution...") - - import threading - import queue - - results_queue = queue.Queue() - num_concurrent = 3 - - def run_matlab_test(test_id): - """Run a MATLAB test and put result in queue.""" - try: - tester = MatlabExecutionTester() - success, result = tester.test_basic_execution(timeout=30) - results_queue.put((test_id, success, result)) - except Exception as e: - results_queue.put((test_id, False, {'error': str(e)})) - - # Start concurrent threads - threads = [] - for i in range(num_concurrent): - thread = threading.Thread(target=run_matlab_test, args=(i,)) - threads.append(thread) - thread.start() - - # Wait for all to complete - for thread in threads: - thread.join(timeout=60) # Give each thread up to 60 seconds - - # Collect results - results = [] - while not results_queue.empty(): - results.append(results_queue.get()) - - # Verify all tests completed - self.assertEqual(len(results), num_concurrent, - f"Expected {num_concurrent} results, got {len(results)}") - - # Verify all tests succeeded - successful_tests = [r for r in results if r[1]] # r[1] is success flag - success_rate = len(successful_tests) / len(results) - - logger.info(f"Concurrent test success rate: {success_rate:.1%}") - - # At least 80% should succeed (allowing for some timing issues) - self.assertGreaterEqual(success_rate, 0.8, - f"Concurrent execution success rate too low: {success_rate:.1%}") - - def test_argument_handling(self): - """Test handling of various argument types and special characters.""" - logger.info("Testing argument handling...") - - # Test with different types of arguments - test_cases = [ - ("Simple string", "disp('Hello World')"), - ("String with spaces", "disp('Hello MATLAB World')"), - ("Numbers", "disp(42)"), - ("Mathematical expression", "disp(2+2)"), - ] - - for test_name, matlab_cmd in test_cases: - with self.subTest(test_case=test_name): - start_time = time.time() - - try: - import subprocess - result = subprocess.run( - ['matlab', '-batch', matlab_cmd], - capture_output=True, - text=True, - timeout=30, - cwd=str(project_root) - ) - - execution_time = time.time() - start_time - - # Should execute without crashing - self.assertIsNotNone(result.returncode, - f"Command should complete: {test_name}") - - # Should not timeout - self.assertLess(execution_time, 30, - f"Command should not timeout: {test_name}") - - logger.debug(f"{test_name}: returncode={result.returncode}, " - f"time={execution_time:.2f}s") - - except subprocess.TimeoutExpired: - self.fail(f"Argument test timed out: {test_name}") - except Exception as e: - self.fail(f"Argument test failed: {test_name}, error: {e}") - - -class TestMatlabCLIComprehensive(unittest.TestCase): - """Comprehensive integration test using the MatlabExecutionTester.""" - - def test_comprehensive_matlab_cli(self): - """Run comprehensive MATLAB CLI test suite.""" - logger.info("Running comprehensive MATLAB CLI test...") - - tester = MatlabExecutionTester() - - try: - results = tester.run_comprehensive_test() - - # Check overall statistics - stats = results['execution_stats'] - - self.assertGreater(stats['total_tests'], 0, "Should run some tests") - self.assertGreaterEqual(stats['success_rate'], 0.5, - f"Success rate too low: {stats['success_rate']:.1%}") - - # Check startup performance - if stats['avg_startup_time'] > 0: - self.assertLess(stats['avg_startup_time'], 15.0, - f"Average startup time too slow: {stats['avg_startup_time']:.2f}s") - - logger.info(f"Comprehensive test completed with {stats['success_rate']:.1%} success rate") - - except Exception as e: - self.fail(f"Comprehensive MATLAB CLI test failed: {e}") - - -def main(): - """Run MATLAB CLI integration tests.""" - # Configure logging for test output - import logging - logging.basicConfig( - level=logging.INFO, - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' - ) - - # Run tests - unittest.main(verbosity=2) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tests/integration/test_matlab_data_loaders.m b/tests/integration/test_matlab_data_loaders.m deleted file mode 100644 index 3682919..0000000 --- a/tests/integration/test_matlab_data_loaders.m +++ /dev/null @@ -1,367 +0,0 @@ -function test_matlab_data_loaders() -% Comprehensive integration testing of MATLAB data loading pipeline -% -% This function tests the complete data loading workflow: -% 1. YAML configuration reading (matlab_yaml_reader) -% 2. DIMACS .mat file loading (mat_loader) -% 3. SDPLIB .dat-s file loading (dat_loader) -% 4. Integration between all components -% 5. Error handling and edge cases -% -% Test coverage includes multiple problems from each library (DIMACS, SDPLIB) -% and validates data consistency and performance. - -fprintf('=== MATLAB Data Loader Integration Testing ===\n\n'); - -% Initialize test results -test_results = struct(); -test_results.total_tests = 0; -test_results.passed_tests = 0; -test_results.failed_tests = 0; -test_results.errors = {}; - -% Add paths for all required functions -addpath(fullfile(pwd, 'scripts/utils/')); -addpath(fullfile(pwd, 'scripts/data_loaders/matlab_octave/')); - -try - % Test 1: YAML Reader Basic Functionality - fprintf('Test 1: YAML Reader Basic Functionality\n'); - test_results = run_yaml_reader_tests(test_results); - - % Test 2: DIMACS Data Loader Tests - fprintf('\nTest 2: DIMACS Data Loader Tests\n'); - test_results = run_dimacs_loader_tests(test_results); - - % Test 3: SDPLIB Data Loader Tests - fprintf('\nTest 3: SDPLIB Data Loader Tests\n'); - test_results = run_sdplib_loader_tests(test_results); - - % Test 4: Integration Workflow Tests - fprintf('\nTest 4: Integration Workflow Tests\n'); - test_results = run_integration_workflow_tests(test_results); - - % Test 5: Error Handling Tests - fprintf('\nTest 5: Error Handling Tests\n'); - test_results = run_error_handling_tests(test_results); - - % Print final results - fprintf('\n=== Final Test Results ===\n'); - fprintf('Total tests: %d\n', test_results.total_tests); - fprintf('Passed: %d\n', test_results.passed_tests); - fprintf('Failed: %d\n', test_results.failed_tests); - fprintf('Success rate: %.1f%%\n', 100 * test_results.passed_tests / test_results.total_tests); - - if test_results.failed_tests > 0 - fprintf('\nFailed tests:\n'); - for i = 1:length(test_results.errors) - fprintf(' - %s\n', test_results.errors{i}); - end - error('test_matlab_data_loaders:TestsFailed', '%d tests failed', test_results.failed_tests); - else - fprintf('\nAll tests passed! โ \n'); - end - -catch ME - fprintf('\nIntegration test failed with error: %s\n', ME.message); - rethrow(ME); -end - -end - -function test_results = run_yaml_reader_tests(test_results) -% Test YAML reader functionality with various problems - -fprintf(' Testing YAML reader...\n'); - -% Test cases: [problem_name, expected_library, expected_file_type] -test_cases = { - 'nb', 'DIMACS', 'mat'; - 'arch0', 'SDPLIB', 'dat-s'; - 'control1', 'SDPLIB', 'dat-s'; - 'bm1', 'DIMACS', 'mat' -}; - -for i = 1:size(test_cases, 1) - problem_name = test_cases{i, 1}; - expected_library = test_cases{i, 2}; - expected_file_type = test_cases{i, 3}; - - test_results.total_tests = test_results.total_tests + 1; - - try - [info, file_path] = matlab_yaml_reader(problem_name); - - % Validate required fields - assert(isfield(info, 'display_name'), 'Missing display_name'); - assert(isfield(info, 'file_path'), 'Missing file_path'); - assert(isfield(info, 'file_type'), 'Missing file_type'); - assert(isfield(info, 'library_name'), 'Missing library_name'); - assert(~isempty(file_path), 'Empty file_path'); - - % Validate expected values - assert(strcmp(info.library_name, expected_library), 'Wrong library_name'); - assert(strcmp(info.file_type, expected_file_type), 'Wrong file_type'); - assert(strcmp(info.file_path, file_path), 'Inconsistent file_path'); - - % Check file exists - assert(exist(file_path, 'file') > 0, 'File does not exist'); - - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ %s: %s\n', problem_name, info.display_name); - - catch ME - test_results.failed_tests = test_results.failed_tests + 1; - error_msg = sprintf('YAML reader test failed for %s: %s', problem_name, ME.message); - test_results.errors{end+1} = error_msg; - fprintf(' โ %s: %s\n', problem_name, ME.message); - end -end - -end - -function test_results = run_dimacs_loader_tests(test_results) -% Test DIMACS .mat file loader with multiple problems - -fprintf(' Testing DIMACS loader...\n'); - -% Test DIMACS problems -dimacs_problems = {'nb', 'nb_L2', 'bm1'}; - -for i = 1:length(dimacs_problems) - problem_name = dimacs_problems{i}; - test_results.total_tests = test_results.total_tests + 1; - - try - % Get file path from YAML - [info, file_path] = matlab_yaml_reader(problem_name); - assert(strcmp(info.file_type, 'mat'), 'Expected mat file type'); - - % Load problem using mat_loader - [A, b, c, K] = mat_loader(file_path); - - % Validate output format - assert(issparse(A), 'A must be sparse'); - assert(isvector(b) && size(b, 2) == 1, 'b must be column vector'); - assert(isvector(c) && size(c, 2) == 1, 'c must be column vector'); - assert(isstruct(K), 'K must be struct'); - - % Validate dimensions - [m, n] = size(A); - assert(length(b) == m, 'Inconsistent b dimensions'); - assert(length(c) == n, 'Inconsistent c dimensions'); - - % Validate cone structure - assert(isfield(K, 'f'), 'K missing f field'); - assert(isfield(K, 'l'), 'K missing l field'); - assert(K.f >= 0, 'K.f must be non-negative'); - assert(K.l >= 0, 'K.l must be non-negative'); - - % Calculate total variables from cone structure - total_vars = K.f + K.l; - if isfield(K, 'q') && ~isempty(K.q) - total_vars = total_vars + sum(K.q); - end - if isfield(K, 's') && ~isempty(K.s) - total_vars = total_vars + sum(K.s .* K.s); - end - - % Allow some tolerance for dimension mismatch warnings - if abs(total_vars - n) <= n * 0.1 % 10% tolerance - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ %s: [%dx%d] matrix, %d vars\n', problem_name, m, n, total_vars); - else - error('Cone structure inconsistent with problem size: %d vs %d', total_vars, n); - end - - catch ME - test_results.failed_tests = test_results.failed_tests + 1; - error_msg = sprintf('DIMACS loader test failed for %s: %s', problem_name, ME.message); - test_results.errors{end+1} = error_msg; - fprintf(' โ %s: %s\n', problem_name, ME.message); - end -end - -end - -function test_results = run_sdplib_loader_tests(test_results) -% Test SDPLIB .dat-s file loader with multiple problems - -fprintf(' Testing SDPLIB loader...\n'); - -% Test SDPLIB problems -sdplib_problems = {'arch0', 'control1', 'hinf1'}; - -for i = 1:length(sdplib_problems) - problem_name = sdplib_problems{i}; - test_results.total_tests = test_results.total_tests + 1; - - try - % Get file path from YAML - [info, file_path] = matlab_yaml_reader(problem_name); - assert(strcmp(info.file_type, 'dat-s'), 'Expected dat-s file type'); - - % Load problem using dat_loader - [A, b, c, K] = dat_loader(file_path); - - % Validate output format - assert(issparse(A), 'A must be sparse'); - assert(isvector(b) && size(b, 2) == 1, 'b must be column vector'); - assert(isvector(c) && size(c, 2) == 1, 'c must be column vector'); - assert(isstruct(K), 'K must be struct'); - - % Validate dimensions - [m, n] = size(A); - assert(length(b) == m, 'Inconsistent b dimensions'); - assert(length(c) == n, 'Inconsistent c dimensions'); - - % Validate cone structure - assert(isfield(K, 'f'), 'K missing f field'); - assert(isfield(K, 'l'), 'K missing l field'); - assert(K.f >= 0, 'K.f must be non-negative'); - assert(K.l >= 0, 'K.l must be non-negative'); - - % For SDPLIB problems, we expect SDP blocks - if isfield(K, 's') && ~isempty(K.s) - assert(all(K.s > 0), 'SDP block sizes must be positive'); - end - - % Calculate total variables from cone structure - total_vars = K.f + K.l; - if isfield(K, 'q') && ~isempty(K.q) - total_vars = total_vars + sum(K.q); - end - if isfield(K, 's') && ~isempty(K.s) - total_vars = total_vars + sum(K.s .* K.s); - end - - assert(total_vars == n, 'Cone structure inconsistent with problem size: %d vs %d', total_vars, n); - - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ %s: [%dx%d] matrix, SDP blocks: %s\n', problem_name, m, n, mat2str(K.s)); - - catch ME - test_results.failed_tests = test_results.failed_tests + 1; - error_msg = sprintf('SDPLIB loader test failed for %s: %s', problem_name, ME.message); - test_results.errors{end+1} = error_msg; - fprintf(' โ %s: %s\n', problem_name, ME.message); - end -end - -end - -function test_results = run_integration_workflow_tests(test_results) -% Test complete workflow: YAML -> file resolution -> data loading - -fprintf(' Testing integration workflow...\n'); - -% Test complete workflow for different problem types -workflow_problems = { - 'nb', 'DIMACS'; - 'arch0', 'SDPLIB' -}; - -for i = 1:size(workflow_problems, 1) - problem_name = workflow_problems{i, 1}; - expected_library = workflow_problems{i, 2}; - test_results.total_tests = test_results.total_tests + 1; - - try - % Step 1: Resolve problem name to file path - [info, file_path] = matlab_yaml_reader(problem_name); - - % Step 2: Load data based on file type - if strcmp(info.file_type, 'mat') - [A, b, c, K] = mat_loader(file_path); - elseif strcmp(info.file_type, 'dat-s') - [A, b, c, K] = dat_loader(file_path); - else - error('Unsupported file type: %s', info.file_type); - end - - % Step 3: Validate complete workflow - assert(strcmp(info.library_name, expected_library), 'Wrong library'); - assert(exist(file_path, 'file') > 0, 'File not found'); - assert(~isempty(A) && ~isempty(b) && ~isempty(c) && ~isempty(K), 'Empty data'); - - % Step 4: Basic optimization problem validation - [m, n] = size(A); - assert(m > 0 && n > 0, 'Invalid problem dimensions'); - assert(length(b) == m && length(c) == n, 'Dimension mismatch'); - - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ %s: Complete workflow successful\n', problem_name); - - catch ME - test_results.failed_tests = test_results.failed_tests + 1; - error_msg = sprintf('Integration workflow test failed for %s: %s', problem_name, ME.message); - test_results.errors{end+1} = error_msg; - fprintf(' โ %s: %s\n', problem_name, ME.message); - end -end - -end - -function test_results = run_error_handling_tests(test_results) -% Test error handling for various failure scenarios - -fprintf(' Testing error handling...\n'); - -% Test 1: Non-existent problem -test_results.total_tests = test_results.total_tests + 1; -try - matlab_yaml_reader('nonexistent_problem'); - % Should not reach here - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = 'Error handling test failed: should have thrown error for non-existent problem'; - fprintf(' โ Non-existent problem: Should have failed\n'); -catch ME - if contains(ME.message, 'not found') - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ Non-existent problem: Correctly detected\n'); - else - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = sprintf('Error handling test failed: wrong error message: %s', ME.message); - fprintf(' โ Non-existent problem: Wrong error\n'); - end -end - -% Test 2: Non-existent file -test_results.total_tests = test_results.total_tests + 1; -try - mat_loader('nonexistent_file.mat'); - % Should not reach here - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = 'Error handling test failed: should have thrown error for non-existent file'; - fprintf(' โ Non-existent file: Should have failed\n'); -catch ME - if contains(ME.message, 'not found') || contains(ME.message, 'FileNotFound') - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ Non-existent file: Correctly detected\n'); - else - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = sprintf('Error handling test failed: wrong error message: %s', ME.message); - fprintf(' โ Non-existent file: Wrong error\n'); - end -end - -% Test 3: Invalid YAML file -test_results.total_tests = test_results.total_tests + 1; -try - matlab_yaml_reader('nb', 'nonexistent_config.yaml'); - % Should not reach here - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = 'Error handling test failed: should have thrown error for non-existent config'; - fprintf(' โ Non-existent config: Should have failed\n'); -catch ME - if contains(ME.message, 'not found') || contains(ME.message, 'FileNotFound') - test_results.passed_tests = test_results.passed_tests + 1; - fprintf(' โ Non-existent config: Correctly detected\n'); - else - test_results.failed_tests = test_results.failed_tests + 1; - test_results.errors{end+1} = sprintf('Error handling test failed: wrong error message: %s', ME.message); - fprintf(' โ Non-existent config: Wrong error\n'); - end -end - -end \ No newline at end of file diff --git a/tests/integration/test_matlab_solver_integration.m b/tests/integration/test_matlab_solver_integration.m deleted file mode 100644 index 42eaed3..0000000 --- a/tests/integration/test_matlab_solver_integration.m +++ /dev/null @@ -1,418 +0,0 @@ -function test_matlab_solver_integration() -% Comprehensive integration testing for MATLAB solver runners -% -% This function tests the complete MATLAB solver integration pipeline: -% - Data loading (DIMACS .mat, SDPLIB .dat-s) -% - Solver execution (SeDuMi, SDPT3) -% - JSON result formatting and file output -% - Error handling and edge cases -% - Performance benchmarking -% -% The tests cover different problem types: LP, QP, SOCP, SDP - -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('MATLAB Solver Integration Testing\n'); -fprintf('================================================================\n'); -fprintf('Date: %s\n', datestr(now)); -fprintf('MATLAB: %s\n', version); -fprintf('Platform: %s\n', computer); -fprintf('================================================================\n\n'); - -% Add required paths -addpath(genpath('scripts/data_loaders/matlab_octave')); -addpath(genpath('scripts/solvers/matlab_octave')); -addpath(genpath('scripts/utils')); - -% Initialize test results -test_results = struct(); -test_results.total_tests = 0; -test_results.passed_tests = 0; -test_results.failed_tests = 0; -test_results.test_details = {}; - -try - % Test 1: Environment and Version Detection - fprintf('Test 1: Environment and Version Detection\n'); - test_results = run_environment_test(test_results); - - % Test 2: Data Loader Integration - fprintf('\nTest 2: Data Loader Integration\n'); - test_results = run_data_loader_tests(test_results); - - % Test 3: SeDuMi Solver Integration - fprintf('\nTest 3: SeDuMi Solver Integration\n'); - test_results = run_sedumi_tests(test_results); - - % Test 4: SDPT3 Solver Integration - fprintf('\nTest 4: SDPT3 Solver Integration\n'); - test_results = run_sdpt3_tests(test_results); - - % Test 5: JSON Output Integration - fprintf('\nTest 5: JSON Output Integration\n'); - test_results = run_json_tests(test_results); - - % Test 6: Error Handling and Edge Cases - fprintf('\nTest 6: Error Handling and Edge Cases\n'); - test_results = run_error_tests(test_results); - - % Test 7: Performance Benchmarking - fprintf('\nTest 7: Performance Benchmarking\n'); - test_results = run_performance_tests(test_results); - -catch ME - fprintf('CRITICAL ERROR in test suite: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; -end - -% Generate final report -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('INTEGRATION TEST SUMMARY\n'); -fprintf('================================================================\n'); -fprintf('Total Tests: %d\n', test_results.total_tests); -fprintf('Passed: %d\n', test_results.passed_tests); -fprintf('Failed: %d\n', test_results.failed_tests); -fprintf('Success Rate: %.1f%%\n', 100 * test_results.passed_tests / test_results.total_tests); -fprintf('================================================================\n'); - -if test_results.failed_tests > 0 - fprintf('\nFAILED TESTS:\n'); - for i = 1:length(test_results.test_details) - detail = test_results.test_details{i}; - if strcmp(detail.status, 'FAILED') - fprintf(' - %s: %s\n', detail.name, detail.error); - end - end -end - -fprintf('\nIntegration testing completed.\n'); - -end - -function test_results = run_environment_test(test_results) -% Test environment and version detection - -fprintf(' Testing version detection...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - metadata = matlab_version_detection(); - - % Validate required fields - required_fields = {'matlab_version', 'sedumi_available', 'sdpt3_available'}; - for i = 1:length(required_fields) - if ~isfield(metadata, required_fields{i}) - error('Missing required field: %s', required_fields{i}); - end - end - - fprintf(' MATLAB: %s\n', metadata.matlab_version); - fprintf(' SeDuMi: Available=%d, Version=%s\n', ... - metadata.sedumi_available, metadata.sedumi_version); - fprintf(' SDPT3: Available=%d, Version=%s\n', ... - metadata.sdpt3_available, metadata.sdpt3_version); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Environment Detection', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Environment Detection', 'status', 'FAILED', 'error', ME.message); -end - -end - -function test_results = run_data_loader_tests(test_results) -% Test data loader integration with different problem types - -test_problems = { - '../../problems/SDPLIB/data/truss1.dat-s', 'SDPLIB', 'SDP'; - '../../problems/DIMACS/data/HINF/hinf13.mat.gz', 'DIMACS', 'SOCP' -}; - -for i = 1:size(test_problems, 1) - problem_file = test_problems{i, 1}; - problem_type = test_problems{i, 2}; - expected_class = test_problems{i, 3}; - - fprintf(' Testing %s loader with %s...\n', problem_type, problem_file); - test_results.total_tests = test_results.total_tests + 1; - - try - if ~exist(problem_file, 'file') - error('Problem file not found: %s', problem_file); - end - - if strcmp(problem_type, 'SDPLIB') - [A, b, c, K] = dat_loader(problem_file); - else - [A, b, c, K] = mat_loader(problem_file); - end - - % Validate loaded data - if isempty(A) || isempty(b) || isempty(c) || ~isstruct(K) - error('Invalid data loaded from %s', problem_file); - end - - fprintf(' SUCCESS: Loaded %dx%d problem\n', size(A, 1), size(A, 2)); - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('%s Loader', problem_type), 'status', 'PASSED', 'error', ''); - - catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('%s Loader', problem_type), 'status', 'FAILED', 'error', ME.message); - end -end - -end - -function test_results = run_sedumi_tests(test_results) -% Test SeDuMi solver with different problem types - -test_problems = { - '../../problems/SDPLIB/data/truss1.dat-s', 'dat_loader', 'SDP'; -}; - -% Add DIMACS problem if available -if exist('../../problems/DIMACS/data/HINF/hinf13.mat.gz', 'file') - test_problems{end+1, 1} = '../../problems/DIMACS/data/HINF/hinf13.mat.gz'; - test_problems{end, 2} = 'mat_loader'; - test_problems{end, 3} = 'SOCP'; -end - -for i = 1:size(test_problems, 1) - problem_file = test_problems{i, 1}; - loader_func = test_problems{i, 2}; - problem_class = test_problems{i, 3}; - - fprintf(' Testing SeDuMi with %s (%s)...\n', problem_file, problem_class); - test_results.total_tests = test_results.total_tests + 1; - - try - % Load problem - if strcmp(loader_func, 'dat_loader') - [A, b, c, K] = dat_loader(problem_file); - else - [A, b, c, K] = mat_loader(problem_file); - end - - % Solve with SeDuMi - tic; - result = sedumi_runner(A, b, c, K); - solve_time = toc; - - % Validate result - if ~isstruct(result) || ~isfield(result, 'status') - error('Invalid result structure from SeDuMi'); - end - - fprintf(' Status: %s, Time: %.3fs\n', result.status, solve_time); - if strcmp(result.status, 'optimal') && ~isnan(result.primal_objective) - fprintf(' Objective: %.6f\n', result.primal_objective); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('SeDuMi %s', problem_class), 'status', 'PASSED', 'error', ''); - - catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('SeDuMi %s', problem_class), 'status', 'FAILED', 'error', ME.message); - end -end - -end - -function test_results = run_sdpt3_tests(test_results) -% Test SDPT3 solver with different problem types - -test_problems = { - '../../problems/SDPLIB/data/truss1.dat-s', 'dat_loader', 'SDP'; -}; - -% Add DIMACS problem if available -if exist('../../problems/DIMACS/data/HINF/hinf13.mat.gz', 'file') - test_problems{end+1, 1} = '../../problems/DIMACS/data/HINF/hinf13.mat.gz'; - test_problems{end, 2} = 'mat_loader'; - test_problems{end, 3} = 'SOCP'; -end - -for i = 1:size(test_problems, 1) - problem_file = test_problems{i, 1}; - loader_func = test_problems{i, 2}; - problem_class = test_problems{i, 3}; - - fprintf(' Testing SDPT3 with %s (%s)...\n', problem_file, problem_class); - test_results.total_tests = test_results.total_tests + 1; - - try - % Load problem - if strcmp(loader_func, 'dat_loader') - [A, b, c, K] = dat_loader(problem_file); - else - [A, b, c, K] = mat_loader(problem_file); - end - - % Solve with SDPT3 - tic; - result = sdpt3_runner(A, b, c, K); - solve_time = toc; - - % Validate result - if ~isstruct(result) || ~isfield(result, 'status') - error('Invalid result structure from SDPT3'); - end - - fprintf(' Status: %s, Time: %.3fs\n', result.status, solve_time); - if strcmp(result.status, 'optimal') && ~isnan(result.primal_objective) - fprintf(' Objective: %.6f\n', result.primal_objective); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('SDPT3 %s', problem_class), 'status', 'PASSED', 'error', ''); - - catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', sprintf('SDPT3 %s', problem_class), 'status', 'FAILED', 'error', ME.message); - end -end - -end - -function test_results = run_json_tests(test_results) -% Test JSON output integration - -fprintf(' Testing JSON output with SeDuMi result...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Create simple test problem - A = sparse([1, 1]); - b = 1; - c = [1; 1]; - K = struct('f', 0, 'l', 2, 'q', [], 's', []); - - % Solve and get result - result = sedumi_runner(A, b, c, K); - - % Test JSON formatting - json_str = matlab_json_formatter(result); - - % Test JSON file saving - output_file = 'test_integration_result.json'; - success = save_json_result(result, output_file); - - if ~success - error('Failed to save JSON result to file'); - end - - % Validate file exists and has content - if ~exist(output_file, 'file') - error('JSON output file was not created'); - end - - file_info = dir(output_file); - if file_info.bytes == 0 - error('JSON output file is empty'); - end - - fprintf(' SUCCESS: JSON file saved (%d bytes)\n', file_info.bytes); - - % Clean up - delete(output_file); - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'JSON Output', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'JSON Output', 'status', 'FAILED', 'error', ME.message); -end - -end - -function test_results = run_error_tests(test_results) -% Test error handling and edge cases - -fprintf(' Testing error handling with invalid inputs...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Test with invalid problem data - A = sparse(2, 3); % Inconsistent dimensions - b = [1; 2]; - c = [1; 1; 1]; - K = struct('f', 0, 'l', 3, 'q', [], 's', []); - - % This should handle the error gracefully - result = sedumi_runner(A, b, c, K); - - % Result should indicate error - if ~strcmp(result.status, 'num_error') && ~strcmp(result.status, 'unknown') - fprintf(' WARNING: Expected error status, got: %s\n', result.status); - else - fprintf(' SUCCESS: Error handled gracefully\n'); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Error Handling', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Error Handling', 'status', 'FAILED', 'error', ME.message); -end - -end - -function test_results = run_performance_tests(test_results) -% Test performance benchmarking - -fprintf(' Testing performance with small problems...\n'); -test_results.total_tests = test_results.total_tests + 1; - -try - % Create simple feasible LP problem: min x1 + x2 s.t. x1 + x2 = 1, x1, x2 >= 0 - A = sparse([1, 1]); % x1 + x2 = 1 - b = 1; % Right-hand side - c = [1; 1]; % Minimize x1 + x2 - K = struct('f', 0, 'l', 2, 'q', [], 's', []); % Both variables are non-negative - - % Benchmark SeDuMi - num_runs = 5; - times = zeros(num_runs, 1); - - for i = 1:num_runs - tic; - result = sedumi_runner(A, b, c, K); - times(i) = toc; - - if ~strcmp(result.status, 'optimal') - error('Performance test failed: non-optimal status'); - end - end - - avg_time = mean(times); - std_time = std(times); - - fprintf(' Average time: %.3f ยฑ %.3f seconds (%d runs)\n', avg_time, std_time, num_runs); - - if avg_time > 5.0 % Warning if too slow - fprintf(' WARNING: Performance seems slow (>5s average)\n'); - end - - test_results.passed_tests = test_results.passed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Performance', 'status', 'PASSED', 'error', ''); - -catch ME - fprintf(' ERROR: %s\n', ME.message); - test_results.failed_tests = test_results.failed_tests + 1; - test_results.test_details{end+1} = struct('name', 'Performance', 'status', 'FAILED', 'error', ME.message); -end - -end \ No newline at end of file diff --git a/tests/integration/test_validation.py b/tests/integration/test_validation.py deleted file mode 100644 index 5637e06..0000000 --- a/tests/integration/test_validation.py +++ /dev/null @@ -1,341 +0,0 @@ -#!/usr/bin/env python3 -""" -Test script for validation functionality. - -This script tests the validation system with both valid and invalid data -to ensure it catches errors and warnings appropriately. -""" - -import sys -import logging -from pathlib import Path - -# Add project root to path for imports -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.utils.validation import create_default_validator, ValidationResult -from scripts.benchmark.result_collector import ResultCollector -from scripts.solvers.solver_interface import SolverResult - -# Set up logging -logging.basicConfig(level=logging.INFO, format='%(levelname)s: %(message)s') -logger = logging.getLogger(__name__) - - -def test_validation_system(): - """Test the validation system with various data scenarios.""" - - print("=" * 60) - print("TESTING VALIDATION SYSTEM") - print("=" * 60) - - # Create validator - validator = create_default_validator() - print(f"โ Created validator with thresholds:") - print(f" Max solve time: {validator.max_solve_time}s") - print(f" Min solve time: {validator.min_solve_time}s") - print(f" Max objective magnitude: {validator.max_objective_magnitude}") - - # Test 1: Valid result - print("\n1. Testing valid result:") - valid_result = { - 'solver_name': 'SciPy', - 'problem_name': 'test_lp', - 'solve_time': 0.001, - 'status': 'optimal', - 'objective_value': 1.5 - } - - validation = validator.validate_single_result(valid_result) - print(f" Result: Valid={validation.is_valid}, Severity={validation.severity}") - if validation.errors: - print(f" Errors: {validation.errors}") - if validation.warnings: - print(f" Warnings: {validation.warnings}") - - # Test 2: Invalid solve time - print("\n2. Testing negative solve time:") - invalid_time_result = { - 'solver_name': 'BadSolver', - 'problem_name': 'test_lp', - 'solve_time': -0.5, # Negative time - 'status': 'optimal', - 'objective_value': 1.5 - } - - validation = validator.validate_single_result(invalid_time_result) - print(f" Result: Valid={validation.is_valid}, Severity={validation.severity}") - if validation.errors: - print(f" Errors: {validation.errors}") - - # Test 3: Invalid status - print("\n3. Testing invalid status:") - invalid_status_result = { - 'solver_name': 'TestSolver', - 'problem_name': 'test_lp', - 'solve_time': 0.001, - 'status': 'unknown_status', # Invalid status - 'objective_value': 1.5 - } - - validation = validator.validate_single_result(invalid_status_result) - print(f" Result: Valid={validation.is_valid}, Severity={validation.severity}") - if validation.errors: - print(f" Errors: {validation.errors}") - - # Test 4: NaN objective value with optimal status - print("\n4. Testing NaN objective with optimal status:") - nan_objective_result = { - 'solver_name': 'TestSolver', - 'problem_name': 'test_lp', - 'solve_time': 0.001, - 'status': 'optimal', - 'objective_value': float('nan') # NaN objective - } - - validation = validator.validate_single_result(nan_objective_result) - print(f" Result: Valid={validation.is_valid}, Severity={validation.severity}") - if validation.errors: - print(f" Errors: {validation.errors}") - - # Test 5: Time close to timeout - print("\n5. Testing time close to timeout:") - timeout_result = { - 'solver_name': 'SlowSolver', - 'problem_name': 'test_lp', - 'solve_time': 9.5, # Close to 10s timeout - 'status': 'optimal', - 'objective_value': 1.5 - } - - validation = validator.validate_single_result(timeout_result, timeout=10.0) - print(f" Result: Valid={validation.is_valid}, Severity={validation.severity}") - if validation.warnings: - print(f" Warnings: {validation.warnings}") - - # Test 6: Batch validation with consistency checks - print("\n6. Testing batch validation:") - batch_results = [ - valid_result, - { - 'solver_name': 'SciPy', - 'problem_name': 'test_lp', - 'solve_time': 0.010, # 10x slower than first result - 'status': 'optimal', - 'objective_value': 1.5 - }, - { - 'solver_name': 'AlwaysFails', - 'problem_name': 'test_lp', - 'solve_time': 0.001, - 'status': 'error', - 'objective_value': None - }, - { - 'solver_name': 'AlwaysFails', - 'problem_name': 'test_qp', - 'solve_time': 0.001, - 'status': 'error', - 'objective_value': None - }, - { - 'solver_name': 'AlwaysFails', - 'problem_name': 'test_socp', - 'solve_time': 0.001, - 'status': 'error', - 'objective_value': None - } - ] - - individual_validations, consistency_validation = validator.validate_batch_results(batch_results) - print(f" Individual validations: {len(individual_validations)} results") - - valid_count = sum(1 for v in individual_validations if v.is_valid) - print(f" Valid results: {valid_count}/{len(individual_validations)}") - - print(f" Consistency validation: Valid={consistency_validation.is_valid}") - if consistency_validation.warnings: - print(f" Consistency warnings: {consistency_validation.warnings}") - - print("\nโ Validation system tests completed!") - - -def test_result_collector_integration(): - """Test integration of validation with result collector.""" - - print("\n" + "=" * 60) - print("TESTING RESULT COLLECTOR INTEGRATION") - print("=" * 60) - - try: - # Create result collector with validation enabled - collector = ResultCollector(enable_validation=True) - print("โ Created result collector with validation enabled") - - # Create a benchmark session - benchmark_id = collector.create_benchmark_session() - print(f"โ Created benchmark session: {benchmark_id}") - - # Test storing valid result - print("\n1. Testing valid result storage:") - valid_result = SolverResult( - solver_name="TestSolver", - problem_name="test_problem", - solve_time=0.005, - status="optimal", - objective_value=2.5 - ) - - try: - result_id = collector.store_result(benchmark_id, valid_result, timeout=10.0) - print(f" โ Stored valid result with ID: {result_id}") - except Exception as e: - print(f" โ Failed to store valid result: {e}") - - # Test storing invalid result (should be rejected or warned) - print("\n2. Testing invalid result storage:") - invalid_result = SolverResult( - solver_name="BadSolver", - problem_name="test_problem", - solve_time=-1.0, # Invalid negative time - status="optimal", - objective_value=2.5 - ) - - try: - result_id = collector.store_result(benchmark_id, invalid_result, timeout=10.0) - print(f" โ Unexpectedly stored invalid result with ID: {result_id}") - except ValueError as e: - print(f" โ Correctly rejected invalid result: {e}") - except Exception as e: - print(f" ? Unexpected error storing invalid result: {e}") - - # Test validation of stored results - print("\n3. Testing stored results validation:") - try: - validation_summary = collector.validate_stored_results(benchmark_id) - print(f" โ Validation completed:") - print(f" Results count: {validation_summary.get('results_count', 0)}") - print(f" Valid results: {validation_summary.get('valid_results', 0)}") - print(f" Error results: {validation_summary.get('error_results', 0)}") - print(f" Warning results: {validation_summary.get('warning_results', 0)}") - - if validation_summary.get('all_errors'): - print(f" Errors found: {validation_summary['all_errors']}") - if validation_summary.get('all_warnings'): - print(f" Warnings found: {validation_summary['all_warnings']}") - - except Exception as e: - print(f" โ Validation failed: {e}") - - print("\nโ Result collector integration tests completed!") - - except Exception as e: - print(f"โ Result collector integration test failed: {e}") - logger.exception("Detailed error:") - - -def create_test_results_with_issues(): - """Create some test results with intentional validation issues.""" - - print("\n" + "=" * 60) - print("TESTING WITH INTENTIONALLY BAD DATA") - print("=" * 60) - - # Create validator - validator = create_default_validator() - - # Create various problematic results - problematic_results = [ - { - 'solver_name': 'SciPy', - 'problem_name': 'good_problem', - 'solve_time': 0.001, - 'status': 'optimal', - 'objective_value': 1.5 - }, - { - 'solver_name': 'TimeoutSolver', - 'problem_name': 'hard_problem', - 'solve_time': 15.0, # Exceeds 10s timeout - 'status': 'timeout', - 'objective_value': None - }, - { - 'solver_name': 'BuggyMath', - 'problem_name': 'numerical_problem', - 'solve_time': 0.001, - 'status': 'optimal', - 'objective_value': float('inf') # Infinite objective - }, - { - 'solver_name': 'BadStatus', - 'problem_name': 'mystery_problem', - 'solve_time': 0.001, - 'status': 'completely_made_up_status', - 'objective_value': 1.0 - }, - { - 'solver_name': 'NegativeTime', - 'problem_name': 'time_problem', - 'solve_time': -0.5, - 'status': 'optimal', - 'objective_value': 1.0 - } - ] - - print(f"Testing {len(problematic_results)} problematic results:") - - for i, result in enumerate(problematic_results): - print(f"\n{i+1}. {result['solver_name']} on {result['problem_name']}:") - - validation = validator.validate_single_result(result, timeout=10.0) - - print(f" Valid: {validation.is_valid}") - print(f" Severity: {validation.severity}") - - if validation.errors: - print(f" Errors: {validation.errors}") - if validation.warnings: - print(f" Warnings: {validation.warnings}") - - # Test batch validation - print(f"\nBatch validation of all {len(problematic_results)} results:") - individual, consistency = validator.validate_batch_results(problematic_results, timeout=10.0) - - valid_count = sum(1 for v in individual if v.is_valid) - error_count = sum(1 for v in individual if v.severity == 'error') - warning_count = sum(1 for v in individual if v.severity == 'warning') - - print(f"Valid: {valid_count}/{len(problematic_results)}") - print(f"Errors: {error_count}") - print(f"Warnings: {warning_count}") - - if consistency.warnings: - print(f"Consistency warnings: {consistency.warnings}") - - print("\nโ Problematic data testing completed!") - - -if __name__ == "__main__": - print("Starting validation system tests...\n") - - try: - # Test basic validation functionality - test_validation_system() - - # Test integration with result collector - test_result_collector_integration() - - # Test with intentionally problematic data - create_test_results_with_issues() - - print("\n" + "=" * 60) - print("ALL VALIDATION TESTS COMPLETED SUCCESSFULLY!") - print("=" * 60) - - except Exception as e: - print(f"\nโ Validation tests failed: {e}") - logger.exception("Detailed error:") - sys.exit(1) \ No newline at end of file diff --git a/tests/performance/benchmark_matlab_loaders.m b/tests/performance/benchmark_matlab_loaders.m deleted file mode 100644 index 7d85b7a..0000000 --- a/tests/performance/benchmark_matlab_loaders.m +++ /dev/null @@ -1,84 +0,0 @@ -function benchmark_matlab_loaders() -% Performance benchmarking for MATLAB data loaders -% -% This function measures the loading performance of different problem sizes -% and file types to ensure acceptable performance for production use. - -fprintf('=== MATLAB Data Loader Performance Benchmark ===\n\n'); - -% Add required paths -addpath(fullfile(pwd, 'scripts/utils/')); -addpath(fullfile(pwd, 'scripts/data_loaders/matlab_octave/')); - -% Performance test cases: [problem_name, expected_type] -performance_cases = { - 'nb', 'Small DIMACS'; - 'nb_L2', 'Medium DIMACS'; - 'bm1', 'Large DIMACS'; - 'arch0', 'Medium SDPLIB'; - 'control1', 'Small SDPLIB' -}; - -fprintf('Performance benchmarks (3 runs each):\n\n'); - -total_time = 0; -problem_count = 0; - -for i = 1:size(performance_cases, 1) - problem_name = performance_cases{i, 1}; - problem_type = performance_cases{i, 2}; - - try - % Get problem information - [info, file_path] = matlab_yaml_reader(problem_name); - - % Measure loading time (3 runs) - times = zeros(3, 1); - - for run = 1:3 - tic; - if strcmp(info.file_type, 'mat') - [A, b, c, K] = mat_loader(file_path); - elseif strcmp(info.file_type, 'dat-s') - [A, b, c, K] = dat_loader(file_path); - end - times(run) = toc; - end - - % Calculate statistics - mean_time = mean(times); - std_time = std(times); - min_time = min(times); - - % Get problem size information - [m, n] = size(A); - density = 100 * nnz(A) / (m * n); - - fprintf('%s (%s):\n', problem_name, problem_type); - fprintf(' Size: %dx%d (%.2f%% dense)\n', m, n, density); - fprintf(' Loading time: %.3f ยฑ %.3f sec (min: %.3f)\n', mean_time, std_time, min_time); - fprintf(' Performance: %.0f vars/sec\n\n', n / mean_time); - - total_time = total_time + mean_time; - problem_count = problem_count + 1; - - catch ME - fprintf('%s (%s): โ Error: %s\n\n', problem_name, problem_type, ME.message); - end -end - -fprintf('Overall Performance Summary:\n'); -fprintf(' Total problems tested: %d\n', problem_count); -fprintf(' Average loading time: %.3f sec\n', total_time / problem_count); -fprintf(' Total benchmark time: %.3f sec\n', total_time); - -% Performance acceptance criteria -if total_time / problem_count < 2.0 % Average < 2 seconds per problem - fprintf(' Performance: โ ACCEPTABLE\n'); -else - fprintf(' Performance: โ ๏ธ SLOW (consider optimization)\n'); -end - -fprintf('\nBenchmark completed successfully!\n'); - -end \ No newline at end of file diff --git a/tests/performance/benchmark_matlab_pipeline.m b/tests/performance/benchmark_matlab_pipeline.m deleted file mode 100644 index 9892cfe..0000000 --- a/tests/performance/benchmark_matlab_pipeline.m +++ /dev/null @@ -1,533 +0,0 @@ -function benchmark_matlab_pipeline() -% Performance benchmarking for MATLAB integration pipeline -% -% This function measures and analyzes performance characteristics of the -% complete MATLAB solver integration pipeline, including: -% - Execution time analysis across different problem sizes -% - Memory usage monitoring -% - Startup overhead measurement -% - Throughput testing with multiple problems -% - Comparative analysis between solvers -% -% Results help validate performance meets production requirements and -% identify optimization opportunities. - -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('MATLAB INTEGRATION PIPELINE PERFORMANCE BENCHMARK\n'); -fprintf('================================================================\n'); -fprintf('Date: %s\n', datestr(now)); -fprintf('MATLAB: %s\n', version); -fprintf('Platform: %s\n', computer); -fprintf('================================================================\n\n'); - -% Add required paths -addpath(genpath('scripts/data_loaders/matlab_octave')); -addpath(genpath('scripts/solvers/matlab_octave')); -addpath(genpath('scripts/utils')); - -% Initialize benchmark data -benchmark_data = struct(); -benchmark_data.total_runs = 0; -benchmark_data.execution_times = []; -benchmark_data.problem_info = {}; -benchmark_data.solver_info = {}; -benchmark_data.memory_usage = []; - -try - % Benchmark 1: Problem Size Analysis - fprintf('Benchmark 1: Problem Size vs Performance Analysis\n'); - benchmark_data = run_problem_size_benchmark(benchmark_data); - - % Benchmark 2: Solver Performance Comparison - fprintf('\nBenchmark 2: SeDuMi vs SDPT3 Performance Comparison\n'); - benchmark_data = run_solver_comparison_benchmark(benchmark_data); - - % Benchmark 3: Startup Overhead Analysis - fprintf('\nBenchmark 3: Startup Overhead and Cold vs Warm Performance\n'); - benchmark_data = run_startup_overhead_benchmark(benchmark_data); - - % Benchmark 4: Throughput Testing - fprintf('\nBenchmark 4: Pipeline Throughput with Multiple Problems\n'); - benchmark_data = run_throughput_benchmark(benchmark_data); - - % Benchmark 5: Memory Usage Analysis - fprintf('\nBenchmark 5: Memory Usage and Resource Management\n'); - benchmark_data = run_memory_benchmark(benchmark_data); - -catch ME - fprintf('CRITICAL ERROR in benchmark suite: %s\n', ME.message); -end - -% Generate comprehensive performance report -generate_performance_report(benchmark_data); - -fprintf('\nPerformance benchmarking completed.\n'); - -end - -function benchmark_data = run_problem_size_benchmark(benchmark_data) -% Benchmark performance across different problem sizes - -fprintf(' Analyzing performance vs problem size...\n'); - -% Test problems of different sizes (if available) -test_problems = { - 'arch0', 'sedumi', 'Small SDP'; % ~174 variables - 'nb', 'sedumi', 'Medium SOCP'; % ~993 variables - 'arch0', 'sdpt3', 'Small SDP'; % Same problem, different solver - 'nb', 'sdpt3', 'Medium SOCP' % Same problem, different solver -}; - -for i = 1:size(test_problems, 1) - problem_name = test_problems{i, 1}; - solver_name = test_problems{i, 2}; - description = test_problems{i, 3}; - - fprintf(' Testing %s with %s (%s)...\n', problem_name, solver_name, description); - - try - % Multiple runs for statistical significance - run_times = []; - for run = 1:3 - result_file = sprintf('/tmp/benchmark_%s_%s_%d_%d.json', ... - problem_name, solver_name, i, run); - - tic; - matlab_runner(problem_name, solver_name, result_file, false); - execution_time = toc; - - run_times(end+1) = execution_time; - - % Validate result - if exist(result_file, 'file') - delete(result_file); - end - end - - avg_time = mean(run_times); - std_time = std(run_times); - - fprintf(' โ Average: %.2fยฑ%.2f seconds (%d runs)\n', avg_time, std_time, length(run_times)); - - % Store data - benchmark_data.total_runs = benchmark_data.total_runs + length(run_times); - benchmark_data.execution_times = [benchmark_data.execution_times, run_times]; - benchmark_data.problem_info{end+1} = struct('name', problem_name, 'description', description, ... - 'avg_time', avg_time, 'std_time', std_time); - benchmark_data.solver_info{end+1} = solver_name; - - catch ME - fprintf(' โ Failed: %s\n', ME.message); - end -end - -end - -function benchmark_data = run_solver_comparison_benchmark(benchmark_data) -% Compare SeDuMi vs SDPT3 performance on same problems - -fprintf(' Comparing solver performance characteristics...\n'); - -comparison_problems = {'arch0', 'nb'}; - -for i = 1:length(comparison_problems) - problem_name = comparison_problems{i}; - - fprintf(' Problem: %s\n', problem_name); - - % Benchmark SeDuMi - sedumi_times = []; - try - for run = 1:3 - result_file = sprintf('/tmp/benchmark_sedumi_%s_%d.json', problem_name, run); - - tic; - matlab_runner(problem_name, 'sedumi', result_file, false); - sedumi_times(end+1) = toc; - - if exist(result_file, 'file') - delete(result_file); - end - end - - sedumi_avg = mean(sedumi_times); - fprintf(' SeDuMi: %.2fยฑ%.2f seconds\n', sedumi_avg, std(sedumi_times)); - - catch ME - fprintf(' SeDuMi failed: %s\n', ME.message); - sedumi_avg = NaN; - end - - % Benchmark SDPT3 - sdpt3_times = []; - try - for run = 1:3 - result_file = sprintf('/tmp/benchmark_sdpt3_%s_%d.json', problem_name, run); - - tic; - matlab_runner(problem_name, 'sdpt3', result_file, false); - sdpt3_times(end+1) = toc; - - if exist(result_file, 'file') - delete(result_file); - end - end - - sdpt3_avg = mean(sdpt3_times); - fprintf(' SDPT3: %.2fยฑ%.2f seconds\n', sdpt3_avg, std(sdpt3_times)); - - catch ME - fprintf(' SDPT3 failed: %s\n', ME.message); - sdpt3_avg = NaN; - end - - % Performance comparison - if ~isnan(sedumi_avg) && ~isnan(sdpt3_avg) - if sedumi_avg < sdpt3_avg - speedup = sdpt3_avg / sedumi_avg; - fprintf(' โ SeDuMi is %.2fx faster than SDPT3\n', speedup); - else - speedup = sedumi_avg / sdpt3_avg; - fprintf(' โ SDPT3 is %.2fx faster than SeDuMi\n', speedup); - end - end - - % Store data - benchmark_data.execution_times = [benchmark_data.execution_times, sedumi_times, sdpt3_times]; - benchmark_data.total_runs = benchmark_data.total_runs + length(sedumi_times) + length(sdpt3_times); -end - -end - -function benchmark_data = run_startup_overhead_benchmark(benchmark_data) -% Analyze MATLAB startup overhead and cold vs warm performance - -fprintf(' Analyzing startup overhead...\n'); - -% Test cold start performance (first run after MATLAB starts) -fprintf(' Cold start performance...\n'); -try - result_file = '/tmp/benchmark_cold_start.json'; - - tic; - matlab_runner('arch0', 'sedumi', result_file, false); - cold_start_time = toc; - - if exist(result_file, 'file') - delete(result_file); - end - - fprintf(' Cold start: %.2f seconds\n', cold_start_time); - -catch ME - fprintf(' Cold start failed: %s\n', ME.message); - cold_start_time = NaN; -end - -% Test warm performance (subsequent runs) -fprintf(' Warm performance (5 consecutive runs)...\n'); -warm_times = []; - -for run = 1:5 - try - result_file = sprintf('/tmp/benchmark_warm_%d.json', run); - - tic; - matlab_runner('arch0', 'sedumi', result_file, false); - warm_times(end+1) = toc; - - if exist(result_file, 'file') - delete(result_file); - end - - catch ME - fprintf(' Warm run %d failed: %s\n', run, ME.message); - end -end - -if ~isempty(warm_times) - warm_avg = mean(warm_times); - warm_std = std(warm_times); - - fprintf(' Warm average: %.2fยฑ%.2f seconds\n', warm_avg, warm_std); - - % Analyze startup overhead - if ~isnan(cold_start_time) - startup_overhead = cold_start_time - warm_avg; - fprintf(' Startup overhead: %.2f seconds\n', startup_overhead); - - if startup_overhead > 10 - fprintf(' โ ๏ธ High startup overhead detected\n'); - else - fprintf(' โ Startup overhead acceptable\n'); - end - end - - % Store data - benchmark_data.execution_times = [benchmark_data.execution_times, warm_times]; - benchmark_data.total_runs = benchmark_data.total_runs + length(warm_times); -end - -end - -function benchmark_data = run_throughput_benchmark(benchmark_data) -% Test pipeline throughput with multiple problems - -fprintf(' Testing pipeline throughput...\n'); - -% Run multiple problems in sequence -test_sequence = {'arch0', 'nb', 'arch0', 'nb'}; % Mix of problems -solvers = {'sedumi', 'sdpt3'}; - -total_start_time = tic; -successful_runs = 0; -total_solver_time = 0; - -for solver_idx = 1:length(solvers) - solver_name = solvers{solver_idx}; - - fprintf(' Throughput test with %s...\n', solver_name); - - solver_start_time = tic; - solver_runs = 0; - - for prob_idx = 1:length(test_sequence) - problem_name = test_sequence{prob_idx}; - - try - result_file = sprintf('/tmp/benchmark_throughput_%s_%s_%d.json', ... - solver_name, problem_name, prob_idx); - - tic; - matlab_runner(problem_name, solver_name, result_file, false); - run_time = toc; - - solver_runs = solver_runs + 1; - successful_runs = successful_runs + 1; - - if exist(result_file, 'file') - delete(result_file); - end - - fprintf(' %s solved in %.2f seconds\n', problem_name, run_time); - - catch ME - fprintf(' %s failed: %s\n', problem_name, ME.message); - end - end - - solver_total_time = toc(solver_start_time); - total_solver_time = total_solver_time + solver_total_time; - - if solver_runs > 0 - avg_time_per_problem = solver_total_time / solver_runs; - throughput = solver_runs / solver_total_time * 3600; % Problems per hour - - fprintf(' %s: %d problems in %.2f seconds (%.2f sec/problem, %.1f problems/hour)\n', ... - solver_name, solver_runs, solver_total_time, avg_time_per_problem, throughput); - end -end - -total_time = toc(total_start_time); - -fprintf(' Overall throughput: %d successful runs in %.2f seconds\n', successful_runs, total_time); -if successful_runs > 0 - overall_throughput = successful_runs / total_time * 3600; - fprintf(' Overall rate: %.1f problems/hour\n', overall_throughput); -end - -% Store data -benchmark_data.total_runs = benchmark_data.total_runs + successful_runs; - -end - -function benchmark_data = run_memory_benchmark(benchmark_data) -% Monitor memory usage during pipeline execution - -fprintf(' Monitoring memory usage...\n'); - -try - % Get initial memory state - initial_memory = memory; - fprintf(' Initial memory: %.1f MB used\n', initial_memory.MemUsedMATLAB / 1024 / 1024); - - % Run a series of problems and monitor memory - test_problems = {'arch0', 'nb'}; - memory_samples = []; - - for i = 1:length(test_problems) - problem_name = test_problems{i}; - - fprintf(' Running %s and monitoring memory...\n', problem_name); - - % Sample memory before - mem_before = memory; - - try - result_file = sprintf('/tmp/benchmark_memory_%s.json', problem_name); - matlab_runner(problem_name, 'sedumi', result_file, false); - - % Sample memory after - mem_after = memory; - - memory_used = (mem_after.MemUsedMATLAB - mem_before.MemUsedMATLAB) / 1024 / 1024; - memory_samples(end+1) = memory_used; - - fprintf(' Memory used: %.1f MB\n', memory_used); - - if exist(result_file, 'file') - delete(result_file); - end - - catch ME - fprintf(' Memory test failed: %s\n', ME.message); - end - - % Force garbage collection - clear variables; - pack; - end - - % Final memory state - final_memory = memory; - memory_growth = (final_memory.MemUsedMATLAB - initial_memory.MemUsedMATLAB) / 1024 / 1024; - - fprintf(' Final memory: %.1f MB used\n', final_memory.MemUsedMATLAB / 1024 / 1024); - fprintf(' Memory growth: %.1f MB\n', memory_growth); - - if memory_growth > 100 % 100 MB growth - fprintf(' โ ๏ธ Significant memory growth detected\n'); - else - fprintf(' โ Memory usage reasonable\n'); - end - - % Store data - benchmark_data.memory_usage = memory_samples; - -catch ME - fprintf(' Memory benchmark failed: %s\n', ME.message); -end - -end - -function generate_performance_report(benchmark_data) -% Generate comprehensive performance analysis report - -fprintf('\n'); -fprintf('================================================================\n'); -fprintf('PERFORMANCE BENCHMARK REPORT\n'); -fprintf('================================================================\n'); - -% Execution time statistics -if ~isempty(benchmark_data.execution_times) - fprintf('\nExecution Time Analysis:\n'); - fprintf(' Total runs: %d\n', benchmark_data.total_runs); - fprintf(' Average time: %.2f seconds\n', mean(benchmark_data.execution_times)); - fprintf(' Median time: %.2f seconds\n', median(benchmark_data.execution_times)); - fprintf(' Min time: %.2f seconds\n', min(benchmark_data.execution_times)); - fprintf(' Max time: %.2f seconds\n', max(benchmark_data.execution_times)); - fprintf(' Std deviation: %.2f seconds\n', std(benchmark_data.execution_times)); - - % Performance classification - avg_time = mean(benchmark_data.execution_times); - if avg_time < 30 - fprintf(' Performance: โ Excellent (< 30 seconds average)\n'); - elseif avg_time < 60 - fprintf(' Performance: โ Good (30-60 seconds average)\n'); - elseif avg_time < 120 - fprintf(' Performance: โ ๏ธ Acceptable (60-120 seconds average)\n'); - else - fprintf(' Performance: โ Slow (> 120 seconds average)\n'); - end -end - -% Memory usage analysis -if ~isempty(benchmark_data.memory_usage) - fprintf('\nMemory Usage Analysis:\n'); - fprintf(' Average memory per run: %.1f MB\n', mean(benchmark_data.memory_usage)); - fprintf(' Peak memory usage: %.1f MB\n', max(benchmark_data.memory_usage)); - fprintf(' Memory efficiency: '); - - avg_memory = mean(benchmark_data.memory_usage); - if avg_memory < 50 - fprintf('โ Excellent (< 50 MB per run)\n'); - elseif avg_memory < 100 - fprintf('โ Good (50-100 MB per run)\n'); - elseif avg_memory < 200 - fprintf('โ ๏ธ Acceptable (100-200 MB per run)\n'); - else - fprintf('โ High (> 200 MB per run)\n'); - end -end - -% Production readiness assessment -fprintf('\nProduction Readiness Assessment:\n'); - -readiness_score = 0; -total_criteria = 4; - -% Criterion 1: Average execution time -if ~isempty(benchmark_data.execution_times) - avg_time = mean(benchmark_data.execution_times); - if avg_time < 120 % 2 minutes - fprintf(' โ Execution time acceptable\n'); - readiness_score = readiness_score + 1; - else - fprintf(' โ Execution time too slow\n'); - end -else - fprintf(' โ ๏ธ No execution time data\n'); -end - -% Criterion 2: Performance consistency -if ~isempty(benchmark_data.execution_times) && length(benchmark_data.execution_times) > 1 - cv = std(benchmark_data.execution_times) / mean(benchmark_data.execution_times); - if cv < 0.5 % Coefficient of variation < 50% - fprintf(' โ Performance consistency good\n'); - readiness_score = readiness_score + 1; - else - fprintf(' โ Performance inconsistent\n'); - end -else - fprintf(' โ ๏ธ Insufficient data for consistency analysis\n'); -end - -% Criterion 3: Memory efficiency -if ~isempty(benchmark_data.memory_usage) - avg_memory = mean(benchmark_data.memory_usage); - if avg_memory < 200 % Less than 200 MB per run - fprintf(' โ Memory usage acceptable\n'); - readiness_score = readiness_score + 1; - else - fprintf(' โ Memory usage too high\n'); - end -else - fprintf(' โ ๏ธ No memory usage data\n'); - readiness_score = readiness_score + 1; % Give benefit of doubt -end - -% Criterion 4: Test completion rate -if benchmark_data.total_runs > 0 - fprintf(' โ Pipeline execution successful\n'); - readiness_score = readiness_score + 1; -else - fprintf(' โ Pipeline execution failed\n'); -end - -% Final assessment -readiness_percentage = (readiness_score / total_criteria) * 100; -fprintf('\nOverall Production Readiness: %.0f%% (%d/%d criteria met)\n', ... - readiness_percentage, readiness_score, total_criteria); - -if readiness_percentage >= 75 - fprintf('๐ READY FOR PRODUCTION - Performance meets requirements\n'); -elseif readiness_percentage >= 50 - fprintf('โ ๏ธ CONDITIONALLY READY - Some performance issues to address\n'); -else - fprintf('โ NOT READY - Significant performance improvements needed\n'); -end - -fprintf('================================================================\n'); - -end \ No newline at end of file diff --git a/tests/performance/benchmark_matlab_vs_python.py b/tests/performance/benchmark_matlab_vs_python.py deleted file mode 100644 index 0d1141c..0000000 --- a/tests/performance/benchmark_matlab_vs_python.py +++ /dev/null @@ -1,318 +0,0 @@ -#!/usr/bin/env python3 -""" -Performance comparison test between MATLAB and Python solvers. - -This test compares execution times, solver creation overhead, and success rates -between MATLAB solvers (SeDuMi, SDPT3) and equivalent Python solvers. -""" - -import sys -import time -import tempfile -from pathlib import Path -from typing import Dict, List, Any -import json - -# Add project root to path -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.benchmark.runner import BenchmarkRunner -from scripts.database.database_manager import DatabaseManager - - -class MATLABPythonPerformanceComparison: - """Performance comparison framework for MATLAB vs Python solvers.""" - - def __init__(self): - """Initialize comparison framework.""" - # Use temporary database for testing - self.temp_db = tempfile.NamedTemporaryFile(suffix='.db', delete=False) - self.temp_db.close() - - self.db_manager = DatabaseManager(db_path=self.temp_db.name) - self.runner = BenchmarkRunner(database_manager=self.db_manager, dry_run=True) - - # Performance data storage - self.performance_data = { - 'solver_creation_times': {}, - 'problem_execution_times': {}, - 'success_rates': {}, - 'memory_usage': {} - } - - print(f"Initialized performance comparison with temp DB: {self.temp_db.name}") - - def cleanup(self): - """Clean up temporary resources.""" - if hasattr(self.db_manager, 'close'): - self.db_manager.close() - Path(self.temp_db.name).unlink(missing_ok=True) - - def measure_solver_creation_times(self) -> Dict[str, float]: - """Measure solver creation overhead for different solver types.""" - print("\n=== Measuring Solver Creation Times ===") - - # Test solvers - MATLAB vs Python equivalents - test_solvers = { - # MATLAB solvers - 'matlab_sedumi': 'SeDuMi (MATLAB)', - 'matlab_sdpt3': 'SDPT3 (MATLAB)', - - # Python equivalents for comparison - 'cvxpy_clarabel': 'CLARABEL (Python)', - 'cvxpy_scs': 'SCS (Python)', - 'cvxpy_ecos': 'ECOS (Python)' - } - - creation_times = {} - - for solver_name, display_name in test_solvers.items(): - try: - # Measure creation time - start_time = time.time() - solver = self.runner.create_solver(solver_name) - creation_time = time.time() - start_time - - creation_times[solver_name] = creation_time - print(f" {display_name}: {creation_time:.3f}s") - - except Exception as e: - creation_times[solver_name] = -1 # Mark as failed - print(f" {display_name}: FAILED ({e})") - - self.performance_data['solver_creation_times'] = creation_times - return creation_times - - def analyze_solver_availability(self) -> Dict[str, Any]: - """Analyze solver availability and success rates.""" - print("\n=== Analyzing Solver Availability ===") - - available_solvers = self.runner.get_available_solvers() - - matlab_solvers = [s for s in available_solvers if s.startswith('matlab_')] - python_solvers = [s for s in available_solvers if not s.startswith('matlab_')] - - availability_data = { - 'total_solvers': len(available_solvers), - 'matlab_solvers': len(matlab_solvers), - 'python_solvers': len(python_solvers), - 'matlab_solver_list': matlab_solvers, - 'python_solver_list': python_solvers[:5] # First 5 for display - } - - print(f" Total available solvers: {availability_data['total_solvers']}") - print(f" MATLAB solvers: {availability_data['matlab_solvers']} - {matlab_solvers}") - print(f" Python solvers: {availability_data['python_solvers']} - {python_solvers[:3]}...") - - self.performance_data['availability'] = availability_data - return availability_data - - def test_problem_compatibility(self) -> Dict[str, Any]: - """Test problem compatibility across solver types.""" - print("\n=== Testing Problem Compatibility ===") - - # Get sample problems - problems = self.runner.get_available_problems() - test_problems = problems[:5] # Test with first 5 problems - - compatibility_data = { - 'problems_tested': len(test_problems), - 'matlab_compatibility': {}, - 'python_compatibility': {} - } - - # Test MATLAB solver compatibility - try: - sedumi = self.runner.create_solver('matlab_sedumi') - - for problem_name in test_problems: - try: - problem_config = self.runner.problem_registry['problem_libraries'][problem_name] - problem_data = self.runner.load_problem(problem_name, problem_config) - - compatible = sedumi.validate_problem_compatibility(problem_data) - compatibility_data['matlab_compatibility'][problem_name] = compatible - - except Exception: - compatibility_data['matlab_compatibility'][problem_name] = False - - matlab_compatible = sum(compatibility_data['matlab_compatibility'].values()) - print(f" MATLAB (SeDuMi) compatibility: {matlab_compatible}/{len(test_problems)} problems") - - except Exception as e: - print(f" MATLAB compatibility test failed: {e}") - - # Test Python solver compatibility (assume most are compatible) - try: - clarabel = self.runner.create_solver('cvxpy_clarabel') - - for problem_name in test_problems: - try: - problem_config = self.runner.problem_registry['problem_libraries'][problem_name] - problem_data = self.runner.load_problem(problem_name, problem_config) - - compatible = clarabel.validate_problem_compatibility(problem_data) - compatibility_data['python_compatibility'][problem_name] = compatible - - except Exception: - compatibility_data['python_compatibility'][problem_name] = False - - python_compatible = sum(compatibility_data['python_compatibility'].values()) - print(f" Python (CLARABEL) compatibility: {python_compatible}/{len(test_problems)} problems") - - except Exception as e: - print(f" Python compatibility test failed: {e}") - - self.performance_data['compatibility'] = compatibility_data - return compatibility_data - - def simulate_execution_performance(self) -> Dict[str, Any]: - """Simulate execution performance comparison.""" - print("\n=== Simulating Execution Performance ===") - - # Based on our earlier real tests, simulate realistic performance data - performance_simulation = { - 'solver_creation_overhead': { - 'matlab_average': 8.5, # Average MATLAB solver creation time - 'python_average': 0.02, # Average Python solver creation time - 'matlab_std': 2.1, - 'python_std': 0.005 - }, - 'problem_solving_simulation': { - 'nb_problem_matlab_sedumi': { - 'status': 'ERROR', - 'time': 5.5, - 'reason': 'headless_environment' - }, - 'nb_problem_python_clarabel': { - 'status': 'OPTIMAL', - 'time': 25.4, - 'objective': -5.070309e-02 - } - }, - 'expected_characteristics': { - 'matlab_startup_overhead': 'High (~6-12s per solver)', - 'matlab_execution_speed': 'Fast (when working)', - 'python_startup_overhead': 'Low (~0.01-0.05s per solver)', - 'python_execution_speed': 'Variable by backend', - 'matlab_environment_sensitivity': 'High (GUI dependencies)', - 'python_environment_robustness': 'High (pure computation)' - } - } - - print(" Performance characteristics:") - print(f" MATLAB creation overhead: {performance_simulation['solver_creation_overhead']['matlab_average']:.1f}s avg") - print(f" Python creation overhead: {performance_simulation['solver_creation_overhead']['python_average']:.3f}s avg") - print(f" MATLAB environment sensitivity: High") - print(f" Python environment robustness: High") - - self.performance_data['execution_simulation'] = performance_simulation - return performance_simulation - - def generate_performance_report(self) -> str: - """Generate comprehensive performance comparison report.""" - print("\n=== Generating Performance Report ===") - - report = { - 'summary': { - 'test_timestamp': time.strftime('%Y-%m-%d %H:%M:%S'), - 'total_solvers_tested': len(self.performance_data.get('solver_creation_times', {})), - 'matlab_solvers_available': len([s for s in self.performance_data.get('availability', {}).get('matlab_solver_list', [])]), - 'python_solvers_available': self.performance_data.get('availability', {}).get('python_solvers', 0) - }, - 'performance_data': self.performance_data - } - - # Save report to file - report_path = Path('performance_comparison_report.json') - with open(report_path, 'w') as f: - json.dump(report, f, indent=2) - - print(f" Performance report saved: {report_path}") - - # Generate text summary - summary = f""" -MATLAB vs Python Solver Performance Comparison Report -==================================================== - -Test Summary: -- Timestamp: {report['summary']['test_timestamp']} -- Total solvers tested: {report['summary']['total_solvers_tested']} -- MATLAB solvers available: {report['summary']['matlab_solvers_available']} -- Python solvers available: {report['summary']['python_solvers_available']} - -Key Findings: -1. Solver Creation Overhead: - - MATLAB: High startup cost (~6-12s per solver) due to verification - - Python: Low startup cost (~0.01-0.05s per solver) - -2. Environment Compatibility: - - MATLAB: Sensitive to headless environments, requires GUI components - - Python: Robust in all environments, pure computational backends - -3. Problem Compatibility: - - Both solver types handle SDP and SOCP problems - - MATLAB solvers have specialized optimization for these problem types - - Python solvers offer broader backend options and problem type support - -4. Production Considerations: - - MATLAB: Best for specialized SDP/SOCP when environment supports it - - Python: Best for general use, CI/CD, and headless environments - - Hybrid approach recommended: Python as primary, MATLAB as specialized option - -Recommendation: Use Python solvers for primary benchmarking with MATLAB as -optional specialized solvers for SDP/SOCP problems in supported environments. -""" - - print(summary) - return summary - - def run_complete_comparison(self) -> Dict[str, Any]: - """Run complete performance comparison suite.""" - print("=" * 70) - print("MATLAB vs PYTHON SOLVER PERFORMANCE COMPARISON") - print("=" * 70) - - try: - # Run all comparison tests - self.measure_solver_creation_times() - self.analyze_solver_availability() - self.test_problem_compatibility() - self.simulate_execution_performance() - - # Generate report - self.generate_performance_report() - - print("\n" + "=" * 70) - print("PERFORMANCE COMPARISON COMPLETED SUCCESSFULLY") - print("=" * 70) - - return self.performance_data - - except Exception as e: - print(f"\nPerformance comparison failed: {e}") - raise - finally: - self.cleanup() - - -def main(): - """Run MATLAB vs Python performance comparison.""" - comparison = MATLABPythonPerformanceComparison() - - try: - results = comparison.run_complete_comparison() - print("\nโ Performance comparison completed successfully!") - return True - - except Exception as e: - print(f"\nโ Performance comparison failed: {e}") - return False - finally: - comparison.cleanup() - - -if __name__ == '__main__': - success = main() - sys.exit(0 if success else 1) \ No newline at end of file diff --git a/tests/test_matlab_solver_enhanced.py b/tests/test_matlab_solver_enhanced.py deleted file mode 100644 index bc98e35..0000000 --- a/tests/test_matlab_solver_enhanced.py +++ /dev/null @@ -1,207 +0,0 @@ -#!/usr/bin/env python3 -""" -Quick test for enhanced MATLAB solver CLI functionality. - -This script tests the enhanced MATLAB solver with improved CLI handling, -error parsing, and command construction. -""" - -import os -import sys -import time -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.solvers.matlab_octave.matlab_runner import MatlabSolver -from scripts.data_loaders.problem_loader import ProblemData -from scripts.utils.logger import get_logger - -logger = get_logger("test_matlab_solver_enhanced") - - -class MockProblemData: - """Mock problem data for testing.""" - def __init__(self, name: str): - self.name = name - - -def test_matlab_solver_initialization(): - """Test MatlabSolver initialization and MATLAB verification.""" - print("\nTesting MatlabSolver initialization...") - - try: - solver = MatlabSolver('sedumi') - print(f"โ SeDuMi solver initialized successfully: {solver.solver_name}") - - solver2 = MatlabSolver('sdpt3') - print(f"โ SDPT3 solver initialized successfully: {solver2.solver_name}") - - return True - - except Exception as e: - print(f"โ MATLAB solver initialization failed: {e}") - return False - - -def test_command_construction(): - """Test command construction with various inputs.""" - print("\nTesting command construction...") - - try: - solver = MatlabSolver('sedumi') - - # Test normal inputs - cmd = solver._construct_matlab_command('test_problem', '/tmp/result.json') - expected_parts = ['matlab', '-batch', "matlab_runner('test_problem', 'sedumi', '/tmp/result.json')"] - print(f"โ Normal command construction: {' '.join(cmd)}") - - # Test inputs with single quotes (should be escaped) - cmd = solver._construct_matlab_command("prob'lem", "/tmp/res'ult.json") - print(f"โ Escaped command construction: {' '.join(cmd)}") - - # Test invalid inputs - try: - cmd = solver._construct_matlab_command("", "/tmp/result.json") - print("โ Should have failed with empty problem name") - return False - except ValueError: - print("โ Correctly rejected empty problem name") - - return True - - except Exception as e: - print(f"โ Command construction test failed: {e}") - return False - - -def test_error_parsing(): - """Test MATLAB error message parsing.""" - print("\nTesting error message parsing...") - - try: - solver = MatlabSolver('sedumi') - - # Test various error messages - test_cases = [ - ("Error: Undefined function 'nonexistent' for input arguments of type 'double'.", - "Error: Undefined function"), - ("License error: Cannot find license file.", "License error"), - ("Some random output\nError: Something went wrong\nMore output", "Error: Something went wrong"), - ("No clear error pattern here", "No clear error"), - ] - - for stderr, expected_keyword in test_cases: - parsed = solver._parse_matlab_error(stderr, "") - print(f"โ Parsed '{stderr[:50]}...' -> '{parsed}'") - if "error" not in expected_keyword.lower(): - # For non-error cases, just check it doesn't crash - continue - - return True - - except Exception as e: - print(f"โ Error parsing test failed: {e}") - return False - - -def test_solver_integration(): - """Test solver with mock problem data.""" - print("\nTesting solver integration with mock data...") - - try: - solver = MatlabSolver('sedumi', timeout=30) - - # Create mock problem data - mock_problem = MockProblemData("nonexistent_problem") - - # This should fail gracefully since the problem doesn't exist - start_time = time.time() - result = solver.solve(mock_problem, timeout=30) - execution_time = time.time() - start_time - - print(f"โ Solver execution completed in {execution_time:.2f}s") - print(f"โ Result status: {result.status}") - print(f"โ Solver name: {result.solver_name}") - print(f"โ Solve time: {result.solve_time:.2f}s") - - # Should be an error result since problem doesn't exist - if result.status == "ERROR": - print("โ Correctly handled nonexistent problem with error status") - else: - print(f"? Unexpected status for nonexistent problem: {result.status}") - - return True - - except Exception as e: - print(f"โ Solver integration test failed: {e}") - return False - - -def test_temp_file_integration(): - """Test temporary file management integration.""" - print("\nTesting temporary file management...") - - try: - solver = MatlabSolver('sedumi') - - # Get temp file stats - stats = solver.get_temp_file_stats() - print(f"โ Temp file stats: {stats['total_files']} files, {stats['total_size_bytes']} bytes") - print(f"โ Temp directory: {stats['temp_directory']}") - - # Test cleanup - cleaned = solver.cleanup_orphaned_files() - print(f"โ Cleaned up {cleaned} orphaned files") - - return True - - except Exception as e: - print(f"โ Temp file integration test failed: {e}") - return False - - -def main(): - """Run enhanced MATLAB solver tests.""" - print("=" * 60) - print("ENHANCED MATLAB SOLVER CLI VALIDATION") - print("=" * 60) - - tests = [ - test_matlab_solver_initialization, - test_command_construction, - test_error_parsing, - test_temp_file_integration, - test_solver_integration, # This one takes longest, so run it last - ] - - passed = 0 - total = len(tests) - - for test_func in tests: - try: - if test_func(): - passed += 1 - else: - print(f"โ {test_func.__name__} failed") - except Exception as e: - print(f"โ {test_func.__name__} crashed: {e}") - - print("\n" + "=" * 60) - print(f"ENHANCED MATLAB SOLVER TEST SUMMARY") - print("=" * 60) - print(f"Passed: {passed}/{total}") - print(f"Success Rate: {100 * passed / total:.1f}%") - - if passed >= total * 0.8: # 80% success rate - print("โ Enhanced MATLAB solver CLI validation successful!") - return 0 - else: - print("โ Enhanced MATLAB solver CLI validation had issues") - return 1 - - -if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file diff --git a/tests/test_temp_file_management.py b/tests/test_temp_file_management.py deleted file mode 100644 index d8abf31..0000000 --- a/tests/test_temp_file_management.py +++ /dev/null @@ -1,228 +0,0 @@ -#!/usr/bin/env python3 -""" -Test script for enhanced temporary file management system. - -This script tests the temporary file management functionality implemented for Task 12. -""" - -import os -import sys -import time -import tempfile -import json -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.utils.temp_file_manager import TempFileManager, temp_file_context -from scripts.utils.logger import get_logger - -logger = get_logger("temp_file_test") - - -def test_basic_temp_file_generation(): - """Test basic temporary file generation.""" - print("Testing basic temporary file generation...") - - manager = TempFileManager("test_prefix") - - # Generate unique filenames - file1 = manager.generate_unique_filename(".json") - file2 = manager.generate_unique_filename(".json") - - # Should be different - assert file1 != file2, "Generated filenames should be unique" - - # Should contain prefix - assert "test_prefix" in os.path.basename(file1), "Filename should contain prefix" - assert file1.endswith(".json"), "Filename should have correct extension" - - print(f"โ Generated unique files: {os.path.basename(file1)}, {os.path.basename(file2)}") - - -def test_temp_file_creation_and_cleanup(): - """Test temporary file creation and cleanup.""" - print("\nTesting temporary file creation and cleanup...") - - manager = TempFileManager("test_create") - - # Create temp file - temp_file = manager.create_temp_file(".json") - assert os.path.exists(temp_file), "Created temp file should exist" - - # Write some test data - test_data = {"test": "data", "timestamp": time.time()} - with open(temp_file, 'w') as f: - json.dump(test_data, f) - - # Verify data - with open(temp_file, 'r') as f: - loaded_data = json.load(f) - assert loaded_data["test"] == "data", "Data should be written and read correctly" - - # Cleanup - cleanup_success = manager.cleanup_file(temp_file) - assert cleanup_success, "Cleanup should succeed" - assert not os.path.exists(temp_file), "File should be removed after cleanup" - - print(f"โ Created, used, and cleaned up temp file: {os.path.basename(temp_file)}") - - -def test_context_manager(): - """Test context manager for automatic cleanup.""" - print("\nTesting context manager for automatic cleanup...") - - temp_file_path = None - - # Use context manager - with temp_file_context(".test") as temp_file: - temp_file_path = temp_file - assert os.path.exists(temp_file), "Temp file should exist within context" - - # Write test data - with open(temp_file, 'w') as f: - f.write("test data for context manager") - - # File should be cleaned up automatically - assert not os.path.exists(temp_file_path), "Temp file should be cleaned up after context" - - print(f"โ Context manager automatically cleaned up: {os.path.basename(temp_file_path)}") - - -def test_orphaned_file_cleanup(): - """Test orphaned file cleanup functionality.""" - print("\nTesting orphaned file cleanup...") - - manager = TempFileManager("test_orphan", cleanup_age_hours=0) # Clean up immediately - - # Create some "old" temp files - old_files = [] - for i in range(3): - temp_file = manager.create_temp_file(".old") - with open(temp_file, 'w') as f: - f.write(f"old file {i}") - old_files.append(temp_file) - - # All should exist - for temp_file in old_files: - assert os.path.exists(temp_file), "Old files should exist before cleanup" - - # Sleep a bit to ensure files are "old" (since we set cleanup_age_hours=0) - time.sleep(0.1) - - # Cleanup orphaned files - cleaned_count = manager.cleanup_orphaned_files() - - # Files should be cleaned up - for temp_file in old_files: - assert not os.path.exists(temp_file), "Old files should be cleaned up" - - assert cleaned_count == 3, f"Should have cleaned 3 files, got {cleaned_count}" - - print(f"โ Cleaned up {cleaned_count} orphaned files") - - -def test_concurrent_file_creation(): - """Test concurrent file creation doesn't cause conflicts.""" - print("\nTesting concurrent file creation...") - - manager = TempFileManager("test_concurrent") - - # Create multiple files rapidly - temp_files = [] - for i in range(10): - temp_file = manager.create_temp_file(".concurrent") - temp_files.append(temp_file) - - # Write unique data - with open(temp_file, 'w') as f: - f.write(f"concurrent file {i}") - - # All files should exist and be unique - assert len(set(temp_files)) == 10, "All temp files should be unique" - - for temp_file in temp_files: - assert os.path.exists(temp_file), "All temp files should exist" - - # Cleanup all files - for temp_file in temp_files: - manager.cleanup_file(temp_file) - - print(f"โ Created {len(temp_files)} concurrent files without conflicts") - - -def test_temp_file_stats(): - """Test temporary file statistics.""" - print("\nTesting temporary file statistics...") - - manager = TempFileManager("test_stats") - - # Create some temp files - temp_files = [] - for i in range(3): - temp_file = manager.create_temp_file(".stats") - with open(temp_file, 'w') as f: - f.write(f"stats file {i}" * 100) # Make files different sizes - temp_files.append(temp_file) - - # Get stats - stats = manager.get_temp_file_stats() - - assert stats['total_files'] >= 3, "Should count at least our 3 files" - assert stats['total_size_bytes'] > 0, "Should have positive total size" - assert 'temp_directory' in stats, "Should include temp directory" - - print(f"โ Temp file stats: {stats['total_files']} files, {stats['total_size_bytes']} bytes") - - # Cleanup - for temp_file in temp_files: - manager.cleanup_file(temp_file) - - -def test_error_handling(): - """Test error handling scenarios.""" - print("\nTesting error handling scenarios...") - - manager = TempFileManager("test_error") - - # Test cleanup of non-existent file - cleanup_success = manager.cleanup_file("/non/existent/file.json") - assert cleanup_success, "Cleanup of non-existent file should return True" - - # Test stats with empty directory pattern - stats = manager.get_temp_file_stats() - assert isinstance(stats, dict), "Stats should return dict even with no files" - - print("โ Error handling works correctly") - - -def main(): - """Run all temporary file management tests.""" - print("=" * 60) - print("TEMPORARY FILE MANAGEMENT SYSTEM TESTS") - print("=" * 60) - - try: - test_basic_temp_file_generation() - test_temp_file_creation_and_cleanup() - test_context_manager() - test_orphaned_file_cleanup() - test_concurrent_file_creation() - test_temp_file_stats() - test_error_handling() - - print("\n" + "=" * 60) - print("โ ALL TESTS PASSED - Temporary file management system working correctly!") - print("=" * 60) - - except Exception as e: - print(f"\nโ TEST FAILED: {e}") - import traceback - traceback.print_exc() - sys.exit(1) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tests/test_utils/__init__.py b/tests/test_utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_utils/matlab_execution_tester.py b/tests/test_utils/matlab_execution_tester.py deleted file mode 100644 index 381a310..0000000 --- a/tests/test_utils/matlab_execution_tester.py +++ /dev/null @@ -1,533 +0,0 @@ -""" -MATLAB Command-Line Execution Testing Utility. - -This module provides utilities for testing and validating MATLAB command-line execution -from Python. It focuses on reliability, timeout handling, and error capture for the -benchmarking system. -""" - -import os -import sys -import subprocess -import time -import json -from pathlib import Path -from typing import Optional, Dict, Any, List, Tuple - -# Add project root to path for imports -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.utils.logger import get_logger - -logger = get_logger("matlab_execution_tester") - - -class MatlabExecutionTester: - """ - Utility class for testing MATLAB command-line execution reliability. - """ - - def __init__(self, matlab_executable: str = 'matlab', working_directory: Optional[str] = None): - """ - Initialize MATLAB execution tester. - - Args: - matlab_executable: Path to MATLAB executable - working_directory: Working directory for MATLAB execution - """ - self.matlab_executable = matlab_executable - self.working_directory = working_directory or str(project_root) - self.execution_stats = { - 'total_tests': 0, - 'successful_tests': 0, - 'failed_tests': 0, - 'timeout_tests': 0, - 'startup_times': [] - } - - logger.info(f"Initialized MATLAB execution tester with executable: {matlab_executable}") - - def test_basic_execution(self, timeout: float = 30) -> Tuple[bool, Dict[str, Any]]: - """ - Test basic MATLAB execution with simple command. - - Args: - timeout: Timeout in seconds - - Returns: - Tuple of (success, result_info) - """ - logger.info("Testing basic MATLAB execution...") - - start_time = time.time() - cmd = [self.matlab_executable, '-batch', 'disp("MATLAB_OK")'] - - try: - result = subprocess.run( - cmd, - capture_output=True, - text=True, - timeout=timeout, - cwd=self.working_directory - ) - - execution_time = time.time() - start_time - self.execution_stats['startup_times'].append(execution_time) - - success = (result.returncode == 0 and 'MATLAB_OK' in result.stdout) - - result_info = { - 'command': ' '.join(cmd), - 'returncode': result.returncode, - 'stdout': result.stdout.strip(), - 'stderr': result.stderr.strip(), - 'execution_time': execution_time, - 'success': success - } - - if success: - logger.info(f"โ Basic execution successful in {execution_time:.2f}s") - self.execution_stats['successful_tests'] += 1 - else: - logger.warning(f"โ Basic execution failed: {result.stderr}") - self.execution_stats['failed_tests'] += 1 - - self.execution_stats['total_tests'] += 1 - return success, result_info - - except subprocess.TimeoutExpired: - execution_time = time.time() - start_time - logger.error(f"โ Basic execution timed out after {execution_time:.2f}s") - self.execution_stats['timeout_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'error': 'timeout', - 'execution_time': execution_time, - 'timeout_duration': timeout, - 'success': False - } - - except Exception as e: - execution_time = time.time() - start_time - logger.error(f"โ Basic execution failed with exception: {e}") - self.execution_stats['failed_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'error': str(e), - 'execution_time': execution_time, - 'success': False - } - - def test_matlab_runner_execution(self, problem_name: str = 'arch0', - solver_name: str = 'sedumi', - timeout: float = 60) -> Tuple[bool, Dict[str, Any]]: - """ - Test execution of matlab_runner.m with actual parameters. - - Args: - problem_name: Name of problem to test with (use a real problem name) - solver_name: Name of solver to test with - timeout: Timeout in seconds - - Returns: - Tuple of (success, result_info) - """ - logger.info(f"Testing matlab_runner execution with {problem_name}, {solver_name}...") - - # Create a temporary result file for testing - temp_result_file = f"/tmp/test_matlab_result_{int(time.time())}.json" - - start_time = time.time() - # Add path setup to ensure matlab_runner is found - matlab_command = f"addpath(genpath('.')); matlab_runner('{problem_name}', '{solver_name}', '{temp_result_file}')" - cmd = [self.matlab_executable, '-batch', matlab_command] - - try: - result = subprocess.run( - cmd, - capture_output=True, - text=True, - timeout=timeout, - cwd=self.working_directory - ) - - execution_time = time.time() - start_time - - # Check if result file was created (even if with error content) - result_file_created = os.path.exists(temp_result_file) - - result_info = { - 'command': matlab_command, - 'full_cmd': ' '.join(cmd), - 'returncode': result.returncode, - 'stdout': result.stdout.strip(), - 'stderr': result.stderr.strip(), - 'execution_time': execution_time, - 'result_file_created': result_file_created, - 'temp_result_file': temp_result_file - } - - # For this test, we consider it successful if: - # 1. MATLAB executed without crashing (even if matlab_runner fails) - # 2. We got some reasonable output or error message - # 3. The execution completed within timeout - - # Check if MATLAB ran successfully (return code 0 or 1 both OK for this test) - matlab_executed = result.returncode in [0, 1] # 0 = success, 1 = MATLAB error but executed - - # Read result file if it exists - if result_file_created: - try: - with open(temp_result_file, 'r') as f: - result_content = json.load(f) - result_info['result_content'] = result_content - logger.info(f"โ matlab_runner created JSON result in {execution_time:.2f}s") - - except json.JSONDecodeError as e: - result_info['json_error'] = str(e) - logger.warning(f"โ matlab_runner produced invalid JSON: {e}") - - # Success criteria: MATLAB executed and either created result file OR gave meaningful error - if matlab_executed: - if result_file_created: - success = True - logger.info(f"โ matlab_runner execution successful - result file created") - else: - # Check if we got a meaningful error (matlab_runner not found, etc.) - if 'matlab_runner' in result.stderr or 'Undefined function' in result.stderr: - success = True # This is expected if matlab_runner.m is not in path - logger.info(f"โ matlab_runner execution test successful - got expected error about missing function") - else: - success = False - logger.warning(f"โ matlab_runner execution failed unexpectedly") - else: - success = False - logger.warning(f"โ MATLAB execution failed completely") - - result_info['test_success'] = success - - # Cleanup temp file - try: - if os.path.exists(temp_result_file): - os.remove(temp_result_file) - except: - pass - - if success: - self.execution_stats['successful_tests'] += 1 - else: - self.execution_stats['failed_tests'] += 1 - - self.execution_stats['total_tests'] += 1 - return success, result_info - - except subprocess.TimeoutExpired: - execution_time = time.time() - start_time - logger.error(f"โ matlab_runner execution timed out after {execution_time:.2f}s") - - # Cleanup temp file - try: - if os.path.exists(temp_result_file): - os.remove(temp_result_file) - except: - pass - - self.execution_stats['timeout_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': matlab_command, - 'error': 'timeout', - 'execution_time': execution_time, - 'timeout_duration': timeout, - 'success': False - } - - except Exception as e: - execution_time = time.time() - start_time - logger.error(f"โ matlab_runner execution failed: {e}") - - # Cleanup temp file - try: - if os.path.exists(temp_result_file): - os.remove(temp_result_file) - except: - pass - - self.execution_stats['failed_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': matlab_command, - 'error': str(e), - 'execution_time': execution_time, - 'success': False - } - - def test_timeout_handling(self, timeout_duration: float = 5) -> Tuple[bool, Dict[str, Any]]: - """ - Test timeout handling with a deliberately long-running command. - - Args: - timeout_duration: Timeout to test with - - Returns: - Tuple of (timeout_worked, result_info) - """ - logger.info(f"Testing timeout handling with {timeout_duration}s timeout...") - - start_time = time.time() - # Command that will run longer than timeout - cmd = [self.matlab_executable, '-batch', 'pause(10); disp("Should not see this")'] - - try: - result = subprocess.run( - cmd, - capture_output=True, - text=True, - timeout=timeout_duration, - cwd=self.working_directory - ) - - execution_time = time.time() - start_time - - # If we get here, timeout didn't work as expected - logger.warning(f"โ Timeout test failed - command completed in {execution_time:.2f}s") - self.execution_stats['failed_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'returncode': result.returncode, - 'stdout': result.stdout.strip(), - 'stderr': result.stderr.strip(), - 'execution_time': execution_time, - 'expected_timeout': True, - 'actually_timed_out': False, - 'success': False - } - - except subprocess.TimeoutExpired: - execution_time = time.time() - start_time - - # This is what we expect - timeout worked correctly - timeout_worked = abs(execution_time - timeout_duration) < 2.0 # Within 2 seconds - - if timeout_worked: - logger.info(f"โ Timeout handling working correctly - timed out at {execution_time:.2f}s") - self.execution_stats['successful_tests'] += 1 - else: - logger.warning(f"โ Timeout timing inaccurate - expected ~{timeout_duration}s, got {execution_time:.2f}s") - self.execution_stats['failed_tests'] += 1 - - self.execution_stats['total_tests'] += 1 - - return timeout_worked, { - 'command': ' '.join(cmd), - 'error': 'timeout_as_expected', - 'execution_time': execution_time, - 'timeout_duration': timeout_duration, - 'expected_timeout': True, - 'actually_timed_out': True, - 'timeout_accuracy': abs(execution_time - timeout_duration), - 'success': timeout_worked - } - - except Exception as e: - execution_time = time.time() - start_time - logger.error(f"โ Timeout test failed with exception: {e}") - self.execution_stats['failed_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'error': str(e), - 'execution_time': execution_time, - 'expected_timeout': True, - 'actually_timed_out': False, - 'success': False - } - - def test_error_handling(self) -> Tuple[bool, Dict[str, Any]]: - """ - Test error handling with invalid MATLAB command. - - Returns: - Tuple of (error_handled, result_info) - """ - logger.info("Testing error handling with invalid command...") - - start_time = time.time() - cmd = [self.matlab_executable, '-batch', 'invalid_function_call_that_should_fail()'] - - try: - result = subprocess.run( - cmd, - capture_output=True, - text=True, - timeout=30, - cwd=self.working_directory - ) - - execution_time = time.time() - start_time - - # We expect this to fail with non-zero return code - error_handled = (result.returncode != 0 and - ('error' in result.stderr.lower() or - 'undefined' in result.stderr.lower() or - len(result.stderr) > 0)) - - result_info = { - 'command': ' '.join(cmd), - 'returncode': result.returncode, - 'stdout': result.stdout.strip(), - 'stderr': result.stderr.strip(), - 'execution_time': execution_time, - 'error_properly_reported': error_handled, - 'success': error_handled - } - - if error_handled: - logger.info(f"โ Error handling working - error properly reported in {execution_time:.2f}s") - self.execution_stats['successful_tests'] += 1 - else: - logger.warning(f"โ Error handling failed - no error reported for invalid command") - self.execution_stats['failed_tests'] += 1 - - self.execution_stats['total_tests'] += 1 - return error_handled, result_info - - except subprocess.TimeoutExpired: - execution_time = time.time() - start_time - logger.warning(f"โ Error test timed out - took too long to fail") - self.execution_stats['timeout_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'error': 'timeout_on_error_test', - 'execution_time': execution_time, - 'success': False - } - - except Exception as e: - execution_time = time.time() - start_time - logger.error(f"โ Error test failed with exception: {e}") - self.execution_stats['failed_tests'] += 1 - self.execution_stats['total_tests'] += 1 - - return False, { - 'command': ' '.join(cmd), - 'error': str(e), - 'execution_time': execution_time, - 'success': False - } - - def get_execution_stats(self) -> Dict[str, Any]: - """Get execution statistics and performance metrics.""" - stats = self.execution_stats.copy() - - if stats['startup_times']: - stats['avg_startup_time'] = sum(stats['startup_times']) / len(stats['startup_times']) - stats['min_startup_time'] = min(stats['startup_times']) - stats['max_startup_time'] = max(stats['startup_times']) - else: - stats['avg_startup_time'] = 0 - stats['min_startup_time'] = 0 - stats['max_startup_time'] = 0 - - if stats['total_tests'] > 0: - stats['success_rate'] = stats['successful_tests'] / stats['total_tests'] - else: - stats['success_rate'] = 0 - - return stats - - def run_comprehensive_test(self) -> Dict[str, Any]: - """ - Run comprehensive test suite for MATLAB command-line interface. - - Returns: - Dictionary with test results and statistics - """ - logger.info("=" * 60) - logger.info("MATLAB COMMAND-LINE INTERFACE COMPREHENSIVE TEST") - logger.info("=" * 60) - - test_results = {} - - # Test 1: Basic execution - success, result = self.test_basic_execution() - test_results['basic_execution'] = result - - # Test 2: matlab_runner execution (will fail with unknown problem, but should handle gracefully) - success, result = self.test_matlab_runner_execution() - test_results['matlab_runner_execution'] = result - - # Test 3: Timeout handling - success, result = self.test_timeout_handling() - test_results['timeout_handling'] = result - - # Test 4: Error handling - success, result = self.test_error_handling() - test_results['error_handling'] = result - - # Add execution statistics - test_results['execution_stats'] = self.get_execution_stats() - - logger.info("=" * 60) - logger.info("MATLAB CLI TEST SUMMARY") - logger.info("=" * 60) - stats = test_results['execution_stats'] - logger.info(f"Total Tests: {stats['total_tests']}") - logger.info(f"Successful: {stats['successful_tests']}") - logger.info(f"Failed: {stats['failed_tests']}") - logger.info(f"Timeouts: {stats['timeout_tests']}") - logger.info(f"Success Rate: {stats['success_rate']:.1%}") - logger.info(f"Average Startup Time: {stats['avg_startup_time']:.2f}s") - logger.info("=" * 60) - - return test_results - - -def main(): - """Run MATLAB execution tests as standalone script.""" - import argparse - - parser = argparse.ArgumentParser(description='Test MATLAB command-line execution') - parser.add_argument('--matlab-executable', default='matlab', - help='Path to MATLAB executable') - parser.add_argument('--working-directory', - help='Working directory for MATLAB execution') - - args = parser.parse_args() - - tester = MatlabExecutionTester( - matlab_executable=args.matlab_executable, - working_directory=args.working_directory - ) - - try: - results = tester.run_comprehensive_test() - - # Print summary - stats = results['execution_stats'] - if stats['success_rate'] >= 0.75: - print(f"\nโ MATLAB CLI tests mostly successful ({stats['success_rate']:.1%} success rate)") - sys.exit(0) - else: - print(f"\nโ MATLAB CLI tests had issues ({stats['success_rate']:.1%} success rate)") - sys.exit(1) - - except Exception as e: - print(f"\nโ MATLAB CLI test suite failed: {e}") - sys.exit(1) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tests/unit/test_export.py b/tests/unit/test_export.py deleted file mode 100644 index 18d38a8..0000000 --- a/tests/unit/test_export.py +++ /dev/null @@ -1,459 +0,0 @@ -#!/usr/bin/env python3 -""" -Export Functionality Test Suite -============================== - -Tests all export formats and validates data quality. -Ensures CSV, JSON, and PDF exports work correctly. -""" - -import sys -import tempfile -import shutil -from pathlib import Path -from typing import Dict, List, Any - -# Add project root to path for imports -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.reporting.export import DataExporter, ExportConfig -from scripts.reporting.data_validator import DataValidator -from scripts.utils.logger import get_logger - -logger = get_logger("export_test") - - -class ExportTestSuite: - """ - Comprehensive test suite for export functionality. - - Tests: - - CSV export generation and validation - - JSON export generation and validation - - PDF report generation - - Cross-format consistency - - Data validation against database - """ - - def __init__(self, database_path: str = None): - """ - Initialize test suite. - - Args: - database_path: Path to test database - """ - self.logger = get_logger("export_test") - - # Use default database if none provided - if database_path is None: - database_path = project_root / "benchmark_results.db" - - self.database_path = Path(database_path) - - # Create temporary directory for test outputs - self.test_dir = Path(tempfile.mkdtemp(prefix="export_test_")) - self.logger.info(f"Test directory: {self.test_dir}") - - # Initialize components - self.config = ExportConfig( - output_directory=str(self.test_dir), - validate_data=True, - format_numbers=True - ) - - self.exporter = DataExporter( - database_path=str(self.database_path), - config=self.config - ) - - self.validator = DataValidator(database_path=str(self.database_path)) - - # Test results - self.test_results = {} - self.passed_tests = 0 - self.failed_tests = 0 - - def run_all_tests(self) -> bool: - """ - Run all export tests. - - Returns: - True if all tests pass, False otherwise - """ - self.logger.info("๐งช Starting Export Test Suite") - print("=" * 60) - - try: - # Test individual export formats - self.test_csv_export() - self.test_json_export() - self.test_pdf_export() - - # Test comprehensive exports - self.test_all_formats_export() - - # Test data validation - self.test_data_validation() - - # Test cross-format consistency - self.test_cross_format_consistency() - - # Print summary - self._print_test_summary() - - return self.failed_tests == 0 - - except Exception as e: - self.logger.error(f"Test suite failed: {e}") - return False - - finally: - # Cleanup - self._cleanup() - - def test_csv_export(self) -> None: - """Test CSV export functionality.""" - - print("\n๐ Testing CSV Export...") - - try: - # Test solver comparison CSV - csv_path = self.exporter.export_solver_comparison_csv("test_solver_comparison.csv") - - if csv_path.exists(): - self._record_test_result("csv_solver_comparison", True, f"Generated: {csv_path}") - - # Validate CSV structure - validation_result = self.validator.validate_csv_export(csv_path) - self._record_test_result( - "csv_solver_validation", - validation_result.valid, - f"Errors: {len(validation_result.errors)}, Warnings: {len(validation_result.warnings)}" - ) - - else: - self._record_test_result("csv_solver_comparison", False, "File not created") - - # Test problem results CSV - csv_path2 = self.exporter.export_problem_results_csv("test_problem_results.csv") - - if csv_path2.exists(): - self._record_test_result("csv_problem_results", True, f"Generated: {csv_path2}") - - # Validate CSV structure - validation_result2 = self.validator.validate_csv_export(csv_path2) - self._record_test_result( - "csv_problem_validation", - validation_result2.valid, - f"Errors: {len(validation_result2.errors)}, Warnings: {len(validation_result2.warnings)}" - ) - - else: - self._record_test_result("csv_problem_results", False, "File not created") - - # Test filtered export - csv_path3 = self.exporter.export_problem_results_csv( - "test_filtered_results.csv", - solver_filter="SciPy" - ) - - if csv_path3.exists(): - self._record_test_result("csv_filtered_export", True, f"Generated: {csv_path3}") - else: - self._record_test_result("csv_filtered_export", False, "Filtered file not created") - - except Exception as e: - self._record_test_result("csv_export", False, f"Exception: {e}") - - def test_json_export(self) -> None: - """Test JSON export functionality.""" - - print("\n๐ Testing JSON Export...") - - try: - # Test basic JSON export - json_path = self.exporter.export_json_data("test_data.json") - - if json_path.exists(): - self._record_test_result("json_basic_export", True, f"Generated: {json_path}") - - # Validate JSON structure - validation_result = self.validator.validate_json_export(json_path) - self._record_test_result( - "json_basic_validation", - validation_result.valid, - f"Errors: {len(validation_result.errors)}, Warnings: {len(validation_result.warnings)}" - ) - - else: - self._record_test_result("json_basic_export", False, "File not created") - - # Test JSON with raw results - json_path2 = self.exporter.export_json_data("test_data_with_raw.json", include_raw_results=True) - - if json_path2.exists(): - self._record_test_result("json_raw_export", True, f"Generated: {json_path2}") - - # Check file size difference - size1 = json_path.stat().st_size if json_path.exists() else 0 - size2 = json_path2.stat().st_size - - if size2 > size1: - self._record_test_result("json_raw_size", True, f"Raw results add data: {size2-size1} bytes") - else: - self._record_test_result("json_raw_size", False, "Raw results don't increase file size") - - else: - self._record_test_result("json_raw_export", False, "Raw results file not created") - - except Exception as e: - self._record_test_result("json_export", False, f"Exception: {e}") - - def test_pdf_export(self) -> None: - """Test PDF report generation.""" - - print("\n๐ Testing PDF Export...") - - try: - # Test PDF generation - pdf_path = self.exporter.generate_summary_report_pdf("test_summary.pdf") - - if pdf_path.exists(): - file_size = pdf_path.stat().st_size - - if pdf_path.suffix.lower() == '.pdf': - self._record_test_result("pdf_generation", True, f"Generated PDF: {file_size} bytes") - elif pdf_path.suffix.lower() == '.txt': - self._record_test_result("pdf_fallback", True, f"Generated text fallback: {file_size} bytes") - else: - self._record_test_result("pdf_generation", False, f"Unexpected file type: {pdf_path.suffix}") - - # Validate file is not empty - if file_size > 0: - self._record_test_result("pdf_content", True, "File has content") - else: - self._record_test_result("pdf_content", False, "File is empty") - - else: - self._record_test_result("pdf_generation", False, "File not created") - - except Exception as e: - self._record_test_result("pdf_export", False, f"Exception: {e}") - - def test_all_formats_export(self) -> None: - """Test exporting all formats at once.""" - - print("\n๐ฏ Testing All Formats Export...") - - try: - results = self.exporter.export_all_formats("test_all") - - if results: - self._record_test_result("all_formats", True, f"Generated {len(results)} files") - - # Check each format was created - expected_formats = ['solver_comparison_csv', 'problem_results_csv', 'json_data', 'pdf_report'] - - for format_name in expected_formats: - if format_name in results: - path = results[format_name] - if path.exists(): - self._record_test_result(f"all_formats_{format_name}", True, f"Created: {path.name}") - else: - self._record_test_result(f"all_formats_{format_name}", False, "File missing") - else: - self._record_test_result(f"all_formats_{format_name}", False, "Format not in results") - - else: - self._record_test_result("all_formats", False, "No files generated") - - except Exception as e: - self._record_test_result("all_formats", False, f"Exception: {e}") - - def test_data_validation(self) -> None: - """Test data validation functionality.""" - - print("\nโ Testing Data Validation...") - - try: - # Find generated files - csv_files = list(self.test_dir.glob("*.csv")) - json_files = list(self.test_dir.glob("*.json")) - - if csv_files: - for csv_file in csv_files[:2]: # Test first 2 CSV files - validation_result = self.validator.validate_csv_export(csv_file) - test_name = f"validation_csv_{csv_file.stem}" - self._record_test_result( - test_name, - validation_result.valid, - f"Errors: {len(validation_result.errors)}" - ) - else: - self._record_test_result("validation_csv", False, "No CSV files to validate") - - if json_files: - for json_file in json_files[:2]: # Test first 2 JSON files - validation_result = self.validator.validate_json_export(json_file) - test_name = f"validation_json_{json_file.stem}" - self._record_test_result( - test_name, - validation_result.valid, - f"Errors: {len(validation_result.errors)}" - ) - else: - self._record_test_result("validation_json", False, "No JSON files to validate") - - # Test database consistency - if json_files: - db_validation = self.validator.validate_against_database(json_files[0]) - self._record_test_result( - "validation_database", - db_validation.valid, - f"DB consistency: {len(db_validation.errors)} errors" - ) - - except Exception as e: - self._record_test_result("validation", False, f"Exception: {e}") - - def test_cross_format_consistency(self) -> None: - """Test consistency between export formats.""" - - print("\n๐ Testing Cross-Format Consistency...") - - try: - csv_files = list(self.test_dir.glob("*.csv")) - json_files = list(self.test_dir.glob("*.json")) - - if csv_files and json_files: - consistency_result = self.validator.validate_cross_format_consistency(csv_files, json_files[0]) - - self._record_test_result( - "cross_format_consistency", - consistency_result.valid, - f"Errors: {len(consistency_result.errors)}, Warnings: {len(consistency_result.warnings)}" - ) - - # Check specific consistency metrics - if 'json_solvers' in consistency_result.summary and 'csv_files' in consistency_result.summary: - json_solver_count = consistency_result.summary['json_solvers'] - csv_summaries = consistency_result.summary['csv_files'] - - for csv_name, csv_summary in csv_summaries.items(): - if 'solver_comparison' in csv_name: - csv_solver_count = csv_summary['solver_count'] - consistent = json_solver_count == csv_solver_count - - self._record_test_result( - f"consistency_solver_count_{csv_name}", - consistent, - f"JSON: {json_solver_count}, CSV: {csv_solver_count}" - ) - - else: - self._record_test_result("cross_format_consistency", False, "Missing CSV or JSON files") - - except Exception as e: - self._record_test_result("cross_format_consistency", False, f"Exception: {e}") - - def _record_test_result(self, test_name: str, passed: bool, details: str = "") -> None: - """Record the result of a test.""" - - self.test_results[test_name] = { - 'passed': passed, - 'details': details - } - - if passed: - self.passed_tests += 1 - status = "โ " - else: - self.failed_tests += 1 - status = "โ" - - print(f" {status} {test_name}: {details}") - - def _print_test_summary(self) -> None: - """Print summary of all tests.""" - - print("\n" + "=" * 60) - print("๐งช TEST SUMMARY") - print("=" * 60) - - total_tests = self.passed_tests + self.failed_tests - pass_rate = (self.passed_tests / total_tests * 100) if total_tests > 0 else 0 - - print(f"Total Tests: {total_tests}") - print(f"Passed: {self.passed_tests}") - print(f"Failed: {self.failed_tests}") - print(f"Pass Rate: {pass_rate:.1f}%") - - if self.failed_tests > 0: - print("\nโ FAILED TESTS:") - for test_name, result in self.test_results.items(): - if not result['passed']: - print(f" โข {test_name}: {result['details']}") - - # Show generated files - generated_files = list(self.test_dir.glob("*")) - if generated_files: - print(f"\n๐ Generated Files ({len(generated_files)}):") - for file_path in sorted(generated_files): - size = file_path.stat().st_size - print(f" โข {file_path.name} ({size:,} bytes)") - - overall_status = "โ ALL TESTS PASSED" if self.failed_tests == 0 else "โ SOME TESTS FAILED" - print(f"\n{overall_status}") - - def _cleanup(self) -> None: - """Clean up test directory.""" - - try: - # Optional: Keep test files for inspection - keep_files = False # Set to True to keep test files - - if not keep_files: - shutil.rmtree(self.test_dir) - self.logger.info(f"Cleaned up test directory: {self.test_dir}") - else: - self.logger.info(f"Test files preserved in: {self.test_dir}") - - except Exception as e: - self.logger.warning(f"Failed to cleanup test directory: {e}") - - -def main(): - """Run export test suite.""" - - import argparse - - parser = argparse.ArgumentParser(description="Test export functionality") - parser.add_argument("--database", help="Database path for testing") - parser.add_argument("--keep-files", action="store_true", help="Keep generated test files") - - args = parser.parse_args() - - print("๐งช Export Functionality Test Suite") - print("=" * 60) - - try: - # Create test suite - test_suite = ExportTestSuite(database_path=args.database) - - # Optionally keep test files - if args.keep_files: - print(f"Test files will be preserved in: {test_suite.test_dir}") - - # Run tests - success = test_suite.run_all_tests() - - return 0 if success else 1 - - except Exception as e: - print(f"โ Test suite failed to run: {e}") - return 1 - - -if __name__ == "__main__": - exit(main()) \ No newline at end of file diff --git a/tests/unit/test_matlab_solver.py b/tests/unit/test_matlab_solver.py deleted file mode 100644 index 3f1a0d8..0000000 --- a/tests/unit/test_matlab_solver.py +++ /dev/null @@ -1,518 +0,0 @@ -#!/usr/bin/env python3 -""" -Comprehensive unit tests for production-ready MatlabSolver implementation. - -This test suite validates all aspects of the MatlabSolver class: -- SolverInterface compliance -- Problem registry integration -- Version detection and caching -- Error handling and edge cases -- Performance and concurrency -""" - -import os -import sys -import time -import unittest -from unittest.mock import patch, MagicMock -from pathlib import Path - -# Add project root to path -project_root = Path(__file__).parent.parent.parent -sys.path.insert(0, str(project_root)) - -from scripts.solvers.matlab_octave.matlab_runner import MatlabSolver, SeDuMiSolver, SDPT3Solver -from scripts.solvers.solver_interface import SolverResult -from scripts.data_loaders.problem_loader import ProblemData - - -class MockProblemData: - """Mock problem data for testing.""" - def __init__(self, name: str, problem_class: str = "SDP"): - self.name = name - self.problem_class = problem_class - self.metadata = {} - - -class TestMatlabSolverInterface(unittest.TestCase): - """Test SolverInterface compliance and basic functionality.""" - - def setUp(self): - """Set up test fixtures.""" - # Mock MATLAB availability to avoid requiring actual MATLAB installation - self.matlab_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') - self.mock_subprocess = self.matlab_patcher.start() - - # Mock successful MATLAB verification - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "MATLAB_OK" - mock_result.stderr = "" - self.mock_subprocess.return_value = mock_result - - # Mock problem registry - self.registry_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') - self.mock_registry = self.registry_patcher.start() - self.mock_registry.return_value = { - 'problem_libraries': { - 'arch0': { - 'file_path': 'problems/SDPLIB/data/arch0.dat-s', - 'file_type': 'dat-s', - 'library_name': 'SDPLIB' - }, - 'nb': { - 'file_path': 'problems/DIMACS/data/ANTENNA/nb.mat.gz', - 'file_type': 'mat', - 'library_name': 'DIMACS' - } - } - } - - def tearDown(self): - """Clean up test fixtures.""" - self.matlab_patcher.stop() - self.registry_patcher.stop() - - def test_solver_initialization(self): - """Test MatlabSolver initialization with different configurations.""" - # Test SeDuMi initialization - solver = MatlabSolver('sedumi') - self.assertEqual(solver.matlab_solver, 'sedumi') - self.assertEqual(solver.solver_name, 'matlab_sedumi') - self.assertIsNotNone(solver.temp_manager) - - # Test SDPT3 initialization - solver = MatlabSolver('sdpt3') - self.assertEqual(solver.matlab_solver, 'sdpt3') - self.assertEqual(solver.solver_name, 'matlab_sdpt3') - - # Test custom configuration - solver = MatlabSolver('sedumi', timeout=600, matlab_executable='custom_matlab') - self.assertEqual(solver.timeout, 600) - self.assertEqual(solver.matlab_executable, 'custom_matlab') - - def test_invalid_solver_initialization(self): - """Test that invalid solver names raise appropriate errors.""" - with self.assertRaises(ValueError) as context: - MatlabSolver('invalid_solver') - - self.assertIn("Unsupported MATLAB solver", str(context.exception)) - self.assertIn("invalid_solver", str(context.exception)) - - def test_convenience_classes(self): - """Test SeDuMiSolver and SDPT3Solver convenience classes.""" - # Test SeDuMiSolver - sedumi = SeDuMiSolver() - self.assertEqual(sedumi.matlab_solver, 'sedumi') - self.assertEqual(sedumi.solver_name, 'matlab_sedumi') - - # Test SDPT3Solver - sdpt3 = SDPT3Solver() - self.assertEqual(sdpt3.matlab_solver, 'sdpt3') - self.assertEqual(sdpt3.solver_name, 'matlab_sdpt3') - - # Test with custom parameters - sedumi_custom = SeDuMiSolver(timeout=300, use_octave=True) - self.assertEqual(sedumi_custom.timeout, 300) - self.assertTrue(sedumi_custom.use_octave) - - def test_version_detection(self): - """Test version detection and caching.""" - solver = MatlabSolver('sedumi') - - # Test basic version retrieval - version = solver.get_version() - self.assertIsInstance(version, str) - self.assertIn('SeDuMi', version) - - # Test that version is consistent - version2 = solver.get_version() - self.assertEqual(version, version2) - - -class TestProblemRegistryIntegration(unittest.TestCase): - """Test problem registry integration and validation.""" - - def setUp(self): - """Set up test fixtures.""" - # Mock MATLAB to avoid requiring installation - self.matlab_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') - self.mock_subprocess = self.matlab_patcher.start() - - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "MATLAB_OK" - self.mock_subprocess.return_value = mock_result - - # Set up test registry - self.registry_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') - self.mock_registry = self.registry_patcher.start() - self.mock_registry.return_value = { - 'problem_libraries': { - 'arch0': { - 'file_path': 'problems/SDPLIB/data/arch0.dat-s', - 'file_type': 'dat-s', - 'library_name': 'SDPLIB' - }, - 'nb': { - 'file_path': 'problems/DIMACS/data/ANTENNA/nb.mat.gz', - 'file_type': 'mat', - 'library_name': 'DIMACS' - }, - 'unsupported_format': { - 'file_path': 'problems/test/unsupported.xyz', - 'file_type': 'xyz', - 'library_name': 'TEST' - } - } - } - - self.solver = MatlabSolver('sedumi') - - def tearDown(self): - """Clean up test fixtures.""" - self.matlab_patcher.stop() - self.registry_patcher.stop() - - def test_problem_data_validation(self): - """Test problem data validation logic.""" - # Valid problem data - valid_problem = MockProblemData('arch0', 'SDP') - self.assertTrue(self.solver._validate_problem_data(valid_problem)) - - # Missing name - invalid_problem = MockProblemData('', 'SDP') - self.assertFalse(self.solver._validate_problem_data(invalid_problem)) - - # Problem not in registry - missing_problem = MockProblemData('nonexistent', 'SDP') - self.assertFalse(self.solver._validate_problem_data(missing_problem)) - - def test_problem_info_resolution(self): - """Test problem path resolution from registry.""" - problem = MockProblemData('arch0') - problem_name, problem_path = self.solver._resolve_problem_info(problem) - - self.assertEqual(problem_name, 'arch0') - self.assertIn('problems/SDPLIB/data/arch0.dat-s', problem_path) - - # Test with nonexistent problem - missing_problem = MockProblemData('nonexistent') - with self.assertRaises(ValueError): - self.solver._resolve_problem_info(missing_problem) - - def test_solver_compatibility(self): - """Test solver compatibility checking.""" - # Compatible problems - sdplib_problem = MockProblemData('arch0') - self.assertTrue(self.solver._check_solver_compatibility(sdplib_problem)) - - dimacs_problem = MockProblemData('nb') - self.assertTrue(self.solver._check_solver_compatibility(dimacs_problem)) - - # Unsupported file type - unsupported_problem = MockProblemData('unsupported_format') - self.assertFalse(self.solver._check_solver_compatibility(unsupported_problem)) - - # Nonexistent problem - missing_problem = MockProblemData('nonexistent') - self.assertFalse(self.solver._check_solver_compatibility(missing_problem)) - - def test_validate_problem_compatibility(self): - """Test the public problem compatibility validation method.""" - # Valid compatible problem - valid_problem = MockProblemData('arch0') - self.assertTrue(self.solver.validate_problem_compatibility(valid_problem)) - - # Invalid problem - invalid_problem = MockProblemData('') - self.assertFalse(self.solver.validate_problem_compatibility(invalid_problem)) - - # Unsupported format - unsupported_problem = MockProblemData('unsupported_format') - self.assertFalse(self.solver.validate_problem_compatibility(unsupported_problem)) - - -class TestSolverExecution(unittest.TestCase): - """Test solver execution and result handling.""" - - def setUp(self): - """Set up test fixtures.""" - # Mock MATLAB subprocess for verification and execution - self.matlab_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') - self.mock_subprocess = self.matlab_patcher.start() - - # Set up proper mock result for MATLAB verification - verification_result = MagicMock() - verification_result.returncode = 0 - verification_result.stdout = "MATLAB_OK" - verification_result.stderr = "" - self.mock_subprocess.return_value = verification_result - - # Mock registry - self.registry_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') - self.mock_registry = self.registry_patcher.start() - self.mock_registry.return_value = { - 'problem_libraries': { - 'test_problem': { - 'file_path': 'problems/test/test_problem.dat-s', - 'file_type': 'dat-s', - 'library_name': 'TEST' - } - } - } - - # Mock temp file operations - self.temp_patcher = patch('scripts.solvers.matlab_octave.matlab_interface.temp_file_context') - self.mock_temp = self.temp_patcher.start() - self.mock_temp.return_value.__enter__.return_value = '/tmp/test_result.json' - self.mock_temp.return_value.__exit__.return_value = None - - # Initialize solver after mocks are set up - self.solver = MatlabSolver('sedumi') - - def tearDown(self): - """Clean up test fixtures.""" - self.matlab_patcher.stop() - self.registry_patcher.stop() - self.temp_patcher.stop() - - def test_successful_solve(self): - """Test successful problem solving.""" - # Mock successful MATLAB execution - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "" - mock_result.stderr = "" - self.mock_subprocess.return_value = mock_result - - # Mock result file content - with patch('builtins.open', create=True) as mock_open: - with patch('os.path.exists', return_value=True): - with patch('os.stat') as mock_stat: - mock_stat.return_value.st_size = 100 - - mock_json_content = { - 'status': 'optimal', - 'solve_time': 1.5, - 'primal_objective_value': -10.5, - 'dual_objective_value': -10.5, - 'duality_gap': 1e-8, - 'primal_infeasibility': 1e-9, - 'dual_infeasibility': 1e-9, - 'iterations': 25, - 'solver_version': 'SeDuMi 1.3.5', - 'matlab_version': 'R2024a' - } - - with patch('json.load', return_value=mock_json_content): - problem = MockProblemData('test_problem') - result = self.solver.solve(problem) - - self.assertIsInstance(result, SolverResult) - self.assertEqual(result.status, 'OPTIMAL') - self.assertEqual(result.primal_objective_value, -10.5) - self.assertEqual(result.iterations, 25) - self.assertIn('matlab_output', result.additional_info) - - def test_invalid_problem_data(self): - """Test handling of invalid problem data.""" - # Problem with missing name - invalid_problem = MockProblemData('') - result = self.solver.solve(invalid_problem) - - self.assertIsInstance(result, SolverResult) - self.assertEqual(result.status, 'ERROR') - self.assertIn('validation failed', result.additional_info.get('error_message', '')) - - def test_matlab_execution_failure(self): - """Test handling of MATLAB execution failures.""" - # Mock failed MATLAB execution - mock_result = MagicMock() - mock_result.returncode = 1 - mock_result.stdout = "" - mock_result.stderr = "Error: Undefined function 'nonexistent'" - self.mock_subprocess.return_value = mock_result - - problem = MockProblemData('test_problem') - result = self.solver.solve(problem) - - self.assertIsInstance(result, SolverResult) - self.assertEqual(result.status, 'ERROR') - self.assertIn('MATLAB execution failed', result.additional_info.get('error_message', '')) - - def test_timeout_handling(self): - """Test timeout handling.""" - from subprocess import TimeoutExpired - self.mock_subprocess.side_effect = TimeoutExpired('matlab', 30) - - problem = MockProblemData('test_problem') - result = self.solver.solve(problem, timeout=1) - - self.assertIsInstance(result, SolverResult) - self.assertEqual(result.status, 'TIMEOUT') - - def test_missing_result_file(self): - """Test handling when MATLAB doesn't produce result file.""" - # Mock successful MATLAB execution but no result file - mock_result = MagicMock() - mock_result.returncode = 0 - self.mock_subprocess.return_value = mock_result - - with patch('os.path.exists', return_value=False): - problem = MockProblemData('test_problem') - result = self.solver.solve(problem) - - self.assertIsInstance(result, SolverResult) - self.assertEqual(result.status, 'ERROR') - self.assertIn('did not produce result file', result.additional_info.get('error_message', '')) - - -class TestCommandConstruction(unittest.TestCase): - """Test MATLAB command construction and safety.""" - - def setUp(self): - """Set up test fixtures.""" - # Mock MATLAB to avoid requiring installation - with patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') as mock_subprocess: - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "MATLAB_OK" - mock_subprocess.return_value = mock_result - - with patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') as mock_registry: - mock_registry.return_value = {'problem_libraries': {}} - self.solver = MatlabSolver('sedumi') - - def test_normal_command_construction(self): - """Test normal command construction.""" - cmd = self.solver._construct_matlab_command('test_problem', '/tmp/result.json') - - self.assertIsInstance(cmd, list) - self.assertEqual(cmd[0], 'matlab') - self.assertEqual(cmd[1], '-batch') - self.assertIn('matlab_runner', cmd[2]) - self.assertIn('test_problem', cmd[2]) - self.assertIn('sedumi', cmd[2]) - self.assertIn('/tmp/result.json', cmd[2]) - - def test_octave_command_construction(self): - """Test Octave command construction.""" - with patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') as mock_subprocess: - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "Octave_OK" - mock_subprocess.return_value = mock_result - - with patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') as mock_registry: - mock_registry.return_value = {'problem_libraries': {}} - octave_solver = MatlabSolver('sedumi', use_octave=True) - - cmd = octave_solver._construct_matlab_command('test_problem', '/tmp/result.json') - - self.assertEqual(cmd[1], '--eval') - - def test_command_argument_escaping(self): - """Test proper escaping of arguments with special characters.""" - cmd = self.solver._construct_matlab_command("prob'lem", "/tmp/res'ult.json") - - # MATLAB single quotes should be escaped by doubling - self.assertIn("prob''lem", cmd[2]) - self.assertIn("res''ult.json", cmd[2]) - - def test_invalid_command_parameters(self): - """Test handling of invalid command parameters.""" - with self.assertRaises(ValueError): - self.solver._construct_matlab_command('', '/tmp/result.json') - - with self.assertRaises(ValueError): - self.solver._construct_matlab_command('test_problem', '') - - with self.assertRaises(ValueError): - self.solver._construct_matlab_command(None, '/tmp/result.json') - - -class TestErrorHandling(unittest.TestCase): - """Test comprehensive error handling.""" - - def setUp(self): - """Set up test fixtures.""" - with patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') as mock_subprocess: - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "MATLAB_OK" - mock_subprocess.return_value = mock_result - - with patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') as mock_registry: - mock_registry.return_value = {'problem_libraries': {}} - self.solver = MatlabSolver('sedumi') - - def test_matlab_error_parsing(self): - """Test MATLAB error message parsing.""" - # Test common error patterns - error_cases = [ - ("Error: Undefined function 'test' for input arguments", "Undefined function"), - ("License error: Cannot checkout license", "License error"), - ("Syntax error near line 5", "Syntax error"), - ("Random output without clear error", "Random output") - ] - - for stderr, expected_keyword in error_cases: - parsed = self.solver._parse_matlab_error(stderr, "") - self.assertIsInstance(parsed, str) - # For error cases, check that key information is preserved - if "error" in expected_keyword.lower(): - self.assertTrue(any(keyword in parsed.lower() for keyword in ["error", "undefined", "license", "syntax"])) - - def test_error_result_creation(self): - """Test that error results are properly formatted.""" - # This is tested implicitly in other tests, but let's be explicit - error_result = SolverResult.create_error_result( - "Test error message", - solve_time=1.5, - solver_name="test_solver", - solver_version="test_version" - ) - - self.assertEqual(error_result.status, "ERROR") - self.assertEqual(error_result.solve_time, 1.5) - self.assertEqual(error_result.solver_name, "test_solver") - self.assertIn("Test error message", error_result.additional_info["error_message"]) - - -class TestTempFileManagement(unittest.TestCase): - """Test temporary file management integration.""" - - def setUp(self): - """Set up test fixtures.""" - with patch('scripts.solvers.matlab_octave.matlab_interface.subprocess.run') as mock_subprocess: - mock_result = MagicMock() - mock_result.returncode = 0 - mock_result.stdout = "MATLAB_OK" - mock_subprocess.return_value = mock_result - - with patch('scripts.solvers.matlab_octave.matlab_interface.load_problem_registry') as mock_registry: - mock_registry.return_value = {'problem_libraries': {}} - self.solver = MatlabSolver('sedumi') - - def test_temp_file_stats(self): - """Test temporary file statistics retrieval.""" - stats = self.solver.get_temp_file_stats() - - self.assertIsInstance(stats, dict) - self.assertIn('temp_directory', stats) - self.assertIn('total_files', stats) - self.assertIn('total_size_bytes', stats) - - def test_orphaned_file_cleanup(self): - """Test orphaned file cleanup functionality.""" - # This will actually call the temp manager's cleanup method - cleaned_count = self.solver.cleanup_orphaned_files() - - self.assertIsInstance(cleaned_count, int) - self.assertGreaterEqual(cleaned_count, 0) - - -if __name__ == '__main__': - # Run tests with appropriate verbosity - unittest.main(verbosity=2) \ No newline at end of file diff --git a/workspace.py b/workspace.py deleted file mode 100644 index b9d9ac2..0000000 --- a/workspace.py +++ /dev/null @@ -1,87 +0,0 @@ -import cvxpy as cp -import numpy as np - -# Generate a random feasible SOCP. -m = 3 -n = 10 -p = 5 -n_i = 5 -np.random.seed(2) -f = np.random.randn(n) -A = [] -b = [] -c = [] -d = [] -x0 = np.random.randn(n) -for i in range(m): - A.append(np.random.randn(n_i, n)) - b.append(np.random.randn(n_i)) - c.append(np.random.randn(n)) - d.append(np.linalg.norm(A[i] @ x0 + b, 2) - c[i].T @ x0) -F = np.random.randn(p, n) -g = F @ x0 - -# Define and solve the CVXPY problem. -x = cp.Variable(n) -# We use cp.SOC(t, x) to create the SOC constraint ||x||_2 <= t. -soc_constraints = [ - cp.SOC(c[i].T @ x + d[i], A[i] @ x + b[i]) for i in range(m) -] -prob = cp.Problem(cp.Minimize(f.T@x), - soc_constraints + [F @ x == g]) -prob.solve() - -# Print result. -print("The optimal value is", prob.value) -print("A solution x is") -print(x.value) -for i in range(m): - print("SOC constraint %i dual variable solution" % i) - print(soc_constraints[i].dual_value) - -import numpy as np -z = np.random.random((3,1)) - -def proj_onto_soc(z): - z0 = z[0] - znorm = np.linalg.norm(z[1:], ord=2) - if znorm <= z0: - return z - elif znorm <= -z0: - return np.zeros_like(z) - else: - scale = (z0 + znorm) / 2 - return np.vstack(([1], z[1:] / znorm)) * scale -z - proj_onto_soc(z) -proj_onto_soc(-z) - -## - -# Import packages. -import cvxpy as cp -import numpy as np - -# Generate a random non-trivial linear program. -m = 15 -n = 10 -np.random.seed(1) -s0 = np.random.randn(m) -lamb0 = np.maximum(-s0, 0) -s0 = np.maximum(s0, 0) -x0 = np.random.randn(n) -A = np.random.randn(m, n) -b = A @ x0 + s0 -c = -A.T @ lamb0 - -# Define and solve the CVXPY problem. -x = cp.Variable(n) -prob = cp.Problem(cp.Minimize(c.T@x), - [A @ x <= b]) -prob.solve(solver=cp.CLARABEL) - -# Print result. -print("\nThe optimal value is", prob.value) -print("A solution x is") -print(x.value) -print("A dual solution is") -print(prob.constraints[0].dual_value) \ No newline at end of file
Data Exports - Download Benchmark Results
Generated: 2025-08-05 16:09:43 UTC
+ Download complete benchmark results in various formats for further analysis and research. +
Most recent benchmark results with solver information, problem details, and performance metrics. Best for analyzing current solver performance.
Most recent benchmark results in CSV format for spreadsheet analysis. Contains the latest solver-problem combinations.
Complete historical benchmark results including all runs. Sorted by ID for database restoration. Ideal for comprehensive analysis and backup.
Complete historical benchmark results in CSV format. Sorted by ID for database restoration. Perfect for time-series analysis and research.
Overview Dashboard - Latest Results
Generated: 2025-07-19 23:39:48
๐ค Author: Naoki Ito
Total Solvers: 11
+ Performance ranking methodology is currently under development. + Evaluation criteria for determining "best performers" are being established + to ensure fair and meaningful comparisons across different solver types. +
+ Please refer to the Results Matrix + for detailed performance data in the meantime. +
Commit Hashes: 443b599d, 96ca0437
โ ๏ธ Multiple environments detected: Results from 2 different Git commits
Platform: Darwin (8CPU, 24GB)
Python Version: 3.12.2
Git Commit Hashes: 0d9be48d, 2ef15f0b, 443b599d, 86bfae9b, 96ca0437, d31cb753, f95b7a82
0d9be48d
2ef15f0b
443b599d
86bfae9b
96ca0437
d31cb753
f95b7a82
โ ๏ธ Multiple environments detected: Results from 7 different Git commits
Python Version: CPython 3.12.2
Operating System: Darwin 23.5.0
CPU: arm (8 cores)
Memory: 24.0 GB
MATLAB: Available (version detection via solver results)
Raw Data - Detailed Results Table
Generated: 2025-07-19 23:39:48 | Total Results: 1026
Generated: 2025-08-05 16:09:43 UTC | Total Results: 1320
Results Matrix - Problems ร Solvers
OPTIMAL - Successfully solved to optimality
UNSUPPORTED - Solver does not support this problem type
ERROR - Solver encountered an error
INFEASIBLE/UNBOUNDED - Problem has no feasible solution
โ - No result available
TIMEOUT - Execution time limit exceeded
SIGKILL - Process forcibly terminated (memory limits)
SUBPROCESS_ERROR - Subprocess execution error
๐ค Author: {author}
Commit Hash: {commit_hashes[0][:8]}
Git Commit Hash: {commit_hashes[0][:8]}
{commit_hashes[0][:8]}
Commit Hashes: {commit_list}
{ch[:8]}
Git Commit Hashes: {commit_list}
โ ๏ธ Multiple environments detected: Results from {len(commit_hashes)} different Git commits
Commit Hash: Unknown
Git Commit Hash: Unknown
Platform: Unknown
Python Version: {python_version}
Python Version: {python_implementation} {python_version}
Operating System: {os_system} {os_release}
Operating System: {os_system}
CPU: {processor} ({cpu_count} cores)
CPU Cores: {cpu_count}
CPU: {processor}
Memory: {memory_gb:.1f} GB
Memory: Unknown
Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}
Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')}
Total Solvers: {summary['total_solvers']}
Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} | Total Results: {len(results)}
Generated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M:%S UTC')} | Total Results: {len(results)}